aboutsummaryrefslogtreecommitdiffstats
path: root/net
diff options
context:
space:
mode:
Diffstat (limited to 'net')
-rw-r--r--net/sunrpc/svc.c59
1 files changed, 42 insertions, 17 deletions
diff --git a/net/sunrpc/svc.c b/net/sunrpc/svc.c
index a5eb2d6b14ae..b76963d52657 100644
--- a/net/sunrpc/svc.c
+++ b/net/sunrpc/svc.c
@@ -531,31 +531,17 @@ svc_release_buffer(struct svc_rqst *rqstp)
531 put_page(rqstp->rq_pages[i]); 531 put_page(rqstp->rq_pages[i]);
532} 532}
533 533
534/* 534struct svc_rqst *
535 * Create a thread in the given pool. Caller must hold BKL. 535svc_prepare_thread(struct svc_serv *serv, struct svc_pool *pool)
536 * On a NUMA or SMP machine, with a multi-pool serv, the thread
537 * will be restricted to run on the cpus belonging to the pool.
538 */
539static int
540__svc_create_thread(svc_thread_fn func, struct svc_serv *serv,
541 struct svc_pool *pool)
542{ 536{
543 struct svc_rqst *rqstp; 537 struct svc_rqst *rqstp;
544 int error = -ENOMEM;
545 int have_oldmask = 0;
546 cpumask_t oldmask;
547 538
548 rqstp = kzalloc(sizeof(*rqstp), GFP_KERNEL); 539 rqstp = kzalloc(sizeof(*rqstp), GFP_KERNEL);
549 if (!rqstp) 540 if (!rqstp)
550 goto out; 541 goto out_enomem;
551 542
552 init_waitqueue_head(&rqstp->rq_wait); 543 init_waitqueue_head(&rqstp->rq_wait);
553 544
554 if (!(rqstp->rq_argp = kmalloc(serv->sv_xdrsize, GFP_KERNEL))
555 || !(rqstp->rq_resp = kmalloc(serv->sv_xdrsize, GFP_KERNEL))
556 || !svc_init_buffer(rqstp, serv->sv_max_mesg))
557 goto out_thread;
558
559 serv->sv_nrthreads++; 545 serv->sv_nrthreads++;
560 spin_lock_bh(&pool->sp_lock); 546 spin_lock_bh(&pool->sp_lock);
561 pool->sp_nrthreads++; 547 pool->sp_nrthreads++;
@@ -564,6 +550,45 @@ __svc_create_thread(svc_thread_fn func, struct svc_serv *serv,
564 rqstp->rq_server = serv; 550 rqstp->rq_server = serv;
565 rqstp->rq_pool = pool; 551 rqstp->rq_pool = pool;
566 552
553 rqstp->rq_argp = kmalloc(serv->sv_xdrsize, GFP_KERNEL);
554 if (!rqstp->rq_argp)
555 goto out_thread;
556
557 rqstp->rq_resp = kmalloc(serv->sv_xdrsize, GFP_KERNEL);
558 if (!rqstp->rq_resp)
559 goto out_thread;
560
561 if (!svc_init_buffer(rqstp, serv->sv_max_mesg))
562 goto out_thread;
563
564 return rqstp;
565out_thread:
566 svc_exit_thread(rqstp);
567out_enomem:
568 return ERR_PTR(-ENOMEM);
569}
570EXPORT_SYMBOL(svc_prepare_thread);
571
572/*
573 * Create a thread in the given pool. Caller must hold BKL.
574 * On a NUMA or SMP machine, with a multi-pool serv, the thread
575 * will be restricted to run on the cpus belonging to the pool.
576 */
577static int
578__svc_create_thread(svc_thread_fn func, struct svc_serv *serv,
579 struct svc_pool *pool)
580{
581 struct svc_rqst *rqstp;
582 int error = -ENOMEM;
583 int have_oldmask = 0;
584 cpumask_t oldmask;
585
586 rqstp = svc_prepare_thread(serv, pool);
587 if (IS_ERR(rqstp)) {
588 error = PTR_ERR(rqstp);
589 goto out;
590 }
591
567 if (serv->sv_nrpools > 1) 592 if (serv->sv_nrpools > 1)
568 have_oldmask = svc_pool_map_set_cpumask(pool->sp_id, &oldmask); 593 have_oldmask = svc_pool_map_set_cpumask(pool->sp_id, &oldmask);
569 594