Whamcloud - gitweb
file ext3-largefile.diff was initially added on branch b_devel.
[fs/lustre-release.git] / lustre / ptlbd / server.c
1 /* -*- mode: c; c-basic-offset: 8; indent-tabs-mode: nil; -*-
2  * vim:expandtab:shiftwidth=8:tabstop=8:
3  *
4  *  Copyright (c) 2002, 2003 Cluster File Systems, Inc.
5  *   Author: Zach Brown <zab@clusterfs.com>
6  *
7  *   This file is part of Lustre, http://www.lustre.org.
8  *
9  *   Lustre is free software; you can redistribute it and/or
10  *   modify it under the terms of version 2 of the GNU General Public
11  *   License as published by the Free Software Foundation.
12  *
13  *   Lustre is distributed in the hope that it will be useful,
14  *   but WITHOUT ANY WARRANTY; without even the implied warranty of
15  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16  *   GNU General Public License for more details.
17  *
18  *   You should have received a copy of the GNU General Public License
19  *   along with Lustre; if not, write to the Free Software
20  *   Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
21  */
22
23 #include <linux/version.h>
24 #include <linux/module.h>
25 #include <linux/fs.h>
26
27 #define DEBUG_SUBSYSTEM S_PTLBD
28
29 #include <linux/obd_support.h>
30 #include <linux/obd_class.h>
31 #include <linux/lustre_debug.h>
32 #include <linux/lprocfs_status.h>
33 #include <linux/obd_ptlbd.h>
34
35 static int ptlbd_sv_already_setup = 1;
36
37 static int ptlbd_sv_setup(struct obd_device *obddev, obd_count len, void *buf)
38 {
39         struct obd_uuid self_uuid = { "self" };
40         struct ptlbd_obd *ptlbd = &obddev->u.ptlbd;
41         int rc;
42         ENTRY;
43
44         ptlbd->filp = filp_open("/tmp/ptlbd-backing-file-la-la-la", 
45                                         O_RDWR|O_CREAT, 0600);
46         if ( IS_ERR(ptlbd->filp) )
47                 RETURN(PTR_ERR(ptlbd->filp));
48
49         ptlbd->ptlbd_service =
50                 ptlrpc_init_svc(PTLBD_NEVENTS, PTLBD_NBUFS, PTLBD_BUFSIZE,
51                                 PTLBD_MAXREQSIZE, PTLBD_REQUEST_PORTAL,
52                                 PTLBD_REPLY_PORTAL, &self_uuid,
53                                 ptlbd_parse_req, "ptlbd_sv");
54
55         if (ptlbd->ptlbd_service == NULL) 
56                 GOTO(out_filp, rc = -ENOMEM);
57
58         rc = ptlrpc_start_thread(obddev, ptlbd->ptlbd_service, "ptldb");
59         if (rc != 0) 
60                 GOTO(out_thread, rc);
61
62         ptlbd_sv_already_setup = 1;
63
64         RETURN(0);
65
66 out_thread:
67         ptlrpc_stop_all_threads(ptlbd->ptlbd_service);
68         ptlrpc_unregister_service(ptlbd->ptlbd_service);
69 out_filp:
70         filp_close(ptlbd->filp, NULL);
71
72         RETURN(rc);
73 }
74
75 static int ptlbd_sv_cleanup(struct obd_device *obddev)
76 {
77         struct ptlbd_obd *ptlbd = &obddev->u.ptlbd;
78         ENTRY;
79
80         /* XXX check for state */
81
82         ptlrpc_stop_all_threads(ptlbd->ptlbd_service);
83         ptlrpc_unregister_service(ptlbd->ptlbd_service);
84         if ( ! IS_ERR(ptlbd->filp) )
85                 filp_close(ptlbd->filp, NULL);
86
87         ptlbd_sv_already_setup = 0;
88         RETURN(0);
89 }
90
91 static struct obd_ops ptlbd_sv_obd_ops = {
92         o_owner:        THIS_MODULE,
93         o_setup:        ptlbd_sv_setup,
94         o_cleanup:      ptlbd_sv_cleanup,
95 };
96
97 int ptlbd_sv_init(void)
98 {
99         struct lprocfs_static_vars lvars;
100
101         lprocfs_init_vars(&lvars);
102         return class_register_type(&ptlbd_sv_obd_ops, lvars.module_vars,
103                                    OBD_PTLBD_SV_DEVICENAME);
104 }
105
106 void ptlbd_sv_exit(void)
107 {
108         class_unregister_type(OBD_PTLBD_SV_DEVICENAME);
109 }