search for: 9444,7

Displaying 1 result from an estimated 1 matches for "9444,7".

Did you mean: 444,7
2020 Sep 09
17
[trivial PATCH] treewide: Convert switch/case fallthrough; to break;
..., unsigned int flags) case -ENOENT: if (d_really_is_negative(dentry)) valid = 1; - fallthrough; + break; default: break; } diff --git a/fs/nfs/nfs4proc.c b/fs/nfs/nfs4proc.c index 6e95c85fe395..4bf60dcf13e1 100644 --- a/fs/nfs/nfs4proc.c +++ b/fs/nfs/nfs4proc.c @@ -9444,7 +9444,7 @@ static void nfs4_layoutreturn_done(struct rpc_task *task, void *calldata) fallthrough; default: task->tk_status = 0; - fallthrough; + break; case 0: break; case -NFS4ERR_DELAY: diff --git a/fs/nfs_common/nfsacl.c b/fs/nfs_common/nfsacl.c index d056ad2fdefd..009c1e43...