Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at v2.6.12 24 lines 552 B view raw
1/* 2 * linux/include/linux/adfs_fs_i.h 3 * 4 * Copyright (C) 1997 Russell King 5 */ 6 7#ifndef _ADFS_FS_I 8#define _ADFS_FS_I 9 10/* 11 * adfs file system inode data in memory 12 */ 13struct adfs_inode_info { 14 loff_t mmu_private; 15 unsigned long parent_id; /* object id of parent */ 16 __u32 loadaddr; /* RISC OS load address */ 17 __u32 execaddr; /* RISC OS exec address */ 18 unsigned int filetype; /* RISC OS file type */ 19 unsigned int attr; /* RISC OS permissions */ 20 unsigned int stamped:1; /* RISC OS file has date/time */ 21 struct inode vfs_inode; 22}; 23 24#endif