From 1ed0c6017f66a71ad3c6351696437a17bcedf8a0 Mon Sep 17 00:00:00 2001 From: Zach Brown Date: Thu, 26 Jul 2018 14:24:18 -0700 Subject: [PATCH] scoutfs: remove unused keys manifest field Keys used to be variable length so the manifest struct on the wire ended in key payloads. The keys are now fixed size so that field is no longer necessary or used. It's an artifact that should have been removed when the keys were made fixed length. Signed-off-by: Zach Brown --- kmod/src/format.h | 1 - 1 file changed, 1 deletion(-) diff --git a/kmod/src/format.h b/kmod/src/format.h index 95f732c9..e06102e9 100644 --- a/kmod/src/format.h +++ b/kmod/src/format.h @@ -609,7 +609,6 @@ struct scoutfs_net_manifest_entry { struct scoutfs_key first; struct scoutfs_key last; __u8 level; - __u8 keys[0]; } __packed; struct scoutfs_net_statfs {