/fs/befs/ |
D | endian.h | 73 befs_block_run run; in fsrun_to_cpu() local 76 run.allocation_group = le32_to_cpu((__force __le32)n.allocation_group); in fsrun_to_cpu() 77 run.start = le16_to_cpu((__force __le16)n.start); in fsrun_to_cpu() 78 run.len = le16_to_cpu((__force __le16)n.len); in fsrun_to_cpu() 80 run.allocation_group = be32_to_cpu((__force __be32)n.allocation_group); in fsrun_to_cpu() 81 run.start = be16_to_cpu((__force __be16)n.start); in fsrun_to_cpu() 82 run.len = be16_to_cpu((__force __be16)n.len); in fsrun_to_cpu() 84 return run; in fsrun_to_cpu() 90 befs_disk_block_run run; in cpu_to_fsrun() local 93 run.allocation_group = cpu_to_le32(n.allocation_group); in cpu_to_fsrun() [all …]
|
D | datastream.c | 25 befs_blocknr_t blockno, befs_block_run * run); 30 befs_block_run * run); 35 befs_block_run * run); 52 befs_block_run run; in befs_read_datastream() local 60 if (befs_fblock2brun(sb, ds, block, &run) != BEFS_OK) { in befs_read_datastream() 66 bh = befs_bread_iaddr(sb, run); in befs_read_datastream() 92 befs_blocknr_t fblock, befs_block_run * run) in befs_fblock2brun() argument 98 err = befs_find_brun_direct(sb, data, fblock, run); in befs_fblock2brun() 101 err = befs_find_brun_indirect(sb, data, fblock, run); in befs_fblock2brun() 104 err = befs_find_brun_dblindirect(sb, data, fblock, run); in befs_fblock2brun() [all …]
|
D | befs.h | 149 befs_brun_size(struct super_block *sb, befs_block_run run) in befs_brun_size() argument 151 return BEFS_SB(sb)->block_size * run.len; in befs_brun_size()
|
D | datastream.h | 11 befs_blocknr_t fblock, befs_block_run * run);
|
D | debug.c | 234 befs_dump_run(const struct super_block *sb, befs_disk_block_run run) 238 befs_block_run n = fsrun_to_cpu(sb, run);
|
D | linuxvfs.c | 124 befs_block_run run = BAD_IADDR; in befs_get_block() local 144 res = befs_fblock2brun(sb, ds, block, &run); in befs_get_block() 152 disk_off = (ulong) iaddr2blockno(sb, &run); in befs_get_block()
|
/fs/jbd2/ |
D | commit.c | 443 stats.run.rs_wait = commit_transaction->t_max_wait; in jbd2_journal_commit_transaction() 444 stats.run.rs_request_delay = 0; in jbd2_journal_commit_transaction() 445 stats.run.rs_locked = jiffies; in jbd2_journal_commit_transaction() 447 stats.run.rs_request_delay = in jbd2_journal_commit_transaction() 449 stats.run.rs_locked); in jbd2_journal_commit_transaction() 450 stats.run.rs_running = jbd2_time_diff(commit_transaction->t_start, in jbd2_journal_commit_transaction() 451 stats.run.rs_locked); in jbd2_journal_commit_transaction() 536 stats.run.rs_flushing = jiffies; in jbd2_journal_commit_transaction() 537 stats.run.rs_locked = jbd2_time_diff(stats.run.rs_locked, in jbd2_journal_commit_transaction() 538 stats.run.rs_flushing); in jbd2_journal_commit_transaction() [all …]
|
D | journal.c | 961 jiffies_to_msecs(s->stats->run.rs_wait / s->stats->ts_tid)); in jbd2_seq_info_show() 964 jiffies_to_msecs(s->stats->run.rs_request_delay / in jbd2_seq_info_show() 967 jiffies_to_msecs(s->stats->run.rs_running / s->stats->ts_tid)); in jbd2_seq_info_show() 969 jiffies_to_msecs(s->stats->run.rs_locked / s->stats->ts_tid)); in jbd2_seq_info_show() 971 jiffies_to_msecs(s->stats->run.rs_flushing / s->stats->ts_tid)); in jbd2_seq_info_show() 973 jiffies_to_msecs(s->stats->run.rs_logging / s->stats->ts_tid)); in jbd2_seq_info_show() 977 s->stats->run.rs_handle_count / s->stats->ts_tid); in jbd2_seq_info_show() 979 s->stats->run.rs_blocks / s->stats->ts_tid); in jbd2_seq_info_show() 981 s->stats->run.rs_blocks_logged / s->stats->ts_tid); in jbd2_seq_info_show()
|
/fs/omfs/ |
D | bitmap.c | 138 int i, run, bit; in omfs_allocate_range() local 150 run = count_run(&sbi->s_imap[i], bits_per_entry, in omfs_allocate_range() 153 if (run >= min_request) in omfs_allocate_range() 155 bit += run; in omfs_allocate_range() 163 *return_size = run; in omfs_allocate_range() 164 ret = set_run(sb, i, bits_per_entry, bit, run, 1); in omfs_allocate_range()
|
/fs/ |
D | Kconfig.binfmt | 8 systems. Saying Y here will enable your kernel to run ELF binaries 12 to run executables from different architectures or operating systems 13 however) and makes building run-time libraries very easy. Many new 21 here, you still can't run any ELF binaries (they just crash), then 47 It is also possible to run FDPIC ELF binaries on MMU linux also. 79 gets loaded, you cannot run scripts. Thus, if you want to load this 118 who need to run binaries from that era. 164 programs that need an interpreter to run like Java, Python, .NET or 165 Emacs-Lisp. It's also useful if you often run DOS executables under 191 need debugging or only ever run flawless code.
|
/fs/btrfs/ |
D | Kconfig | 54 during the run of a regression test, say N 57 bool "Btrfs will run sanity tests upon loading" 60 This will run some basic sanity tests on the free space cache 70 Enable run-time debugging support for the btrfs filesystem. This may
|
/fs/sysv/ |
D | Kconfig | 12 to run these binaries, you will want to install linux-abi which is 13 a set of kernel modules that lets you run SCO, Xenix, Wyse,
|
/fs/ocfs2/ |
D | Kconfig | 37 run-time selectable. 48 It is safe to say Y, as the clustering method is run-time
|
/fs/ext3/ |
D | Kconfig | 10 to run e2fsck (file system checker) on your file systems after a 18 file system has been cleanly unmounted, or e2fsck is run on the file
|
/fs/cifs/ |
D | TODO | 119 2) Modify file portion of ltp so it can run against a mounted network 120 share and run it against cifs vfs in automated fashion.
|
D | README | 93 Note that when the mount.cifs utility is run suid (allowing user mounts),
|
/fs/quota/ |
D | Kconfig | 12 quotas for which you don't need to run quotacheck(8) after an unclean
|
/fs/ext4/ |
D | Kconfig | 89 Enables run-time debugging support for the ext4 filesystem.
|
/fs/ntfs/ |
D | Kconfig | 72 This is currently useful with TopologiLinux. TopologiLinux is run
|
/fs/gfs2/ |
D | dir.c | 1238 int run = 0; in do_filldir_main() local 1261 if (*copied && !run) in do_filldir_main() 1263 run = 1; in do_filldir_main() 1265 run = 0; in do_filldir_main()
|
/fs/affs/ |
D | Changes | 124 systems, since you can't run programs on them.
|
/fs/reiserfs/ |
D | README | 149 the endian safe patches which allow ReiserFS to run on any platform
|