The Design and Implementation of the FreeBSD Operating System, Second Edition
Now available: The Design and Implementation of the FreeBSD Operating System (Second Edition)


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]

FreeBSD/Linux Kernel Cross Reference
sys/fs/lockd/lockd_syms.c

Version: -  FREEBSD  -  FREEBSD-13-STABLE  -  FREEBSD-13-0  -  FREEBSD-12-STABLE  -  FREEBSD-12-0  -  FREEBSD-11-STABLE  -  FREEBSD-11-0  -  FREEBSD-10-STABLE  -  FREEBSD-10-0  -  FREEBSD-9-STABLE  -  FREEBSD-9-0  -  FREEBSD-8-STABLE  -  FREEBSD-8-0  -  FREEBSD-7-STABLE  -  FREEBSD-7-0  -  FREEBSD-6-STABLE  -  FREEBSD-6-0  -  FREEBSD-5-STABLE  -  FREEBSD-5-0  -  FREEBSD-4-STABLE  -  FREEBSD-3-STABLE  -  FREEBSD22  -  l41  -  OPENBSD  -  linux-2.6  -  MK84  -  PLAN9  -  xnu-8792 
SearchContext: -  none  -  3  -  10 

    1 /*
    2  * linux/fs/lockd/lockd_syms.c
    3  *
    4  * Symbols exported by the lockd module.
    5  *
    6  * Authors:     Olaf Kirch (okir@monad.swb.de)
    7  *
    8  * Copyright (C) 1997 Olaf Kirch <okir@monad.swb.de>
    9  */
   10 
   11 #define __NO_VERSION__
   12 #include <linux/config.h>
   13 #include <linux/module.h>
   14 
   15 #ifdef CONFIG_MODULES
   16 
   17 #include <linux/types.h>
   18 #include <linux/socket.h>
   19 #include <linux/sched.h>
   20 #include <linux/uio.h>
   21 #include <linux/unistd.h>
   22 
   23 #include <linux/sunrpc/clnt.h>
   24 #include <linux/sunrpc/svc.h>
   25 #include <linux/lockd/lockd.h>
   26 
   27 /* Start/stop the daemon */
   28 EXPORT_SYMBOL(lockd_up);
   29 EXPORT_SYMBOL(lockd_down);
   30 
   31 /* NFS client entry */
   32 EXPORT_SYMBOL(nlmclnt_proc);
   33 
   34 /* NFS server entry points/hooks */
   35 EXPORT_SYMBOL(nlmsvc_invalidate_client);
   36 EXPORT_SYMBOL(nlmsvc_ops);
   37 
   38 #endif /* CONFIG_MODULES */

Cache object: c4abdf90a681bc011ff3e4344e41a7df


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]


This page is part of the FreeBSD/Linux Linux Kernel Cross-Reference, and was automatically generated using a modified version of the LXR engine.