-
- Downloads
Change calling conventions for filldir_t
filldir_t instances (directory iterators callbacks) used to return 0 for "OK, keep going" or -E... for "stop". Note that it's *NOT* how the error values are reported - the rules for those are callback-dependent and ->iterate{,_shared}() instances only care about zero vs. non-zero (look at emit_dir() and friends). So let's just return bool ("should we keep going?") - it's less confusing that way. The choice between "true means keep going" and "true means stop" is bikesheddable; we have two groups of callbacks - do something for everything in directory, until we run into problem and find an entry in directory and do something to it. The former tended to use 0/-E... conventions - -E<something> on failure. The latter tended to use 0/1, 1 being "stop, we are done". The callers treated anything non-zero as "stop", ignoring which non-zero value did they get. "true means stop" would be more natural for the second group; "true means keep going" - for the first one. I tried both variants and the things like if allocation failed something = -ENOMEM; return true; just looked unnatural and asking for trouble. [folded suggestion from Matthew Wilcox <willy@infradead.org>] Acked-by:Christian Brauner (Microsoft) <brauner@kernel.org> Signed-off-by:
Al Viro <viro@zeniv.linux.org.uk>
Showing
- Documentation/filesystems/porting.rst 11 additions, 0 deletionsDocumentation/filesystems/porting.rst
- arch/alpha/kernel/osf_sys.c 5 additions, 5 deletionsarch/alpha/kernel/osf_sys.c
- fs/afs/dir.c 10 additions, 13 deletionsfs/afs/dir.c
- fs/ecryptfs/file.c 16 additions, 22 deletionsfs/ecryptfs/file.c
- fs/exportfs/expfs.c 3 additions, 4 deletionsfs/exportfs/expfs.c
- fs/fat/dir.c 4 additions, 4 deletionsfs/fat/dir.c
- fs/gfs2/export.c 3 additions, 3 deletionsfs/gfs2/export.c
- fs/ksmbd/smb2pdu.c 7 additions, 9 deletionsfs/ksmbd/smb2pdu.c
- fs/ksmbd/vfs.c 6 additions, 8 deletionsfs/ksmbd/vfs.c
- fs/nfsd/nfs4recover.c 4 additions, 4 deletionsfs/nfsd/nfs4recover.c
- fs/nfsd/vfs.c 3 additions, 3 deletionsfs/nfsd/vfs.c
- fs/ocfs2/dir.c 5 additions, 5 deletionsfs/ocfs2/dir.c
- fs/ocfs2/journal.c 7 additions, 7 deletionsfs/ocfs2/journal.c
- fs/overlayfs/readdir.c 14 additions, 14 deletionsfs/overlayfs/readdir.c
- fs/readdir.c 34 additions, 34 deletionsfs/readdir.c
- fs/reiserfs/xattr.c 10 additions, 10 deletionsfs/reiserfs/xattr.c
- fs/xfs/scrub/dir.c 4 additions, 4 deletionsfs/xfs/scrub/dir.c
- fs/xfs/scrub/parent.c 2 additions, 2 deletionsfs/xfs/scrub/parent.c
- include/linux/fs.h 5 additions, 4 deletionsinclude/linux/fs.h
Loading
Please register or sign in to comment