affs.h (18bb1db3e7607e4a997d50991a6f9fa5b0f8722c) | affs.h (4acdaf27ebe2034c342f3be57ef49aed1ad885ef) |
---|---|
1#include <linux/types.h> 2#include <linux/fs.h> 3#include <linux/buffer_head.h> 4#include <linux/amigaffs.h> 5#include <linux/mutex.h> 6 7/* AmigaOS allows file names with up to 30 characters length. 8 * Names longer than that will be silently truncated. If you --- 142 unchanged lines hidden (view full) --- 151extern int affs_init_bitmap(struct super_block *sb, int *flags); 152extern void affs_free_bitmap(struct super_block *sb); 153 154/* namei.c */ 155 156extern int affs_hash_name(struct super_block *sb, const u8 *name, unsigned int len); 157extern struct dentry *affs_lookup(struct inode *dir, struct dentry *dentry, struct nameidata *); 158extern int affs_unlink(struct inode *dir, struct dentry *dentry); | 1#include <linux/types.h> 2#include <linux/fs.h> 3#include <linux/buffer_head.h> 4#include <linux/amigaffs.h> 5#include <linux/mutex.h> 6 7/* AmigaOS allows file names with up to 30 characters length. 8 * Names longer than that will be silently truncated. If you --- 142 unchanged lines hidden (view full) --- 151extern int affs_init_bitmap(struct super_block *sb, int *flags); 152extern void affs_free_bitmap(struct super_block *sb); 153 154/* namei.c */ 155 156extern int affs_hash_name(struct super_block *sb, const u8 *name, unsigned int len); 157extern struct dentry *affs_lookup(struct inode *dir, struct dentry *dentry, struct nameidata *); 158extern int affs_unlink(struct inode *dir, struct dentry *dentry); |
159extern int affs_create(struct inode *dir, struct dentry *dentry, int mode, struct nameidata *); | 159extern int affs_create(struct inode *dir, struct dentry *dentry, umode_t mode, struct nameidata *); |
160extern int affs_mkdir(struct inode *dir, struct dentry *dentry, umode_t mode); 161extern int affs_rmdir(struct inode *dir, struct dentry *dentry); 162extern int affs_link(struct dentry *olddentry, struct inode *dir, 163 struct dentry *dentry); 164extern int affs_symlink(struct inode *dir, struct dentry *dentry, 165 const char *symname); 166extern int affs_rename(struct inode *old_dir, struct dentry *old_dentry, 167 struct inode *new_dir, struct dentry *new_dentry); --- 138 unchanged lines hidden --- | 160extern int affs_mkdir(struct inode *dir, struct dentry *dentry, umode_t mode); 161extern int affs_rmdir(struct inode *dir, struct dentry *dentry); 162extern int affs_link(struct dentry *olddentry, struct inode *dir, 163 struct dentry *dentry); 164extern int affs_symlink(struct inode *dir, struct dentry *dentry, 165 const char *symname); 166extern int affs_rename(struct inode *old_dir, struct dentry *old_dentry, 167 struct inode *new_dir, struct dentry *new_dentry); --- 138 unchanged lines hidden --- |