/fs/ |
D | filesystems.c | 36 void get_filesystem(struct file_system_type *fs) in get_filesystem() argument 38 __module_get(fs->owner); in get_filesystem() 41 void put_filesystem(struct file_system_type *fs) in put_filesystem() argument 43 module_put(fs->owner); in put_filesystem() 69 int register_filesystem(struct file_system_type * fs) in register_filesystem() argument 74 BUG_ON(strchr(fs->name, '.')); in register_filesystem() 75 if (fs->next) in register_filesystem() 77 INIT_LIST_HEAD(&fs->fs_supers); in register_filesystem() 79 p = find_filesystem(fs->name, strlen(fs->name)); in register_filesystem() 83 *p = fs; in register_filesystem() [all …]
|
D | Kconfig | 9 source "fs/ext2/Kconfig" 10 source "fs/ext3/Kconfig" 11 source "fs/ext4/Kconfig" 19 source "fs/jbd/Kconfig" 20 source "fs/jbd2/Kconfig" 30 source "fs/reiserfs/Kconfig" 31 source "fs/jfs/Kconfig" 50 source "fs/xfs/Kconfig" 51 source "fs/gfs2/Kconfig" 52 source "fs/ocfs2/Kconfig" [all …]
|
D | namespace.c | 1053 if (mnt == current->fs->root.mnt || in do_umount() 1089 if (mnt == current->fs->root.mnt && !(flags & MNT_DETACH)) { in do_umount() 1973 struct fs_struct *fs) in dup_mnt_ns() argument 2010 if (fs) { in dup_mnt_ns() 2011 if (p == fs->root.mnt) { in dup_mnt_ns() 2013 fs->root.mnt = mntget(q); in dup_mnt_ns() 2015 if (p == fs->pwd.mnt) { in dup_mnt_ns() 2017 fs->pwd.mnt = mntget(q); in dup_mnt_ns() 2095 void set_fs_root(struct fs_struct *fs, struct path *path) in set_fs_root() argument 2099 write_lock(&fs->lock); in set_fs_root() [all …]
|
D | namei.c | 561 struct fs_struct *fs = current->fs; in __vfs_follow_link() local 565 read_lock(&fs->lock); in __vfs_follow_link() 566 nd->path = fs->root; in __vfs_follow_link() 567 path_get(&fs->root); in __vfs_follow_link() 568 read_unlock(&fs->lock); in __vfs_follow_link() 742 struct fs_struct *fs = current->fs; in follow_dotdot() local 748 read_lock(&fs->lock); in follow_dotdot() 749 if (nd->path.dentry == fs->root.dentry && in follow_dotdot() 750 nd->path.mnt == fs->root.mnt) { in follow_dotdot() 751 read_unlock(&fs->lock); in follow_dotdot() [all …]
|
D | binfmt_aout.c | 94 mm_segment_t fs; in aout_core_dump() local 105 fs = get_fs(); in aout_core_dump() 153 set_fs(fs); in aout_core_dump()
|
/fs/btrfs/ |
D | sysfs.c | 43 static ssize_t super_blocks_used_show(struct btrfs_fs_info *fs, char *buf) in super_blocks_used_show() argument 47 (unsigned long long)btrfs_super_bytes_used(&fs->super_copy)); in super_blocks_used_show() 50 static ssize_t super_total_blocks_show(struct btrfs_fs_info *fs, char *buf) in super_total_blocks_show() argument 53 (unsigned long long)btrfs_super_total_bytes(&fs->super_copy)); in super_total_blocks_show() 56 static ssize_t super_blocksize_show(struct btrfs_fs_info *fs, char *buf) in super_blocksize_show() argument 59 (unsigned long long)btrfs_super_sectorsize(&fs->super_copy)); in super_blocksize_show() 107 struct btrfs_fs_info *fs = container_of(kobj, struct btrfs_fs_info, in btrfs_super_attr_show() local 113 return a->show ? a->show(fs, buf) : 0; in btrfs_super_attr_show() 120 struct btrfs_fs_info *fs = container_of(kobj, struct btrfs_fs_info, in btrfs_super_attr_store() local 126 return a->store ? a->store(fs, buf, len) : 0; in btrfs_super_attr_store() [all …]
|
/fs/ntfs/ |
D | ChangeLog | 34 - Fix deadlock in fs/ntfs/inode.c::ntfs_put_inode(). Thanks to Sergey 54 - Limit name length in fs/ntfs/unistr.c::ntfs_nlstoucs() to maximum 57 - Improve comments on file attribute flags in fs/ntfs/layout.h. 58 - Fix a bug in fs/ntfs/inode.c::ntfs_read_locked_index_inode() where we 62 fs/ntfs/inode.c::ntfs_write_inode(). 64 fs/ntfs/unistr.c::ntfs_nlstoucs() in fs/ntfs/namei.c::ntfs_lookup(). 110 - Add fs/ntfs/attrib.[hc]::ntfs_attr_extend_allocation(), a function to 113 - Implement fs/ntfs/inode.[hc]::ntfs_truncate(). It only supports 160 - Add fs/ntfs/malloc.h::ntfs_malloc_nofs_nofail() which is analogous to 164 fs/ntfs/runlist.c::ntfs_runlists_merge(). This means we no longer [all …]
|
/fs/gfs2/ |
D | util.h | 15 #define fs_printk(level, fs, fmt, arg...) \ argument 16 printk(level "GFS2: fsid=%s: " fmt , (fs)->sd_fsname , ## arg) 18 #define fs_info(fs, fmt, arg...) \ argument 19 fs_printk(KERN_INFO , fs , fmt , ## arg) 21 #define fs_warn(fs, fmt, arg...) \ argument 22 fs_printk(KERN_WARNING , fs , fmt , ## arg) 24 #define fs_err(fs, fmt, arg...) \ argument 25 fs_printk(KERN_ERR, fs , fmt , ## arg)
|
/fs/befs/ |
D | ChangeLog | 186 include/linux/fs.h. Also, befs_inode_info is huge (becuase of the 207 testing purposes. (fs/Config.in) 307 * Made a function to actually count the number of fs blocks used by a file. 309 (fs/befs/inode.c) 319 (fs/befs/inode.c) 325 (fs/befs/inode.c) 329 (fs/befs/inode.c) 335 (fs/befs/super.c) (fs/befs/inode.c) 341 (fs/befs/super.c) 353 typedefs, and they are inlcuded in <linux/fs.h>, which has definitions [all …]
|
/fs/fat/ |
D | Kconfig | 14 M to at least one of "MSDOS fs support" or "VFAT fs support" in 36 tristate "MSDOS fs support" 51 partitions, you should use the VFAT file system (say Y to "VFAT fs 56 answer Y. This will only work if you said Y to "DOS FAT fs support" 61 tristate "VFAT (Windows-95) fs support" 70 works if you said Y to the "DOS FAT fs support" above. Please read
|
/fs/cifs/ |
D | Kconfig | 29 mounted by the cifs client to be displayed in /proc/fs/cifs/Stats 36 request timing to be displayed in /proc/fs/cifs/DebugData and also 38 value of /proc/fs/cifs/cifsFYI, see fs/cifs/README for more details). 65 /proc/fs/cifs (see fs/cifs/README for more detail) or via an 130 setting a value of 1 to the pseudo-file /proc/fs/cifs/Experimental 131 (which is disabled by default). See the file fs/cifs/README
|
/fs/notify/ |
D | Kconfig | 1 source "fs/notify/dnotify/Kconfig" 2 source "fs/notify/inotify/Kconfig"
|
/fs/proc/ |
D | base.c | 157 struct fs_struct *fs; in get_fs_struct() local 159 fs = task->fs; in get_fs_struct() 160 if(fs) in get_fs_struct() 161 atomic_inc(&fs->count); in get_fs_struct() 163 return fs; in get_fs_struct() 181 struct fs_struct *fs = NULL; in proc_cwd_link() local 185 fs = get_fs_struct(task); in proc_cwd_link() 188 if (fs) { in proc_cwd_link() 189 read_lock(&fs->lock); in proc_cwd_link() 190 *path = fs->pwd; in proc_cwd_link() [all …]
|
D | task_nommu.c | 52 if (current->fs && atomic_read(¤t->fs->count) > 1) in task_mem() 53 sbytes += kobjsize(current->fs); in task_mem() 55 bytes += kobjsize(current->fs); in task_mem()
|
D | inode-alloc.txt | 1 Current inode allocations in the proc-fs (hex-numbers):
|
/fs/autofs/ |
D | waitq.c | 51 mm_segment_t fs; in autofs_write() local 60 fs = get_fs(); in autofs_write() 69 set_fs(fs); in autofs_write()
|
/fs/affs/ |
D | Changes | 20 - The feature to automatically make the fs clean 27 this fs never claimed to be Posix conformant. 54 - enable international mode for dircache fs 145 restored when the fs is unmounted. (BH) 172 inode if the fs was not an OFS. This bug only shows 237 - Owner/Group defaults now to the fs user (i.e.
|
/fs/jffs2/ |
D | TODO | 2 - support asynchronous operation -- add a per-fs 'reserved_space' count, 6 do shared writable mmap, if we can have a fs hook for do_wp_page() to
|
D | Makefile | 10 jffs2-y += symlink.o build.o erase.o background.o fs.o writev.o
|
/fs/nfsd/ |
D | nfssvc.c | 416 fsp = copy_fs_struct(current->fs); in nfsd() 422 current->fs = fsp; in nfsd() 423 current->fs->umask = 0; in nfsd()
|
/fs/hpfs/ |
D | anode.c | 69 unsigned fs; in hpfs_add_sector_to_btree() local 122 fs = n < 0 ? 0 : btree->u.external[n].file_secno + btree->u.external[n].length; in hpfs_add_sector_to_btree() 158 btree->u.external[n].file_secno = fs; in hpfs_add_sector_to_btree() 180 btree->u.internal[n-1].file_secno = fs; in hpfs_add_sector_to_btree() 252 btree->u.internal[0].file_secno = fs; in hpfs_add_sector_to_btree()
|
/fs/ocfs2/ |
D | Kconfig | 45 in conjunction with the DLM in fs/dlm. If you are using a 56 This option allows some fs statistics to be captured. Enabling
|
/fs/autofs4/ |
D | waitq.c | 62 mm_segment_t fs; in autofs4_write() local 71 fs = get_fs(); in autofs4_write() 80 set_fs(fs); in autofs4_write()
|
/fs/reiserfs/ |
D | Kconfig | 42 bool "Stats in /proc/fs/reiserfs" 45 Create under /proc/fs/reiserfs a hierarchy of files, displaying
|
/fs/cramfs/ |
D | Kconfig | 13 <file:fs/cramfs/README> for further information.
|