NFS: Move internal constants out of uapi/linux/nfs_mount.h
authorTrond Myklebust <trondmy@gmail.com>
Sun, 7 Apr 2019 17:59:00 +0000 (13:59 -0400)
committerAnna Schumaker <Anna.Schumaker@Netapp.com>
Thu, 25 Apr 2019 18:18:14 +0000 (14:18 -0400)
When the label says "for internal use only", then it doesn't belong
in the 'uapi' subtree.

Signed-off-by: Trond Myklebust <trond.myklebust@hammerspace.com>
Signed-off-by: Anna Schumaker <Anna.Schumaker@Netapp.com>
include/linux/nfs_fs_sb.h
include/uapi/linux/nfs_mount.h

index c827d31..013ac5b 100644 (file)
@@ -139,6 +139,15 @@ struct nfs_server {
        struct nfs_iostats __percpu *io_stats;  /* I/O statistics */
        atomic_long_t           writeback;      /* number of writeback pages */
        int                     flags;          /* various flags */
+
+/* The following are for internal use only. Also see uapi/linux/nfs_mount.h */
+#define NFS_MOUNT_LOOKUP_CACHE_NONEG   0x10000
+#define NFS_MOUNT_LOOKUP_CACHE_NONE    0x20000
+#define NFS_MOUNT_NORESVPORT           0x40000
+#define NFS_MOUNT_LEGACY_INTERFACE     0x80000
+#define NFS_MOUNT_LOCAL_FLOCK          0x100000
+#define NFS_MOUNT_LOCAL_FCNTL          0x200000
+
        unsigned int            caps;           /* server capabilities */
        unsigned int            rsize;          /* read size */
        unsigned int            rpages;         /* read size (in pages) */
index e44e006..e3bcfc6 100644 (file)
@@ -66,13 +66,4 @@ struct nfs_mount_data {
 #define NFS_MOUNT_UNSHARED     0x8000  /* 5 */
 #define NFS_MOUNT_FLAGMASK     0xFFFF
 
-/* The following are for internal use only */
-#define NFS_MOUNT_LOOKUP_CACHE_NONEG   0x10000
-#define NFS_MOUNT_LOOKUP_CACHE_NONE    0x20000
-#define NFS_MOUNT_NORESVPORT           0x40000
-#define NFS_MOUNT_LEGACY_INTERFACE     0x80000
-
-#define NFS_MOUNT_LOCAL_FLOCK  0x100000
-#define NFS_MOUNT_LOCAL_FCNTL  0x200000
-
 #endif