aboutsummaryrefslogtreecommitdiffstats
path: root/fs
diff options
context:
space:
mode:
authorJeff Layton <jlayton@redhat.com>2008-06-10 08:40:38 -0400
committerJ. Bruce Fields <bfields@citi.umich.edu>2008-06-23 13:02:49 -0400
commit9867d76ca16b3f455f9ca83861f4ce5c94a25928 (patch)
tree1715f69545bf6e766e6e18b33c39270ea7bd15ce /fs
parente096bbc6488d3e49d476bf986d33752709361277 (diff)
knfsd: convert knfsd to kthread API
This patch is rather large, but I couldn't figure out a way to break it up that would remain bisectable. It does several things: - change svc_thread_fn typedef to better match what kthread_create expects - change svc_pool_map_set_cpumask to be more kthread friendly. Make it take a task arg and and get rid of the "oldmask" - have svc_set_num_threads call kthread_create directly - eliminate __svc_create_thread Signed-off-by: Jeff Layton <jlayton@redhat.com> Signed-off-by: J. Bruce Fields <bfields@citi.umich.edu>
Diffstat (limited to 'fs')
-rw-r--r--fs/nfsd/nfssvc.c45
1 files changed, 29 insertions, 16 deletions
diff --git a/fs/nfsd/nfssvc.c b/fs/nfsd/nfssvc.c
index 6339cb70a08d..9e2156813710 100644
--- a/fs/nfsd/nfssvc.c
+++ b/fs/nfsd/nfssvc.c
@@ -21,6 +21,7 @@
21#include <linux/smp_lock.h> 21#include <linux/smp_lock.h>
22#include <linux/freezer.h> 22#include <linux/freezer.h>
23#include <linux/fs_struct.h> 23#include <linux/fs_struct.h>
24#include <linux/kthread.h>
24 25
25#include <linux/sunrpc/types.h> 26#include <linux/sunrpc/types.h>
26#include <linux/sunrpc/stats.h> 27#include <linux/sunrpc/stats.h>
@@ -46,7 +47,7 @@
46#define SHUTDOWN_SIGS (sigmask(SIGKILL) | sigmask(SIGHUP) | sigmask(SIGINT) | sigmask(SIGQUIT)) 47#define SHUTDOWN_SIGS (sigmask(SIGKILL) | sigmask(SIGHUP) | sigmask(SIGINT) | sigmask(SIGQUIT))
47 48
48extern struct svc_program nfsd_program; 49extern struct svc_program nfsd_program;
49static void nfsd(struct svc_rqst *rqstp); 50static int nfsd(void *vrqstp);
50struct timeval nfssvc_boot; 51struct timeval nfssvc_boot;
51static atomic_t nfsd_busy; 52static atomic_t nfsd_busy;
52static unsigned long nfsd_last_call; 53static unsigned long nfsd_last_call;
@@ -407,18 +408,19 @@ update_thread_usage(int busy_threads)
407/* 408/*
408 * This is the NFS server kernel thread 409 * This is the NFS server kernel thread
409 */ 410 */
410static void 411static int
411nfsd(struct svc_rqst *rqstp) 412nfsd(void *vrqstp)
412{ 413{
414 struct svc_rqst *rqstp = (struct svc_rqst *) vrqstp;
413 struct fs_struct *fsp; 415 struct fs_struct *fsp;
414 int err;
415 sigset_t shutdown_mask, allowed_mask; 416 sigset_t shutdown_mask, allowed_mask;
417 int err, preverr = 0;
418 unsigned int signo;
416 419
417 /* Lock module and set up kernel thread */ 420 /* Lock module and set up kernel thread */
418 mutex_lock(&nfsd_mutex); 421 mutex_lock(&nfsd_mutex);
419 daemonize("nfsd");
420 422
421 /* After daemonize() this kernel thread shares current->fs 423 /* At this point, the thread shares current->fs
422 * with the init process. We need to create files with a 424 * with the init process. We need to create files with a
423 * umask of 0 instead of init's umask. */ 425 * umask of 0 instead of init's umask. */
424 fsp = copy_fs_struct(current->fs); 426 fsp = copy_fs_struct(current->fs);
@@ -433,14 +435,18 @@ nfsd(struct svc_rqst *rqstp)
433 siginitsetinv(&shutdown_mask, SHUTDOWN_SIGS); 435 siginitsetinv(&shutdown_mask, SHUTDOWN_SIGS);
434 siginitsetinv(&allowed_mask, ALLOWED_SIGS); 436 siginitsetinv(&allowed_mask, ALLOWED_SIGS);
435 437
438 /*
439 * thread is spawned with all signals set to SIG_IGN, re-enable
440 * the ones that matter
441 */
442 for (signo = 1; signo <= _NSIG; signo++) {
443 if (!sigismember(&shutdown_mask, signo))
444 allow_signal(signo);
445 }
436 446
437 nfsdstats.th_cnt++; 447 nfsdstats.th_cnt++;
438
439 rqstp->rq_task = current;
440
441 mutex_unlock(&nfsd_mutex); 448 mutex_unlock(&nfsd_mutex);
442 449
443
444 /* 450 /*
445 * We want less throttling in balance_dirty_pages() so that nfs to 451 * We want less throttling in balance_dirty_pages() so that nfs to
446 * localhost doesn't cause nfsd to lock up due to all the client's 452 * localhost doesn't cause nfsd to lock up due to all the client's
@@ -462,15 +468,25 @@ nfsd(struct svc_rqst *rqstp)
462 */ 468 */
463 while ((err = svc_recv(rqstp, 60*60*HZ)) == -EAGAIN) 469 while ((err = svc_recv(rqstp, 60*60*HZ)) == -EAGAIN)
464 ; 470 ;
465 if (err < 0) 471 if (err == -EINTR)
466 break; 472 break;
473 else if (err < 0) {
474 if (err != preverr) {
475 printk(KERN_WARNING "%s: unexpected error "
476 "from svc_recv (%d)\n", __func__, -err);
477 preverr = err;
478 }
479 schedule_timeout_uninterruptible(HZ);
480 continue;
481 }
482
467 update_thread_usage(atomic_read(&nfsd_busy)); 483 update_thread_usage(atomic_read(&nfsd_busy));
468 atomic_inc(&nfsd_busy); 484 atomic_inc(&nfsd_busy);
469 485
470 /* Lock the export hash tables for reading. */ 486 /* Lock the export hash tables for reading. */
471 exp_readlock(); 487 exp_readlock();
472 488
473 /* Process request with signals blocked. */ 489 /* Process request with signals blocked. */
474 sigprocmask(SIG_SETMASK, &allowed_mask, NULL); 490 sigprocmask(SIG_SETMASK, &allowed_mask, NULL);
475 491
476 svc_process(rqstp); 492 svc_process(rqstp);
@@ -481,14 +497,10 @@ nfsd(struct svc_rqst *rqstp)
481 atomic_dec(&nfsd_busy); 497 atomic_dec(&nfsd_busy);
482 } 498 }
483 499
484 if (err != -EINTR)
485 printk(KERN_WARNING "nfsd: terminating on error %d\n", -err);
486
487 /* Clear signals before calling svc_exit_thread() */ 500 /* Clear signals before calling svc_exit_thread() */
488 flush_signals(current); 501 flush_signals(current);
489 502
490 mutex_lock(&nfsd_mutex); 503 mutex_lock(&nfsd_mutex);
491
492 nfsdstats.th_cnt --; 504 nfsdstats.th_cnt --;
493 505
494out: 506out:
@@ -498,6 +510,7 @@ out:
498 /* Release module */ 510 /* Release module */
499 mutex_unlock(&nfsd_mutex); 511 mutex_unlock(&nfsd_mutex);
500 module_put_and_exit(0); 512 module_put_and_exit(0);
513 return 0;
501} 514}
502 515
503static __be32 map_new_errors(u32 vers, __be32 nfserr) 516static __be32 map_new_errors(u32 vers, __be32 nfserr)