On Tue, 25 Jul 2006 11:54:57 +1000
NeilBrown <[email protected]> wrote:
>
> Separate out the code for creating a new service, and for creating
> initial sockets.
>
> Some of these new functions will have multiple callers soon.
In which case they shouldn't be inlined, hmm?
> +static inline int nfsd_create_serv(void)
> +{
> + int err = 0;
> + lock_kernel();
> + if (nfsd_serv) {
> + nfsd_serv->sv_nrthreads++;
> + unlock_kernel();
> + return 0;
> + }
> +
> + atomic_set(&nfsd_busy, 0);
> + nfsd_serv = svc_create(&nfsd_program, NFSD_BUFSIZE,
> + nfsd_last_thread);
> + if (nfsd_serv == NULL)
> + err = -ENOMEM;
> + else
> + nfsd_serv->sv_nrthreads++;
> + unlock_kernel();
> + do_gettimeofday(&nfssvc_boot); /* record boot time */
> + return err;
> +}
> +
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to [email protected]
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
[Index of Archives]
[Kernel Newbies]
[Netfilter]
[Bugtraq]
[Photo]
[Stuff]
[Gimp]
[Yosemite News]
[MIPS Linux]
[ARM Linux]
[Linux Security]
[Linux RAID]
[Video 4 Linux]
[Linux for the blind]
[Linux Resources]