BKL: remove references to lock_kernel from comments

Lock_kernel is gone from the code, so the comments should be updated,
too. nfsd now uses lock_flocks instead of lock_kernel to protect
against posix file locks.

Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Acked-by: J. Bruce Fields <bfields@redhat.com>
Cc: linux-nfs@vger.kernel.org
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>

authored by Arnd Bergmann and committed by Linus Torvalds 460781b5 451a3c24

+4 -4
+4 -4
fs/nfsd/nfs4state.c
··· 2262 * Spawn a thread to perform a recall on the delegation represented 2263 * by the lease (file_lock) 2264 * 2265 - * Called from break_lease() with lock_kernel() held. 2266 * Note: we assume break_lease will only call this *once* for any given 2267 * lease. 2268 */ ··· 2286 list_add_tail(&dp->dl_recall_lru, &del_recall_lru); 2287 spin_unlock(&recall_lock); 2288 2289 - /* only place dl_time is set. protected by lock_kernel*/ 2290 dp->dl_time = get_seconds(); 2291 2292 /* ··· 2303 /* 2304 * The file_lock is being reapd. 2305 * 2306 - * Called by locks_free_lock() with lock_kernel() held. 2307 */ 2308 static 2309 void nfsd_release_deleg_cb(struct file_lock *fl) ··· 2318 } 2319 2320 /* 2321 - * Called from setlease() with lock_kernel() held 2322 */ 2323 static 2324 int nfsd_same_client_deleg_cb(struct file_lock *onlist, struct file_lock *try)
··· 2262 * Spawn a thread to perform a recall on the delegation represented 2263 * by the lease (file_lock) 2264 * 2265 + * Called from break_lease() with lock_flocks() held. 2266 * Note: we assume break_lease will only call this *once* for any given 2267 * lease. 2268 */ ··· 2286 list_add_tail(&dp->dl_recall_lru, &del_recall_lru); 2287 spin_unlock(&recall_lock); 2288 2289 + /* only place dl_time is set. protected by lock_flocks*/ 2290 dp->dl_time = get_seconds(); 2291 2292 /* ··· 2303 /* 2304 * The file_lock is being reapd. 2305 * 2306 + * Called by locks_free_lock() with lock_flocks() held. 2307 */ 2308 static 2309 void nfsd_release_deleg_cb(struct file_lock *fl) ··· 2318 } 2319 2320 /* 2321 + * Called from setlease() with lock_flocks() held 2322 */ 2323 static 2324 int nfsd_same_client_deleg_cb(struct file_lock *onlist, struct file_lock *try)