diff options
author | Jeff Layton <jeff.layton@primarydata.com> | 2015-01-22 08:19:32 -0500 |
---|---|---|
committer | J. Bruce Fields <bfields@redhat.com> | 2015-01-23 10:29:12 -0500 |
commit | 3c5199143bc4b35f472c5c2534026d74821e2044 (patch) | |
tree | 1751acaacbd83ddc906e7b3b2c15f218b4ae4f4d /fs/lockd | |
parent | bbc7f33ac6ff6f48709ce892aa906ddb68b34517 (diff) | |
download | linux-stable-3c5199143bc4b35f472c5c2534026d74821e2044.tar.gz linux-stable-3c5199143bc4b35f472c5c2534026d74821e2044.tar.bz2 linux-stable-3c5199143bc4b35f472c5c2534026d74821e2044.zip |
sunrpc/lockd: fix references to the BKL
The BKL is completely out of the picture in the lockd and sunrpc code
these days. Update the antiquated comments that refer to it.
Signed-off-by: Jeff Layton <jlayton@primarydata.com>
Signed-off-by: J. Bruce Fields <bfields@redhat.com>
Diffstat (limited to 'fs/lockd')
-rw-r--r-- | fs/lockd/svclock.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/lockd/svclock.c b/fs/lockd/svclock.c index 56598742dde4..5581e020644b 100644 --- a/fs/lockd/svclock.c +++ b/fs/lockd/svclock.c @@ -57,8 +57,8 @@ static DEFINE_SPINLOCK(nlm_blocked_lock); static const char *nlmdbg_cookie2a(const struct nlm_cookie *cookie) { /* - * We can get away with a static buffer because we're only - * called with BKL held. + * We can get away with a static buffer because this is only called + * from lockd, which is single-threaded. */ static char buf[2*NLM_MAXCOOKIELEN+1]; unsigned int i, len = sizeof(buf); |