aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRyusuke Konishi <[email protected]>2016-05-23 16:23:23 -0700
committerLinus Torvalds <[email protected]>2016-05-23 17:04:14 -0700
commite7a142aaa09fa5db015fd176d6943f888665829f (patch)
tree9af8f4ce0c65a7d34b1ba2c00b0a8e7ac40efbdd
parent2d19961d83524c69e44f179b43aee2daf0906eda (diff)
nilfs2: replace __attribute__((packed)) with __packed
This fixes the following checkpatch.pl warning: WARNING: __packed is preferred over __attribute__((packed)) #23: FILE: export.h:23: +} __attribute__ ((packed)); Link: http://lkml.kernel.org/r/[email protected] Signed-off-by: Ryusuke Konishi <[email protected]> Signed-off-by: Andrew Morton <[email protected]> Signed-off-by: Linus Torvalds <[email protected]>
-rw-r--r--fs/nilfs2/export.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/nilfs2/export.h b/fs/nilfs2/export.h
index 19ccbf9522ab..00107fdb9343 100644
--- a/fs/nilfs2/export.h
+++ b/fs/nilfs2/export.h
@@ -20,6 +20,6 @@ struct nilfs_fid {
u32 parent_gen;
u64 parent_ino;
-} __attribute__ ((packed));
+} __packed;
#endif