Blame view

fs/9p/vfs_dentry.c 3.08 KB
e69e7fe5b   Eric Van Hensbergen   [PATCH] v9fs: VFS...
1
2
3
4
5
6
7
8
9
  /*
   *  linux/fs/9p/vfs_dentry.c
   *
   * This file contians vfs dentry ops for the 9P2000 protocol.
   *
   *  Copyright (C) 2004 by Eric Van Hensbergen <ericvh@gmail.com>
   *  Copyright (C) 2002 by Ron Minnich <rminnich@lanl.gov>
   *
   *  This program is free software; you can redistribute it and/or modify
42e8c509c   Eric Van Hensbergen   [PATCH] v9fs: upd...
10
11
   *  it under the terms of the GNU General Public License version 2
   *  as published by the Free Software Foundation.
e69e7fe5b   Eric Van Hensbergen   [PATCH] v9fs: VFS...
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
   *
   *  This program is distributed in the hope that it will be useful,
   *  but WITHOUT ANY WARRANTY; without even the implied warranty of
   *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   *  GNU General Public License for more details.
   *
   *  You should have received a copy of the GNU General Public License
   *  along with this program; if not, write to:
   *  Free Software Foundation
   *  51 Franklin Street, Fifth Floor
   *  Boston, MA  02111-1301  USA
   *
   */
  
  #include <linux/module.h>
  #include <linux/errno.h>
  #include <linux/fs.h>
  #include <linux/file.h>
  #include <linux/pagemap.h>
  #include <linux/stat.h>
  #include <linux/string.h>
e69e7fe5b   Eric Van Hensbergen   [PATCH] v9fs: VFS...
33
34
35
  #include <linux/inet.h>
  #include <linux/namei.h>
  #include <linux/idr.h>
e8edc6e03   Alexey Dobriyan   Detach sched.h fr...
36
  #include <linux/sched.h>
5a0e3ad6a   Tejun Heo   include cleanup: ...
37
  #include <linux/slab.h>
bd238fb43   Latchesar Ionkov   9p: Reorganizatio...
38
39
  #include <net/9p/9p.h>
  #include <net/9p/client.h>
e69e7fe5b   Eric Van Hensbergen   [PATCH] v9fs: VFS...
40

e69e7fe5b   Eric Van Hensbergen   [PATCH] v9fs: VFS...
41
  #include "v9fs.h"
e69e7fe5b   Eric Van Hensbergen   [PATCH] v9fs: VFS...
42
  #include "v9fs_vfs.h"
e69e7fe5b   Eric Van Hensbergen   [PATCH] v9fs: VFS...
43
44
45
  #include "fid.h"
  
  /**
e03abc0c9   Eric Van Hensbergen   9p: implement opt...
46
47
48
   * v9fs_cached_dentry_delete - called when dentry refcount equals 0
   * @dentry:  dentry in question
   *
e03abc0c9   Eric Van Hensbergen   9p: implement opt...
49
   */
fe15ce446   Nick Piggin   fs: change d_dele...
50
  static int v9fs_cached_dentry_delete(const struct dentry *dentry)
e03abc0c9   Eric Van Hensbergen   9p: implement opt...
51
  {
4b8e99239   Al Viro   9p: switch to %p[dD]
52
53
54
  	p9_debug(P9_DEBUG_VFS, " dentry: %pd (%p)
  ",
  		 dentry, dentry);
e03abc0c9   Eric Van Hensbergen   9p: implement opt...
55

a950a6526   Aneesh Kumar K.V   fs/9p: Clarify ca...
56
  	/* Don't cache negative dentries */
2b0143b5c   David Howells   VFS: normal files...
57
  	if (d_really_is_negative(dentry))
e03abc0c9   Eric Van Hensbergen   9p: implement opt...
58
  		return 1;
e03abc0c9   Eric Van Hensbergen   9p: implement opt...
59
60
61
62
  	return 0;
  }
  
  /**
e69e7fe5b   Eric Van Hensbergen   [PATCH] v9fs: VFS...
63
64
65
66
   * v9fs_dentry_release - called when dentry is going to be freed
   * @dentry:  dentry that is being release
   *
   */
98cd3fb0a   Al Viro   switch 9p
67
  static void v9fs_dentry_release(struct dentry *dentry)
e69e7fe5b   Eric Van Hensbergen   [PATCH] v9fs: VFS...
68
  {
aaeb7ecfb   Al Viro   v9fs: get rid of ...
69
  	struct hlist_node *p, *n;
4b8e99239   Al Viro   9p: switch to %p[dD]
70
71
72
  	p9_debug(P9_DEBUG_VFS, " dentry: %pd (%p)
  ",
  		 dentry, dentry);
aaeb7ecfb   Al Viro   v9fs: get rid of ...
73
74
75
  	hlist_for_each_safe(p, n, (struct hlist_head *)&dentry->d_fsdata)
  		p9_client_clunk(hlist_entry(p, struct p9_fid, dlist));
  	dentry->d_fsdata = NULL;
e69e7fe5b   Eric Van Hensbergen   [PATCH] v9fs: VFS...
76
  }
0b728e191   Al Viro   stop passing name...
77
  static int v9fs_lookup_revalidate(struct dentry *dentry, unsigned int flags)
b3cbea03b   Aneesh Kumar K.V   fs/9p: Add suppor...
78
79
80
81
  {
  	struct p9_fid *fid;
  	struct inode *inode;
  	struct v9fs_inode *v9inode;
0b728e191   Al Viro   stop passing name...
82
  	if (flags & LOOKUP_RCU)
b3cbea03b   Aneesh Kumar K.V   fs/9p: Add suppor...
83
  		return -ECHILD;
2b0143b5c   David Howells   VFS: normal files...
84
  	inode = d_inode(dentry);
b3cbea03b   Aneesh Kumar K.V   fs/9p: Add suppor...
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
  	if (!inode)
  		goto out_valid;
  
  	v9inode = V9FS_I(inode);
  	if (v9inode->cache_validity & V9FS_INO_INVALID_ATTR) {
  		int retval;
  		struct v9fs_session_info *v9ses;
  		fid = v9fs_fid_lookup(dentry);
  		if (IS_ERR(fid))
  			return PTR_ERR(fid);
  
  		v9ses = v9fs_inode2v9ses(inode);
  		if (v9fs_proto_dotl(v9ses))
  			retval = v9fs_refresh_inode_dotl(fid, inode);
  		else
  			retval = v9fs_refresh_inode(fid, inode);
f2eda2c6c   Aneesh Kumar K.V   fs/9p: Fix revali...
101
102
103
  		if (retval == -ENOENT)
  			return 0;
  		if (retval < 0)
b3cbea03b   Aneesh Kumar K.V   fs/9p: Add suppor...
104
105
106
107
108
  			return retval;
  	}
  out_valid:
  	return 1;
  }
a488257ce   Al Viro   constify dentry_o...
109
  const struct dentry_operations v9fs_cached_dentry_operations = {
b3cbea03b   Aneesh Kumar K.V   fs/9p: Add suppor...
110
  	.d_revalidate = v9fs_lookup_revalidate,
ecf3d1f1a   Jeff Layton   vfs: kill FS_REVA...
111
  	.d_weak_revalidate = v9fs_lookup_revalidate,
e03abc0c9   Eric Van Hensbergen   9p: implement opt...
112
113
114
  	.d_delete = v9fs_cached_dentry_delete,
  	.d_release = v9fs_dentry_release,
  };
a488257ce   Al Viro   constify dentry_o...
115
  const struct dentry_operations v9fs_dentry_operations = {
b26d4cd38   Al Viro   consolidate simpl...
116
  	.d_delete = always_delete_dentry,
e69e7fe5b   Eric Van Hensbergen   [PATCH] v9fs: VFS...
117
118
  	.d_release = v9fs_dentry_release,
  };