nfsd: treat all shutdown signals as equivalent
authorJeff Layton <jlayton@redhat.com>
Mon, 30 Jun 2008 18:09:46 +0000 (14:09 -0400)
committerJ. Bruce Fields <bfields@citi.umich.edu>
Mon, 30 Jun 2008 19:27:47 +0000 (15:27 -0400)
commit100766f8347c1aeb5a548c5c7aa9012f4a3276f1
treefd9d011197bb466d49d102b5298f4293d18d311c
parent3cd2cfeae187fb754f9530e3f919256f350e89ca
nfsd: treat all shutdown signals as equivalent

knfsd currently uses 2 signal masks when processing requests. A "loose"
mask (SHUTDOWN_SIGS) that it uses when receiving network requests, and
then a more "strict" mask (ALLOWED_SIGS, which is just SIGKILL) that it
allows when doing the actual operation on the local storage.

This is apparently unnecessarily complicated. The underlying filesystem
should be able to sanely handle a signal in the middle of an operation.
This patch removes the signal mask handling from knfsd altogether. When
knfsd is started as a kthread, all signals are ignored. It then allows
all of the signals in SHUTDOWN_SIGS. There's no need to set the mask
as well.

Signed-off-by: Jeff Layton <jlayton@redhat.com>
Signed-off-by: J. Bruce Fields <bfields@citi.umich.edu>
fs/nfsd/nfssvc.c