#include <linux/kernel.h>
#include <linux/module.h>
#include <linux/init.h>
#include <linux/fs.h>
#include <linux/namei.h>
#include <linux/pagemap.h>
#include <linux/ctype.h>
#include <linux/sched.h>
#include "internal.h"
Go to the source code of this file.
#define AFS_DIR_DIRENT_SIZE 32 |
Definition at line 73 of file dir.c.
#define AFS_DIR_HASHTBL_SIZE 128 |
Definition at line 72 of file dir.c.
#define AFS_DIR_MAGIC htons(1234) |
Definition at line 95 of file dir.c.
#define AFS_DIRENT_PER_BLOCK 64 |
Definition at line 74 of file dir.c.
Initial value:= {
.open = afs_dir_open,
.readdir = afs_readdir,
}
Definition at line 43 of file dir.c.
Initial value:= {
.create = afs_create,
.lookup = afs_lookup,
.link = afs_link,
.unlink = afs_unlink,
.symlink = afs_symlink,
.mkdir = afs_mkdir,
.rmdir = afs_rmdir,
.rename = afs_rename,
}
Definition at line 51 of file dir.c.
Initial value:= {
.d_revalidate = afs_d_revalidate,
.d_delete = afs_d_delete,
.d_release = afs_d_release,
}
Definition at line 65 of file dir.c.