Merge tag 'sound-3.17-rc3' of git://git.kernel.org/pub/scm/linux/kernel/git/tiwai...
[deliverable/linux.git] / drivers / staging / lustre / lustre / include / linux / lvfs.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 * Copyright (c) 2012, Intel Corporation.
31 */
32 /*
33 * This file is part of Lustre, http://www.lustre.org/
34 * Lustre is a trademark of Sun Microsystems, Inc.
35 *
36 * lustre/include/linux/lvfs.h
37 *
38 * lustre VFS/process permission interface
39 */
40
41 #ifndef __LINUX_LVFS_H__
42 #define __LINUX_LVFS_H__
43
44 #ifndef __LVFS_H__
45 #error Do not #include this file directly. #include <lvfs.h> instead
46 #endif
47
48 #include "lustre_compat25.h"
49 #include "lustre_common.h"
50 #include "lvfs_linux.h"
51
52 #define LLOG_LVFS
53
54 /* simple.c */
55
56 struct lvfs_ucred {
57 kuid_t luc_uid;
58 kgid_t luc_gid;
59 kuid_t luc_fsuid;
60 kgid_t luc_fsgid;
61 kernel_cap_t luc_cap;
62 __u32 luc_umask;
63 struct group_info *luc_ginfo;
64 struct md_identity *luc_identity;
65 };
66
67 struct lvfs_callback_ops {
68 struct dentry *(*l_fid2dentry)(__u64 id_ino, __u32 gen, __u64 gr, void *data);
69 };
70
71 #define OBD_RUN_CTXT_MAGIC 0xC0FFEEAA
72 #define OBD_CTXT_DEBUG /* development-only debugging */
73 struct lvfs_run_ctxt {
74 struct vfsmount *pwdmnt;
75 struct dentry *pwd;
76 mm_segment_t fs;
77 struct lvfs_ucred luc;
78 int ngroups;
79 struct lvfs_callback_ops cb_ops;
80 struct group_info *group_info;
81 struct dt_device *dt;
82 #ifdef OBD_CTXT_DEBUG
83 __u32 magic;
84 #endif
85 };
86
87 #ifdef OBD_CTXT_DEBUG
88 #define OBD_SET_CTXT_MAGIC(ctxt) (ctxt)->magic = OBD_RUN_CTXT_MAGIC
89 #else
90 #define OBD_SET_CTXT_MAGIC(ctxt) do {} while(0)
91 #endif
92
93
94 int lustre_rename(struct dentry *dir, struct vfsmount *mnt, char *oldname,
95 char *newname);
96
97 static inline void l_dput(struct dentry *de)
98 {
99 if (!de || IS_ERR(de))
100 return;
101 //shrink_dcache_parent(de);
102 LASSERT(d_count(de) > 0);
103 dput(de);
104 }
105
106 /* We need to hold the inode semaphore over the dcache lookup itself, or we
107 * run the risk of entering the filesystem lookup path concurrently on SMP
108 * systems, and instantiating two inodes for the same entry. We still
109 * protect against concurrent addition/removal races with the DLM locking.
110 */
111 static inline struct dentry *ll_lookup_one_len(const char *fid_name,
112 struct dentry *dparent,
113 int fid_namelen)
114 {
115 struct dentry *dchild;
116
117 mutex_lock(&dparent->d_inode->i_mutex);
118 dchild = lookup_one_len(fid_name, dparent, fid_namelen);
119 mutex_unlock(&dparent->d_inode->i_mutex);
120
121 if (IS_ERR(dchild) || dchild->d_inode == NULL)
122 return dchild;
123
124 if (is_bad_inode(dchild->d_inode)) {
125 CERROR("bad inode returned %lu/%u\n",
126 dchild->d_inode->i_ino, dchild->d_inode->i_generation);
127 dput(dchild);
128 dchild = ERR_PTR(-ENOENT);
129 }
130 return dchild;
131 }
132
133
134 #endif
This page took 0.036195 seconds and 6 git commands to generate.