Whamcloud - gitweb
b=19523
[fs/lustre-release.git] / lustre / mgs / mgs_internal.h
1 /* -*- mode: c; c-basic-offset: 8; indent-tabs-mode: nil; -*-
2  * vim:expandtab:shiftwidth=8:tabstop=8:
3  *
4  * GPL HEADER START
5  *
6  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
7  *
8  * This program is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License version 2 only,
10  * as published by the Free Software Foundation.
11  *
12  * This program is distributed in the hope that it will be useful, but
13  * WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * General Public License version 2 for more details (a copy is included
16  * in the LICENSE file that accompanied this code).
17  *
18  * You should have received a copy of the GNU General Public License
19  * version 2 along with this program; If not, see
20  * http://www.sun.com/software/products/lustre/docs/GPLv2.pdf
21  *
22  * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
23  * CA 95054 USA or visit www.sun.com if you need additional information or
24  * have any questions.
25  *
26  * GPL HEADER END
27  */
28 /*
29  * Copyright  2008 Sun Microsystems, Inc. All rights reserved
30  * Use is subject to license terms.
31  */
32 /*
33  * This file is part of Lustre, http://www.lustre.org/
34  * Lustre is a trademark of Sun Microsystems, Inc.
35  */
36
37 #ifndef _MGS_INTERNAL_H
38 #define _MGS_INTERNAL_H
39
40 #ifdef __KERNEL__
41 # include <linux/fs.h>
42 #endif
43 #include <libcfs/kp30.h>
44 #include <lustre/lustre_idl.h>
45 #include <lustre_lib.h>
46 #include <lustre_dlm.h>
47 #include <lustre_log.h>
48 #include <lustre_export.h>
49
50
51 /* mgs_llog.c */
52 int class_dentry_readdir(struct obd_device *obd, struct dentry *dir,
53                          struct vfsmount *inmnt,
54                          struct list_head *dentry_list);
55
56 #define INDEX_MAP_SIZE 8192     /* covers indicies to FFFF */
57 #define FSDB_LOG_EMPTY  0x0001  /* missing client log */
58 #define FSDB_OLDLOG14   0x0002  /* log starts in old (1.4) style */
59
60 struct fs_db {
61         char              fsdb_name[9];
62         struct list_head  fsdb_list;           /* list of databases */
63         struct semaphore  fsdb_sem;
64         void             *fsdb_ost_index_map;  /* bitmap of used indicies */
65         void             *fsdb_mdt_index_map;  /* bitmap of used indicies */
66         /* COMPAT_146 these items must be recorded out of the old client log */
67         char             *fsdb_clilov;         /* COMPAT_146 client lov name */
68         char             *fsdb_mdtlov;         /* COMPAT_146 mds lov name */
69         char             *fsdb_mdc;            /* COMPAT_146 mdc name */
70         /* end COMPAT_146 */
71         __u32             fsdb_flags;
72         __u32             fsdb_gen;
73 };
74
75 int mgs_init_fsdb_list(struct obd_device *obd);
76 int mgs_cleanup_fsdb_list(struct obd_device *obd);
77 int mgs_check_index(struct obd_device *obd, struct mgs_target_info *mti);
78 int mgs_check_failnid(struct obd_device *obd, struct mgs_target_info *mti);
79 int mgs_write_log_target(struct obd_device *obd, struct mgs_target_info *mti);
80 int mgs_upgrade_sv_14(struct obd_device *obd, struct mgs_target_info *mti);
81 int mgs_erase_log(struct obd_device *obd, char *name);
82 int mgs_erase_logs(struct obd_device *obd, char *fsname);
83 int mgs_setparam(struct obd_device *obd, struct lustre_cfg *lcfg, char *fsname);
84
85 int mgs_pool_cmd(struct obd_device *obd, enum lcfg_command_type cmd,
86                  char *poolname, char *fsname, char *ostname);
87
88 /* mgs_fs.c */
89 int mgs_client_add(struct obd_device *obd,
90                    struct obd_export *exp,
91                    void *localdata);
92 int mgs_client_free(struct obd_export *exp);
93 int mgs_fs_setup(struct obd_device *obd, struct vfsmount *mnt);
94 int mgs_fs_cleanup(struct obd_device *obddev);
95
96 #define strsuf(buf, suffix) (strcmp((buf)+strlen(buf)-strlen(suffix), (suffix)))
97
98 #ifdef LPROCFS
99 int lproc_mgs_setup(struct obd_device *dev);
100 int lproc_mgs_cleanup(struct obd_device *obd);
101 int lproc_mgs_add_live(struct obd_device *obd, struct fs_db *fsdb);
102 int lproc_mgs_del_live(struct obd_device *obd, struct fs_db *fsdb);
103 void lprocfs_mgs_init_vars(struct lprocfs_static_vars *lvars);
104 #else
105 static inline int lproc_mgs_setup(struct obd_device *dev)
106 {return 0;}
107 static inline int lproc_mgs_cleanup(struct obd_device *obd)
108 {return 0;}
109 static inline int lproc_mgs_add_live(struct obd_device *obd, struct fs_db *fsdb)
110 {return 0;}
111 static inline int lproc_mgs_del_live(struct obd_device *obd, struct fs_db *fsdb)
112 {return 0;}
113 static void lprocfs_mgs_init_vars(struct lprocfs_static_vars *lvars)
114 {
115         memset(lvars, 0, sizeof(*lvars));
116 }
117 #endif
118
119 /* mgs/lproc_mgs.c */
120 enum {
121         LPROC_MGS_CONNECT = 0,
122         LPROC_MGS_DISCONNECT,
123         LPROC_MGS_EXCEPTION,
124         LPROC_MGS_TARGET_REG,
125         LPROC_MGS_TARGET_DEL,
126         LPROC_MGS_LAST
127 };
128 void mgs_counter_incr(struct obd_export *exp, int opcode);
129 void mgs_stats_counter_init(struct lprocfs_stats *stats);
130
131 #endif /* _MGS_INTERNAL_H */