diff options
author | Jeff Layton <jlayton@primarydata.com> | 2014-07-30 08:27:22 -0400 |
---|---|---|
committer | J. Bruce Fields <bfields@redhat.com> | 2014-08-05 10:55:08 -0400 |
commit | 82e05efaec9b5b1528771b30c27d060961576827 (patch) | |
tree | 4b644391f9c4d0af4d7723667bed98e8c030be0e /fs/nfsd/fault_inject.c | |
parent | 016200c37341b62df14ec642b0b30b4b70bc09af (diff) | |
download | op-kernel-dev-82e05efaec9b5b1528771b30c27d060961576827.zip op-kernel-dev-82e05efaec9b5b1528771b30c27d060961576827.tar.gz |
nfsd: add more granular locking to forget_openowners fault injector
...instead of relying on the client_mutex.
Also, fix up the printk output that is generated when the file is read.
It currently says that it's reporting the number of open files, but
it's actually reporting the number of openowners.
Signed-off-by: Jeff Layton <jlayton@primarydata.com>
Signed-off-by: J. Bruce Fields <bfields@redhat.com>
Diffstat (limited to 'fs/nfsd/fault_inject.c')
-rw-r--r-- | fs/nfsd/fault_inject.c | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/fs/nfsd/fault_inject.c b/fs/nfsd/fault_inject.c index a444d82..d4472cd 100644 --- a/fs/nfsd/fault_inject.c +++ b/fs/nfsd/fault_inject.c @@ -146,11 +146,9 @@ static struct nfsd_fault_inject_op inject_ops[] = { }, { .file = "forget_openowners", - .get = nfsd_inject_get, - .set_val = nfsd_inject_set, - .set_clnt = nfsd_inject_set_client, - .forget = nfsd_forget_client_openowners, - .print = nfsd_print_client_openowners, + .get = nfsd_inject_print_openowners, + .set_val = nfsd_inject_forget_openowners, + .set_clnt = nfsd_inject_forget_client_openowners, }, { .file = "forget_delegations", |