mirror of
https://github.com/torvalds/linux.git
synced 2024-12-26 12:52:30 +00:00
fs/libfs.c: >80 columns line break fix
Signed-off-by: Ronni Nielsen <theronni@gmail.com> Signed-off-by: Adrian Bunk <bunk@stusta.de>
This commit is contained in:
parent
de372ecd80
commit
0f8952c2fa
@ -159,7 +159,10 @@ int dcache_readdir(struct file * filp, void * dirent, filldir_t filldir)
|
||||
continue;
|
||||
|
||||
spin_unlock(&dcache_lock);
|
||||
if (filldir(dirent, next->d_name.name, next->d_name.len, filp->f_pos, next->d_inode->i_ino, dt_type(next->d_inode)) < 0)
|
||||
if (filldir(dirent, next->d_name.name,
|
||||
next->d_name.len, filp->f_pos,
|
||||
next->d_inode->i_ino,
|
||||
dt_type(next->d_inode)) < 0)
|
||||
return 0;
|
||||
spin_lock(&dcache_lock);
|
||||
/* next is still alive */
|
||||
|
Loading…
Reference in New Issue
Block a user