diff options
author | Namjae Jeon <namjae.jeon@samsung.com> | 2021-06-18 04:30:46 +0300 |
---|---|---|
committer | Namjae Jeon <namjae.jeon@samsung.com> | 2021-06-22 10:12:49 +0300 |
commit | 79a8a71db4084d7536fc45ed2a33ce7b451ba127 (patch) | |
tree | 5ca90690ffab4a8c96c06c943cd5ee853c85ceb9 | |
parent | 1dfb8242e8d982d036399766c4af62ddc221e38d (diff) | |
download | linux-79a8a71db4084d7536fc45ed2a33ce7b451ba127.tar.xz |
ksmbd: fix overly long line
Fix overly long line.
Reviewed-by: Christoph Hellwig <hch@lst.de>
Signed-off-by: Namjae Jeon <namjae.jeon@samsung.com>
Signed-off-by: Steve French <stfrench@microsoft.com>
-rw-r--r-- | fs/cifsd/vfs_cache.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/fs/cifsd/vfs_cache.c b/fs/cifsd/vfs_cache.c index 71a11128d908..4cf14c247e9e 100644 --- a/fs/cifsd/vfs_cache.c +++ b/fs/cifsd/vfs_cache.c @@ -601,12 +601,14 @@ __close_file_table_ids(struct ksmbd_file_table *ft, return num; } -static bool tree_conn_fd_check(struct ksmbd_tree_connect *tcon, struct ksmbd_file *fp) +static bool tree_conn_fd_check(struct ksmbd_tree_connect *tcon, + struct ksmbd_file *fp) { return fp->tcon != tcon; } -static bool session_fd_check(struct ksmbd_tree_connect *tcon, struct ksmbd_file *fp) +static bool session_fd_check(struct ksmbd_tree_connect *tcon, + struct ksmbd_file *fp) { return false; } |