projects
/
linux-2.6-microblaze.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
5b2eef9
)
fs/9p: Remove unnecessary semicolons
author
Joe Perches
<joe@perches.com>
Mon, 15 Nov 2010 03:04:51 +0000
(
03:04
+0000)
committer
Eric Van Hensbergen
<ericvh@gmail.com>
Tue, 11 Jan 2011 15:58:07 +0000
(09:58 -0600)
Signed-off-by: Joe Perches <joe@perches.com>
Signed-off-by: Eric Van Hensbergen <ericvh@gmail.com>
fs/9p/acl.c
patch
|
blob
|
history
fs/9p/xattr.c
patch
|
blob
|
history
diff --git
a/fs/9p/acl.c
b/fs/9p/acl.c
index
6e58c4c
..
c9da264
100644
(file)
--- a/
fs/9p/acl.c
+++ b/
fs/9p/acl.c
@@
-28,7
+28,7
@@
static struct posix_acl *__v9fs_get_acl(struct p9_fid *fid, char *name)
{
ssize_t size;
void *value = NULL;
- struct posix_acl *acl = NULL;
;
+ struct posix_acl *acl = NULL;
size = v9fs_fid_xattr_get(fid, name, NULL, 0);
if (size > 0) {
diff --git
a/fs/9p/xattr.c
b/fs/9p/xattr.c
index
43ec7df
..
d288773
100644
(file)
--- a/
fs/9p/xattr.c
+++ b/
fs/9p/xattr.c
@@
-133,7
+133,7
@@
int v9fs_xattr_set(struct dentry *dentry, const char *name,
"p9_client_xattrcreate failed %d\n", retval);
goto error;
}
- msize = fid->clnt->msize;
;
+ msize = fid->clnt->msize;
while (value_len) {
if (value_len > (msize - P9_IOHDRSZ))
write_count = msize - P9_IOHDRSZ;