mirror of
https://github.com/torvalds/linux.git
synced 2024-11-02 02:01:29 +00:00
e7a142aaa0
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/1461935747-10380-10-git-send-email-konishi.ryusuke@lab.ntt.co.jp Signed-off-by: Ryusuke Konishi <konishi.ryusuke@lab.ntt.co.jp> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
26 lines
466 B
C
26 lines
466 B
C
#ifndef NILFS_EXPORT_H
|
|
#define NILFS_EXPORT_H
|
|
|
|
#include <linux/exportfs.h>
|
|
|
|
extern const struct export_operations nilfs_export_ops;
|
|
|
|
/**
|
|
* struct nilfs_fid - NILFS file id type
|
|
* @cno: checkpoint number
|
|
* @ino: inode number
|
|
* @gen: file generation (version) for NFS
|
|
* @parent_gen: parent generation (version) for NFS
|
|
* @parent_ino: parent inode number
|
|
*/
|
|
struct nilfs_fid {
|
|
u64 cno;
|
|
u64 ino;
|
|
u32 gen;
|
|
|
|
u32 parent_gen;
|
|
u64 parent_ino;
|
|
} __packed;
|
|
|
|
#endif
|