提交 e0459f57 编写于 作者: A Aneesh Kumar K.V 提交者: Eric Van Hensbergen

fs/9p: Prevent multiple inclusion of same header

Add necessary #ifndef #endif blocks to avoid mulitple inclusion of same headers
Signed-off-by: NAneesh Kumar K.V <aneesh.kumar@linux.vnet.ibm.com>
Signed-off-by: NVenkateswararao Jujjuri <jvrao@linux.vnet.ibm.com>
Signed-off-by: NEric Van Hensbergen <ericvh@gmail.com>
上级 23b08e97
...@@ -19,7 +19,8 @@ ...@@ -19,7 +19,8 @@
* Boston, MA 02111-1301 USA * Boston, MA 02111-1301 USA
* *
*/ */
#ifndef FS_9P_FID_H
#define FS_9P_FID_H
#include <linux/list.h> #include <linux/list.h>
/** /**
...@@ -46,3 +47,4 @@ struct p9_fid *v9fs_fid_lookup(struct dentry *dentry); ...@@ -46,3 +47,4 @@ struct p9_fid *v9fs_fid_lookup(struct dentry *dentry);
struct p9_fid *v9fs_fid_clone(struct dentry *dentry); struct p9_fid *v9fs_fid_clone(struct dentry *dentry);
int v9fs_fid_add(struct dentry *dentry, struct p9_fid *fid); int v9fs_fid_add(struct dentry *dentry, struct p9_fid *fid);
struct p9_fid *v9fs_writeback_fid(struct dentry *dentry); struct p9_fid *v9fs_writeback_fid(struct dentry *dentry);
#endif
...@@ -20,6 +20,9 @@ ...@@ -20,6 +20,9 @@
* Boston, MA 02111-1301 USA * Boston, MA 02111-1301 USA
* *
*/ */
#ifndef FS_9P_V9FS_H
#define FS_9P_V9FS_H
#include <linux/backing-dev.h> #include <linux/backing-dev.h>
/** /**
...@@ -197,3 +200,4 @@ v9fs_get_inode_from_fid(struct v9fs_session_info *v9ses, struct p9_fid *fid, ...@@ -197,3 +200,4 @@ v9fs_get_inode_from_fid(struct v9fs_session_info *v9ses, struct p9_fid *fid,
else else
return v9fs_inode_from_fid(v9ses, fid, sb); return v9fs_inode_from_fid(v9ses, fid, sb);
} }
#endif
...@@ -20,6 +20,8 @@ ...@@ -20,6 +20,8 @@
* Boston, MA 02111-1301 USA * Boston, MA 02111-1301 USA
* *
*/ */
#ifndef FS_9P_V9FS_VFS_H
#define FS_9P_V9FS_VFS_H
/* plan9 semantics are that created files are implicitly opened. /* plan9 semantics are that created files are implicitly opened.
* But linux semantics are that you call create, then open. * But linux semantics are that you call create, then open.
...@@ -36,6 +38,7 @@ ...@@ -36,6 +38,7 @@
* unlink calls remove, which is an implicit clunk. So we have to track * unlink calls remove, which is an implicit clunk. So we have to track
* that kind of thing so that we don't try to clunk a dead fid. * that kind of thing so that we don't try to clunk a dead fid.
*/ */
#define P9_LOCK_TIMEOUT (30*HZ)
extern struct file_system_type v9fs_fs_type; extern struct file_system_type v9fs_fs_type;
extern const struct address_space_operations v9fs_addr_operations; extern const struct address_space_operations v9fs_addr_operations;
...@@ -79,5 +82,4 @@ static inline void v9fs_invalidate_inode_attr(struct inode *inode) ...@@ -79,5 +82,4 @@ static inline void v9fs_invalidate_inode_attr(struct inode *inode)
v9inode->cache_validity |= V9FS_INO_INVALID_ATTR; v9inode->cache_validity |= V9FS_INO_INVALID_ATTR;
return; return;
} }
#endif
#define P9_LOCK_TIMEOUT (30*HZ)
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册