Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
linux
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
linux
Commits
d346890b
Commit
d346890b
authored
Apr 16, 2010
by
Trond Myklebust
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
NFS: Reduce stack footprint of nfs_proc_remove()
Signed-off-by:
Trond Myklebust
<
Trond.Myklebust@netapp.com
>
parent
3b14d654
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
24 additions
and
12 deletions
+24
-12
fs/nfs/nfs3proc.c
fs/nfs/nfs3proc.c
+9
-4
fs/nfs/nfs3xdr.c
fs/nfs/nfs3xdr.c
+1
-1
fs/nfs/nfs4proc.c
fs/nfs/nfs4proc.c
+9
-4
fs/nfs/nfs4xdr.c
fs/nfs/nfs4xdr.c
+1
-1
fs/nfs/unlink.c
fs/nfs/unlink.c
+3
-1
include/linux/nfs_xdr.h
include/linux/nfs_xdr.h
+1
-1
No files found.
fs/nfs/nfs3proc.c
View file @
d346890b
...
...
@@ -406,12 +406,17 @@ nfs3_proc_remove(struct inode *dir, struct qstr *name)
.
rpc_argp
=
&
arg
,
.
rpc_resp
=
&
res
,
};
int
status
;
int
status
=
-
ENOMEM
;
dprintk
(
"NFS call remove %s
\n
"
,
name
->
name
);
nfs_fattr_init
(
&
res
.
dir_attr
);
res
.
dir_attr
=
nfs_alloc_fattr
();
if
(
res
.
dir_attr
==
NULL
)
goto
out
;
status
=
rpc_call_sync
(
NFS_CLIENT
(
dir
),
&
msg
,
0
);
nfs_post_op_update_inode
(
dir
,
&
res
.
dir_attr
);
nfs_post_op_update_inode
(
dir
,
res
.
dir_attr
);
nfs_free_fattr
(
res
.
dir_attr
);
out:
dprintk
(
"NFS reply remove: %d
\n
"
,
status
);
return
status
;
}
...
...
@@ -429,7 +434,7 @@ nfs3_proc_unlink_done(struct rpc_task *task, struct inode *dir)
if
(
nfs3_async_handle_jukebox
(
task
,
dir
))
return
0
;
res
=
task
->
tk_msg
.
rpc_resp
;
nfs_post_op_update_inode
(
dir
,
&
res
->
dir_attr
);
nfs_post_op_update_inode
(
dir
,
res
->
dir_attr
);
return
1
;
}
...
...
fs/nfs/nfs3xdr.c
View file @
d346890b
...
...
@@ -762,7 +762,7 @@ nfs3_xdr_wccstat(struct rpc_rqst *req, __be32 *p, struct nfs_fattr *fattr)
static
int
nfs3_xdr_removeres
(
struct
rpc_rqst
*
req
,
__be32
*
p
,
struct
nfs_removeres
*
res
)
{
return
nfs3_xdr_wccstat
(
req
,
p
,
&
res
->
dir_attr
);
return
nfs3_xdr_wccstat
(
req
,
p
,
res
->
dir_attr
);
}
/*
...
...
fs/nfs/nfs4proc.c
View file @
d346890b
...
...
@@ -2599,14 +2599,19 @@ static int _nfs4_proc_remove(struct inode *dir, struct qstr *name)
.
rpc_argp
=
&
args
,
.
rpc_resp
=
&
res
,
};
int
status
;
int
status
=
-
ENOMEM
;
res
.
dir_attr
=
nfs_alloc_fattr
();
if
(
res
.
dir_attr
==
NULL
)
goto
out
;
nfs_fattr_init
(
&
res
.
dir_attr
);
status
=
nfs4_call_sync
(
server
,
&
msg
,
&
args
,
&
res
,
1
);
if
(
status
==
0
)
{
update_changeattr
(
dir
,
&
res
.
cinfo
);
nfs_post_op_update_inode
(
dir
,
&
res
.
dir_attr
);
nfs_post_op_update_inode
(
dir
,
res
.
dir_attr
);
}
nfs_free_fattr
(
res
.
dir_attr
);
out:
return
status
;
}
...
...
@@ -2641,7 +2646,7 @@ static int nfs4_proc_unlink_done(struct rpc_task *task, struct inode *dir)
if
(
nfs4_async_handle_error
(
task
,
res
->
server
,
NULL
)
==
-
EAGAIN
)
return
0
;
update_changeattr
(
dir
,
&
res
->
cinfo
);
nfs_post_op_update_inode
(
dir
,
&
res
->
dir_attr
);
nfs_post_op_update_inode
(
dir
,
res
->
dir_attr
);
return
1
;
}
...
...
fs/nfs/nfs4xdr.c
View file @
d346890b
...
...
@@ -4815,7 +4815,7 @@ static int nfs4_xdr_dec_remove(struct rpc_rqst *rqstp, __be32 *p, struct nfs_rem
goto
out
;
if
((
status
=
decode_remove
(
&
xdr
,
&
res
->
cinfo
))
!=
0
)
goto
out
;
decode_getfattr
(
&
xdr
,
&
res
->
dir_attr
,
res
->
server
,
decode_getfattr
(
&
xdr
,
res
->
dir_attr
,
res
->
server
,
!
RPC_IS_ASYNC
(
rqstp
->
rq_task
));
out:
return
status
;
...
...
fs/nfs/unlink.c
View file @
d346890b
...
...
@@ -23,6 +23,7 @@ struct nfs_unlinkdata {
struct
nfs_removeres
res
;
struct
inode
*
dir
;
struct
rpc_cred
*
cred
;
struct
nfs_fattr
dir_attr
;
};
/**
...
...
@@ -169,7 +170,7 @@ static int nfs_do_call_unlink(struct dentry *parent, struct inode *dir, struct n
}
nfs_sb_active
(
dir
->
i_sb
);
data
->
args
.
fh
=
NFS_FH
(
dir
);
nfs_fattr_init
(
&
data
->
res
.
dir_attr
);
nfs_fattr_init
(
data
->
res
.
dir_attr
);
NFS_PROTO
(
dir
)
->
unlink_setup
(
&
msg
,
dir
);
...
...
@@ -259,6 +260,7 @@ nfs_async_unlink(struct inode *dir, struct dentry *dentry)
goto
out_free
;
}
data
->
res
.
seq_res
.
sr_slotid
=
NFS4_MAX_SLOT_TABLE
;
data
->
res
.
dir_attr
=
&
data
->
dir_attr
;
status
=
-
EBUSY
;
spin_lock
(
&
dentry
->
d_lock
);
...
...
include/linux/nfs_xdr.h
View file @
d346890b
...
...
@@ -386,8 +386,8 @@ struct nfs_removeargs {
struct
nfs_removeres
{
const
struct
nfs_server
*
server
;
struct
nfs_fattr
*
dir_attr
;
struct
nfs4_change_info
cinfo
;
struct
nfs_fattr
dir_attr
;
struct
nfs4_sequence_res
seq_res
;
};
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment