diff options
author | Ralf Baechle <ralf@linux-mips.org> | 1997-12-16 05:34:03 +0000 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 1997-12-16 05:34:03 +0000 |
commit | 967c65a99059fd459b956c1588ce0ba227912c4e (patch) | |
tree | 8224d013ff5d255420713d05610c7efebd204d2a /include/linux/amigaffs.h | |
parent | e20c1cc1656a66a2773bca4591a895cbc12696ff (diff) |
Merge with Linux 2.1.72, part 1.
Diffstat (limited to 'include/linux/amigaffs.h')
-rw-r--r-- | include/linux/amigaffs.h | 17 |
1 files changed, 13 insertions, 4 deletions
diff --git a/include/linux/amigaffs.h b/include/linux/amigaffs.h index 8e39a6fe2..a6b16e066 100644 --- a/include/linux/amigaffs.h +++ b/include/linux/amigaffs.h @@ -4,10 +4,18 @@ #include <asm/byteorder.h> #include <linux/types.h> +/* AmigaOS allows file names with up to 30 characters length. + * Names longer than that will be silently truncated. If you + * want to disallow this, comment out the following #define. + * Creating filesystem objects with longer names will then + * result in an error (ENAMETOOLONG). + */ +/*#define AFFS_NO_TRUNCATE */ + /* Ugly macros make the code more pretty. */ #define GET_END_PTR(st,p,sz) ((st *)((char *)(p)+((sz)-sizeof(st)))) -#define AFFS_GET_HASHENTRY(data,hashkey) htonl(((struct dir_front *)data)->hashtable[hashkey]) +#define AFFS_GET_HASHENTRY(data,hashkey) be32_to_cpu(((struct dir_front *)data)->hashtable[hashkey]) #define AFFS_BLOCK(data,ino,blk) ((struct file_front *)data)->blocks[AFFS_I2HSIZE(ino)-1-(blk)] #define FILE_END(p,i) GET_END_PTR(struct file_end,p,AFFS_I2BSIZE(i)) @@ -16,6 +24,7 @@ #define LINK_END(p,i) GET_END_PTR(struct hlink_end,p,AFFS_I2BSIZE(i)) #define ROOT_END_S(p,s) GET_END_PTR(struct root_end,p,(s)->s_blocksize) #define DATA_FRONT(bh) ((struct data_front *)(bh)->b_data) +#define DIR_FRONT(bh) ((struct dir_front *)(bh)->b_data) /* Only for easier debugging if need be */ #define affs_bread bread @@ -206,14 +215,14 @@ struct data_front #define AFFS_UMAYWRITE(prot) (((prot) & (FIBF_WRITE|FIBF_DELETE)) == (FIBF_WRITE|FIBF_DELETE)) #define AFFS_UMAYREAD(prot) ((prot) & FIBF_READ) -#define AFFS_UMAYEXECUTE(prot) (((prot) & (FIBF_SCRIPT|FIBF_READ)) == (FIBF_SCRIPT|FIBF_READ)) +#define AFFS_UMAYEXECUTE(prot) ((prot) & FIBF_EXECUTE) #define AFFS_GMAYWRITE(prot) (((prot)&(FIBF_GRP_WRITE|FIBF_GRP_DELETE))==\ (FIBF_GRP_WRITE|FIBF_GRP_DELETE)) #define AFFS_GMAYREAD(prot) ((prot) & FIBF_GRP_READ) -#define AFFS_GMAYEXECUTE(prot) (((prot)&(FIBF_SCRIPT|FIBF_GRP_READ))==(FIBF_SCRIPT|FIBF_GRP_READ)) +#define AFFS_GMAYEXECUTE(prot) ((prot) & FIBF_EXECUTE) #define AFFS_OMAYWRITE(prot) (((prot)&(FIBF_OTR_WRITE|FIBF_OTR_DELETE))==\ (FIBF_OTR_WRITE|FIBF_OTR_DELETE)) #define AFFS_OMAYREAD(prot) ((prot) & FIBF_OTR_READ) -#define AFFS_OMAYEXECUTE(prot) (((prot)&(FIBF_SCRIPT|FIBF_OTR_READ))==(FIBF_SCRIPT|FIBF_OTR_READ)) +#define AFFS_OMAYEXECUTE(prot) ((prot) & FIBF_EXECUTE) #endif |