Commit 28d52235 authored by Trond Myklebust's avatar Trond Myklebust

NFSv4: Save a few bytes in the nfs_pgio_args/res

Save a few bytes by allowing the read/write specific fields of the
structures to share storage.
Signed-off-by: default avatarTrond Myklebust <trond.myklebust@hammerspace.com>
parent 8d8928d8
...@@ -608,9 +608,13 @@ struct nfs_pgio_args { ...@@ -608,9 +608,13 @@ struct nfs_pgio_args {
__u32 count; __u32 count;
unsigned int pgbase; unsigned int pgbase;
struct page ** pages; struct page ** pages;
union {
unsigned int replen; /* used by read */ unsigned int replen; /* used by read */
struct {
const u32 * bitmask; /* used by write */ const u32 * bitmask; /* used by write */
enum nfs3_stable_how stable; /* used by write */ enum nfs3_stable_how stable; /* used by write */
};
};
}; };
struct nfs_pgio_res { struct nfs_pgio_res {
...@@ -618,10 +622,16 @@ struct nfs_pgio_res { ...@@ -618,10 +622,16 @@ struct nfs_pgio_res {
struct nfs_fattr * fattr; struct nfs_fattr * fattr;
__u32 count; __u32 count;
__u32 op_status; __u32 op_status;
int eof; /* used by read */ union {
struct {
unsigned int replen; /* used by read */ unsigned int replen; /* used by read */
int eof; /* used by read */
};
struct {
struct nfs_writeverf * verf; /* used by write */ struct nfs_writeverf * verf; /* used by write */
const struct nfs_server *server; /* used by write */ const struct nfs_server *server; /* used by write */
};
};
}; };
/* /*
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment