diff options
author | Dan Carpenter <dan.carpenter@oracle.com> | 2017-02-23 13:39:59 +0300 |
---|---|---|
committer | Ilya Dryomov <idryomov@gmail.com> | 2017-02-23 22:22:02 +0100 |
commit | f107548039807eb890e65ce5cd29d6ac52562f09 (patch) | |
tree | bb4af68550231cb521ec874136c8bbc3f6016a03 /fs/ceph | |
parent | 7ba0487cca6199cc19bffd34c00df4ea70ac032a (diff) | |
download | linux-f107548039807eb890e65ce5cd29d6ac52562f09.tar.bz2 |
ceph: tidy some white space in get_nonsnap_parent()
The white space here seems slightly messed up.
Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>
Signed-off-by: Ilya Dryomov <idryomov@gmail.com>
Diffstat (limited to 'fs/ceph')
-rw-r--r-- | fs/ceph/mds_client.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/fs/ceph/mds_client.c b/fs/ceph/mds_client.c index fdbc3544e41c..c681762d76e6 100644 --- a/fs/ceph/mds_client.c +++ b/fs/ceph/mds_client.c @@ -679,8 +679,9 @@ static void __unregister_request(struct ceph_mds_client *mdsc, * working with them. Once we hit a candidate dentry, we attempt to take a * reference to it, and return that as the result. */ -static struct inode *get_nonsnap_parent(struct dentry *dentry) { struct inode - *inode = NULL; +static struct inode *get_nonsnap_parent(struct dentry *dentry) +{ + struct inode *inode = NULL; while (dentry && !IS_ROOT(dentry)) { inode = d_inode_rcu(dentry); |