Commit 009ca389 authored by Joe Perches's avatar Joe Perches Committed by Eric Van Hensbergen

fs/9p: Remove unnecessary semicolons

Signed-off-by: default avatarJoe Perches <joe@perches.com>
Signed-off-by: default avatarEric Van Hensbergen <ericvh@gmail.com>
parent 5b2eef96
...@@ -28,7 +28,7 @@ static struct posix_acl *__v9fs_get_acl(struct p9_fid *fid, char *name) ...@@ -28,7 +28,7 @@ static struct posix_acl *__v9fs_get_acl(struct p9_fid *fid, char *name)
{ {
ssize_t size; ssize_t size;
void *value = NULL; void *value = NULL;
struct posix_acl *acl = NULL;; struct posix_acl *acl = NULL;
size = v9fs_fid_xattr_get(fid, name, NULL, 0); size = v9fs_fid_xattr_get(fid, name, NULL, 0);
if (size > 0) { if (size > 0) {
......
...@@ -133,7 +133,7 @@ int v9fs_xattr_set(struct dentry *dentry, const char *name, ...@@ -133,7 +133,7 @@ int v9fs_xattr_set(struct dentry *dentry, const char *name,
"p9_client_xattrcreate failed %d\n", retval); "p9_client_xattrcreate failed %d\n", retval);
goto error; goto error;
} }
msize = fid->clnt->msize;; msize = fid->clnt->msize;
while (value_len) { while (value_len) {
if (value_len > (msize - P9_IOHDRSZ)) if (value_len > (msize - P9_IOHDRSZ))
write_count = msize - P9_IOHDRSZ; write_count = msize - P9_IOHDRSZ;
......
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