Whamcloud - gitweb
c10bf021cce59658de636f6c0746a15ecc6fbc9d
[fs/lustre-release.git] / lustre / include / linux / lvfs_linux.h
1 /*
2  * GPL HEADER START
3  *
4  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License version 2 only,
8  * as published by the Free Software Foundation.
9  *
10  * This program is distributed in the hope that it will be useful, but
11  * WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * General Public License version 2 for more details (a copy is included
14  * in the LICENSE file that accompanied this code).
15  *
16  * You should have received a copy of the GNU General Public License
17  * version 2 along with this program; If not, see
18  * http://www.sun.com/software/products/lustre/docs/GPLv2.pdf
19  *
20  * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
21  * CA 95054 USA or visit www.sun.com if you need additional information or
22  * have any questions.
23  *
24  * GPL HEADER END
25  */
26 /*
27  * Copyright (c) 2003, 2010, Oracle and/or its affiliates. All rights reserved.
28  * Use is subject to license terms.
29  */
30 /*
31  * This file is part of Lustre, http://www.lustre.org/
32  * Lustre is a trademark of Sun Microsystems, Inc.
33  */
34
35 #ifndef __LVFS_LINUX_H__
36 #define __LVFS_LINUX_H__
37
38 #include <linux/kernel.h>
39 #include <linux/module.h>
40 #include <linux/fs.h>
41 #include <linux/namei.h>
42 #include <linux/sched.h>
43
44 #include <lvfs.h>
45
46 #define l_file file
47 #define l_dentry dentry
48 #define l_inode inode
49
50 #define l_filp_open filp_open
51
52 struct lvfs_run_ctxt;
53 struct l_file *l_dentry_open(struct lvfs_run_ctxt *, struct l_dentry *,
54                              int flags);
55
56 struct l_linux_dirent {
57         cfs_list_t      lld_list;
58         ino_t           lld_ino;
59         unsigned long   lld_off;
60         char            lld_name[LL_FID_NAMELEN];
61 };
62 struct l_readdir_callback {
63         struct l_linux_dirent *lrc_dirent;
64         cfs_list_t            *lrc_list;
65 };
66
67 #define LVFS_DENTRY_PARAM_MAGIC         20070216UL
68 struct lvfs_dentry_params
69 {
70         unsigned long    ldp_inum;
71         void            *ldp_ptr;
72         __u32            ldp_magic;
73 };
74 #define LVFS_DENTRY_PARAMS_INIT         { .ldp_magic = LVFS_DENTRY_PARAM_MAGIC }
75
76 #define BDEVNAME_DECLARE_STORAGE(foo) char foo[BDEVNAME_SIZE]
77 #define ll_bdevname(SB, STORAGE) __bdevname(kdev_t_to_nr(SB->s_dev), STORAGE)
78 #define lvfs_sbdev(SB)       ((SB)->s_bdev)
79 #define lvfs_sbdev_type      struct block_device *
80 #define lvfs_sbdev_sync      fsync_bdev
81
82 int fsync_bdev(struct block_device *);
83
84 /* Instead of calling within lvfs (a layering violation) */
85 #define lvfs_set_rdonly(obd, sb) \
86         __lvfs_set_rdonly(lvfs_sbdev(sb), fsfilt_journal_sbdev(obd, sb))
87
88 int __lvfs_set_rdonly(lvfs_sbdev_type dev, lvfs_sbdev_type jdev);
89
90 int lvfs_check_rdonly(lvfs_sbdev_type dev);
91 void lvfs_clear_rdonly(lvfs_sbdev_type dev);
92
93 #endif /*  __LVFS_LINUX_H__ */