Re: [PATCH 01/29] exportfs: add new EXPORT_OP_STABLE_HANDLES flag
Jan Kara <[email protected]>
| Newsgroups | dev.linux.lists.gfs2,dev.linux.lists.ntfs3,dev.linux.lists.ocfs2-devel,net.sourceforge.lists.linux-f2fs-devel,org.infradead.lists.linux-mtd,org.kernel.vger.ceph-devel,org.kernel.vger.linux-btrfs,org.kernel.vger.linux-cifs,org.kernel.vger.linux-ext4,org.kernel.vger.linux-fsdevel,org.kernel.vger.linux-kernel,org.kernel.vger.linux-nfs,org.kernel.vger.linux-nilfs,org.kernel.vger.linux-unionfs,org.kernel.vger.linux-xfs,org.kvack.linux-mm,org.ozlabs.lists.linux-erofs |
|---|---|
| Message-ID | <6bajjyslarqrjr2brzyy6bgrmqrdxyhc42q7pfmz42d4y4kjtn@fod6fi4uf6qv> |
On Thu 15-01-26 12:47:32, Jeff Layton wrote: > At one time, nfsd could take the presence of struct export_operations to > be an indicator that a filesystem was exportable via NFS. Since then, a > lot of filesystems have grown export operations in order to provide > filehandle support. Some of those (e.g. kernfs, pidfs, and nsfs) are not > suitable for export via NFS since they lack filehandles that are > stable across reboot. > > Add a new EXPORT_OP_STABLE_HANDLES flag that indicates that the > filesystem supports perisistent filehandles, a requirement for nfs > export. While in there, switch to the BIT() macro for defining these > flags. > > For now, the flag is not checked anywhere. That will come later after > we've added it to the existing filesystems that need to remain > exportable. > > Signed-off-by: Jeff Layton <[email protected]> ... > -#define EXPORT_OP_FLUSH_ON_CLOSE (0x20) /* fs flushes file data on close */ > -#define EXPORT_OP_NOLOCKS (0x40) /* no file locking support */ > +#define EXPORT_OP_FLUSH_ON_CLOSE BIT(5) /* fs flushes file data on close */ > +#define EXPORT_OP_NOLOCKS BIT(6) /* no file locking support */ > +#define EXPORT_OP_STABLE_HANDLES BIT(7) /* required for nfsd export */ The comment "required for nfsd export" doesn't quite match the name. I'd change the comment to something like "file handles are stable across reboot". Otherwise feel free to add: Reviewed-by: Jan Kara <[email protected]> Honza -- Jan Kara <[email protected]> SUSE Labs, CR