watchdog: alim1535_wdt: fix compiler warning on ali_pci_tbl
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / fs / adfs / dir.c
blobbf7693c384f9af5192fb8cef2da5611ac348cc90
1 /*
2 * linux/fs/adfs/dir.c
4 * Copyright (C) 1999-2000 Russell King
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 as
8 * published by the Free Software Foundation.
10 * Common directory handling for ADFS
12 #include <linux/smp_lock.h>
13 #include "adfs.h"
16 * For future. This should probably be per-directory.
18 static DEFINE_RWLOCK(adfs_dir_lock);
20 static int
21 adfs_readdir(struct file *filp, void *dirent, filldir_t filldir)
23 struct inode *inode = filp->f_path.dentry->d_inode;
24 struct super_block *sb = inode->i_sb;
25 struct adfs_dir_ops *ops = ADFS_SB(sb)->s_dir;
26 struct object_info obj;
27 struct adfs_dir dir;
28 int ret = 0;
30 lock_kernel();
32 if (filp->f_pos >> 32)
33 goto out;
35 ret = ops->read(sb, inode->i_ino, inode->i_size, &dir);
36 if (ret)
37 goto out;
39 switch ((unsigned long)filp->f_pos) {
40 case 0:
41 if (filldir(dirent, ".", 1, 0, inode->i_ino, DT_DIR) < 0)
42 goto free_out;
43 filp->f_pos += 1;
45 case 1:
46 if (filldir(dirent, "..", 2, 1, dir.parent_id, DT_DIR) < 0)
47 goto free_out;
48 filp->f_pos += 1;
50 default:
51 break;
54 read_lock(&adfs_dir_lock);
56 ret = ops->setpos(&dir, filp->f_pos - 2);
57 if (ret)
58 goto unlock_out;
59 while (ops->getnext(&dir, &obj) == 0) {
60 if (filldir(dirent, obj.name, obj.name_len,
61 filp->f_pos, obj.file_id, DT_UNKNOWN) < 0)
62 goto unlock_out;
63 filp->f_pos += 1;
66 unlock_out:
67 read_unlock(&adfs_dir_lock);
69 free_out:
70 ops->free(&dir);
72 out:
73 unlock_kernel();
74 return ret;
77 int
78 adfs_dir_update(struct super_block *sb, struct object_info *obj, int wait)
80 int ret = -EINVAL;
81 #ifdef CONFIG_ADFS_FS_RW
82 struct adfs_dir_ops *ops = ADFS_SB(sb)->s_dir;
83 struct adfs_dir dir;
85 printk(KERN_INFO "adfs_dir_update: object %06X in dir %06X\n",
86 obj->file_id, obj->parent_id);
88 if (!ops->update) {
89 ret = -EINVAL;
90 goto out;
93 ret = ops->read(sb, obj->parent_id, 0, &dir);
94 if (ret)
95 goto out;
97 write_lock(&adfs_dir_lock);
98 ret = ops->update(&dir, obj);
99 write_unlock(&adfs_dir_lock);
101 if (wait) {
102 int err = ops->sync(&dir);
103 if (!ret)
104 ret = err;
107 ops->free(&dir);
108 out:
109 #endif
110 return ret;
113 static int
114 adfs_match(struct qstr *name, struct object_info *obj)
116 int i;
118 if (name->len != obj->name_len)
119 return 0;
121 for (i = 0; i < name->len; i++) {
122 char c1, c2;
124 c1 = name->name[i];
125 c2 = obj->name[i];
127 if (c1 >= 'A' && c1 <= 'Z')
128 c1 += 'a' - 'A';
129 if (c2 >= 'A' && c2 <= 'Z')
130 c2 += 'a' - 'A';
132 if (c1 != c2)
133 return 0;
135 return 1;
138 static int
139 adfs_dir_lookup_byname(struct inode *inode, struct qstr *name, struct object_info *obj)
141 struct super_block *sb = inode->i_sb;
142 struct adfs_dir_ops *ops = ADFS_SB(sb)->s_dir;
143 struct adfs_dir dir;
144 int ret;
146 ret = ops->read(sb, inode->i_ino, inode->i_size, &dir);
147 if (ret)
148 goto out;
150 if (ADFS_I(inode)->parent_id != dir.parent_id) {
151 adfs_error(sb, "parent directory changed under me! (%lx but got %lx)\n",
152 ADFS_I(inode)->parent_id, dir.parent_id);
153 ret = -EIO;
154 goto free_out;
157 obj->parent_id = inode->i_ino;
160 * '.' is handled by reserved_lookup() in fs/namei.c
162 if (name->len == 2 && name->name[0] == '.' && name->name[1] == '.') {
164 * Currently unable to fill in the rest of 'obj',
165 * but this is better than nothing. We need to
166 * ascend one level to find it's parent.
168 obj->name_len = 0;
169 obj->file_id = obj->parent_id;
170 goto free_out;
173 read_lock(&adfs_dir_lock);
175 ret = ops->setpos(&dir, 0);
176 if (ret)
177 goto unlock_out;
179 ret = -ENOENT;
180 while (ops->getnext(&dir, obj) == 0) {
181 if (adfs_match(name, obj)) {
182 ret = 0;
183 break;
187 unlock_out:
188 read_unlock(&adfs_dir_lock);
190 free_out:
191 ops->free(&dir);
192 out:
193 return ret;
196 const struct file_operations adfs_dir_operations = {
197 .read = generic_read_dir,
198 .llseek = generic_file_llseek,
199 .readdir = adfs_readdir,
200 .fsync = generic_file_fsync,
203 static int
204 adfs_hash(const struct dentry *parent, const struct inode *inode,
205 struct qstr *qstr)
207 const unsigned int name_len = ADFS_SB(parent->d_sb)->s_namelen;
208 const unsigned char *name;
209 unsigned long hash;
210 int i;
212 if (qstr->len < name_len)
213 return 0;
216 * Truncate the name in place, avoids
217 * having to define a compare function.
219 qstr->len = i = name_len;
220 name = qstr->name;
221 hash = init_name_hash();
222 while (i--) {
223 char c;
225 c = *name++;
226 if (c >= 'A' && c <= 'Z')
227 c += 'a' - 'A';
229 hash = partial_name_hash(c, hash);
231 qstr->hash = end_name_hash(hash);
233 return 0;
237 * Compare two names, taking note of the name length
238 * requirements of the underlying filesystem.
240 static int
241 adfs_compare(const struct dentry *parent, const struct inode *pinode,
242 const struct dentry *dentry, const struct inode *inode,
243 unsigned int len, const char *str, const struct qstr *name)
245 int i;
247 if (len != name->len)
248 return 1;
250 for (i = 0; i < name->len; i++) {
251 char a, b;
253 a = str[i];
254 b = name->name[i];
256 if (a >= 'A' && a <= 'Z')
257 a += 'a' - 'A';
258 if (b >= 'A' && b <= 'Z')
259 b += 'a' - 'A';
261 if (a != b)
262 return 1;
264 return 0;
267 const struct dentry_operations adfs_dentry_operations = {
268 .d_hash = adfs_hash,
269 .d_compare = adfs_compare,
272 static struct dentry *
273 adfs_lookup(struct inode *dir, struct dentry *dentry, struct nameidata *nd)
275 struct inode *inode = NULL;
276 struct object_info obj;
277 int error;
279 d_set_d_op(dentry, &adfs_dentry_operations);
280 lock_kernel();
281 error = adfs_dir_lookup_byname(dir, &dentry->d_name, &obj);
282 if (error == 0) {
283 error = -EACCES;
285 * This only returns NULL if get_empty_inode
286 * fails.
288 inode = adfs_iget(dir->i_sb, &obj);
289 if (inode)
290 error = 0;
292 unlock_kernel();
293 d_add(dentry, inode);
294 return ERR_PTR(error);
298 * directories can handle most operations...
300 const struct inode_operations adfs_dir_inode_operations = {
301 .lookup = adfs_lookup,
302 .setattr = adfs_notify_change,