提交 54224f04 编写于 作者: C Chuck Lever 提交者: J. Bruce Fields

NFSD: Fix a handful of coding style issues in write_filehandle()

Clean up: follow kernel coding style.
Signed-off-by: NChuck Lever <chuck.lever@oracle.com>
Signed-off-by: NJ. Bruce Fields <bfields@citi.umich.edu>
上级 b046ccdc
......@@ -390,11 +390,13 @@ static ssize_t write_filehandle(struct file *file, char *buf, size_t size)
dname = mesg;
len = qword_get(&mesg, dname, size);
if (len <= 0) return -EINVAL;
if (len <= 0)
return -EINVAL;
path = dname+len+1;
len = qword_get(&mesg, path, size);
if (len <= 0) return -EINVAL;
if (len <= 0)
return -EINVAL;
len = get_int(&mesg, &maxsize);
if (len)
......@@ -418,7 +420,8 @@ static ssize_t write_filehandle(struct file *file, char *buf, size_t size)
if (len)
return len;
mesg = buf; len = SIMPLE_TRANSACTION_LIMIT;
mesg = buf;
len = SIMPLE_TRANSACTION_LIMIT;
qword_addhex(&mesg, &len, (char*)&fh.fh_base, fh.fh_size);
mesg[-1] = '\n';
return mesg - buf;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册