The patch titled Subject: coda: remove sb test in coda_fid_to_inode() has been added to the -mm tree. Its filename is coda-remove-sb-test-in-coda_fid_to_inode.patch This patch should soon appear at http://ozlabs.org/~akpm/mmots/broken-out/coda-remove-sb-test-in-coda_fid_to_inode.patch and later at http://ozlabs.org/~akpm/mmotm/broken-out/coda-remove-sb-test-in-coda_fid_to_inode.patch Before you just go and hit "reply", please: a) Consider who else should be cc'ed b) Prefer to cc a suitable mailing list as well c) Ideally: find the original patch on the mailing list and do a reply-to-all to that, adding suitable additional cc's *** Remember to use Documentation/process/submit-checklist.rst when testing your code *** The -mm tree is included into linux-next and is updated there every 3-4 working days ------------------------------------------------------ From: Fabian Frederick <fabf@xxxxxxxxx> Subject: coda: remove sb test in coda_fid_to_inode() coda_fid_to_inode() is only called by coda_downcall() where sb is already being tested. Link: http://lkml.kernel.org/r/d2163b3136348faf83ba47dc2d65a5d0a9a135dd.1558117389.git.jaharkes@xxxxxxxxxx Signed-off-by: Fabian Frederick <fabf@xxxxxxxxx> Signed-off-by: Jan Harkes <jaharkes@xxxxxxxxxx> Cc: Arnd Bergmann <arnd@xxxxxxxx> Cc: Colin Ian King <colin.king@xxxxxxxxxxxxx> Cc: Dan Carpenter <dan.carpenter@xxxxxxxxxx> Cc: David Howells <dhowells@xxxxxxxxxx> Cc: Mikko Rapeli <mikko.rapeli@xxxxxx> Cc: Sam Protsenko <semen.protsenko@xxxxxxxxxx> Cc: Yann Droneaud <ydroneaud@xxxxxxxxxx> Cc: Zhouyang Jia <jiazhouyang09@xxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- fs/coda/cnode.c | 5 ----- 1 file changed, 5 deletions(-) --- a/fs/coda/cnode.c~coda-remove-sb-test-in-coda_fid_to_inode +++ a/fs/coda/cnode.c @@ -137,11 +137,6 @@ struct inode *coda_fid_to_inode(struct C struct inode *inode; unsigned long hash = coda_f2i(fid); - if ( !sb ) { - pr_warn("%s: no sb!\n", __func__); - return NULL; - } - inode = ilookup5(sb, hash, coda_test_inode, fid); if ( !inode ) return NULL; _ Patches currently in -mm which might be from fabf@xxxxxxxxx are coda-destroy-mutex-in-put_super.patch coda-use-size-for-stat.patch coda-add-__init-to-init_coda_psdev.patch coda-remove-sysctl-object-from-module-when-unused.patch coda-remove-sb-test-in-coda_fid_to_inode.patch coda-ftoc-validity-check-integration.patch