nfs3acl.c (e4da3fbfbd1de56d2367653e3823e6445e49f8a9) nfs3acl.c (17280175c587469b34757263c7cfc608f0ea2334)
1#include <linux/fs.h>
2#include <linux/gfp.h>
3#include <linux/nfs.h>
4#include <linux/nfs3.h>
5#include <linux/nfs_fs.h>
6#include <linux/posix_acl_xattr.h>
7#include <linux/nfsacl.h>
8

--- 178 unchanged lines hidden (view full) ---

187 struct nfs_server *server = NFS_SERVER(inode);
188 struct page *pages[NFSACL_MAXPAGES] = { };
189 struct nfs3_getaclargs args = {
190 .fh = NFS_FH(inode),
191 /* The xdr layer may allocate pages here. */
192 .pages = pages,
193 };
194 struct nfs3_getaclres res = {
1#include <linux/fs.h>
2#include <linux/gfp.h>
3#include <linux/nfs.h>
4#include <linux/nfs3.h>
5#include <linux/nfs_fs.h>
6#include <linux/posix_acl_xattr.h>
7#include <linux/nfsacl.h>
8

--- 178 unchanged lines hidden (view full) ---

187 struct nfs_server *server = NFS_SERVER(inode);
188 struct page *pages[NFSACL_MAXPAGES] = { };
189 struct nfs3_getaclargs args = {
190 .fh = NFS_FH(inode),
191 /* The xdr layer may allocate pages here. */
192 .pages = pages,
193 };
194 struct nfs3_getaclres res = {
195 0
195 NULL,
196 };
197 struct rpc_message msg = {
198 .rpc_argp = &args,
199 .rpc_resp = &res,
200 };
201 struct posix_acl *acl;
202 int status, count;
203

--- 237 unchanged lines hidden ---
196 };
197 struct rpc_message msg = {
198 .rpc_argp = &args,
199 .rpc_resp = &res,
200 };
201 struct posix_acl *acl;
202 int status, count;
203

--- 237 unchanged lines hidden ---