/fs/ubifs/ |
D | tnc_commit.c | 416 int lnum, offs, len, next_len, buf_len, buf_offs, used, avail; in layout_in_empty_space() local 428 used = 0; in layout_in_empty_space() 449 used = 0; in layout_in_empty_space() 453 offs = buf_offs + used; in layout_in_empty_space() 494 wlen = used + len; in layout_in_empty_space() 495 used += ALIGN(len, 8); in layout_in_empty_space() 499 buf_offs + used + next_len <= c->leb_size && in layout_in_empty_space() 504 buf_offs + used + next_len <= c->leb_size) in layout_in_empty_space() 514 c->leb_size - buf_offs, blen - used, in layout_in_empty_space() 520 used -= blen; in layout_in_empty_space() [all …]
|
D | io.c | 499 if (!wbuf->used || wbuf->lnum == -1) in ubifs_wbuf_sync_nolock() 504 wbuf->lnum, wbuf->offs, wbuf->used, dbg_jhead(wbuf->jhead)); in ubifs_wbuf_sync_nolock() 521 sync_len = ALIGN(wbuf->used, c->min_io_size); in ubifs_wbuf_sync_nolock() 522 dirt = sync_len - wbuf->used; in ubifs_wbuf_sync_nolock() 524 ubifs_pad(c, wbuf->buf + wbuf->used, dirt); in ubifs_wbuf_sync_nolock() 548 wbuf->used = 0; in ubifs_wbuf_sync_nolock() 577 ubifs_assert(wbuf->used == 0); in ubifs_wbuf_seek_nolock() 589 wbuf->used = 0; in ubifs_wbuf_seek_nolock() 682 dbg_jhead(wbuf->jhead), wbuf->lnum, wbuf->offs + wbuf->used); in ubifs_wbuf_write_nolock() 696 if (c->leb_size - wbuf->offs - wbuf->used < aligned_len) { in ubifs_wbuf_write_nolock() [all …]
|
D | replay.c | 358 int deletion, int *used, loff_t old_size, in insert_node() argument 373 *used += ALIGN(len, 8); in insert_node() 406 unsigned long long sqnum, int deletion, int *used) in insert_dent() argument 426 *used += ALIGN(len, 8); in insert_dent() 544 int err = 0, used = 0, lnum = b->bud->lnum, offs = b->bud->start; in replay_bud() local 609 &used, 0, new_size); in replay_bud() 621 &used, 0, new_size); in replay_bud() 636 !le64_to_cpu(dent->inum), &used); in replay_bud() 660 &key, snod->sqnum, 1, &used, in replay_bud() 675 ubifs_assert(sleb->endpt - offs >= used); in replay_bud() [all …]
|
D | gc.c | 88 wbuf->lnum, wbuf->offs + wbuf->used, gc_lnum, in switch_gc_head() 89 c->leb_size - wbuf->offs - wbuf->used); in switch_gc_head() 324 int err, new_lnum = wbuf->lnum, new_offs = wbuf->offs + wbuf->used; in move_node() 376 avail = c->leb_size - wbuf->offs - wbuf->used; in move_nodes() 391 avail = c->leb_size - wbuf->offs - wbuf->used; in move_nodes() 476 ubifs_assert(c->gc_lnum != -1 || wbuf->offs + wbuf->used == 0 || in ubifs_garbage_collect_leb() 668 ubifs_assert(!wbuf->used); in ubifs_garbage_collect() 720 space_before = c->leb_size - wbuf->offs - wbuf->used; in ubifs_garbage_collect() 760 space_after = c->leb_size - wbuf->offs - wbuf->used; in ubifs_garbage_collect()
|
/fs/jfs/ |
D | jfs_types.h | 153 #define setDASDUSED(dasdp, used)\ argument 155 (dasdp)->used_hi = ((u64)used) >> 32;\ 156 (dasdp)->used_lo = __cpu_to_le32(used);\
|
/fs/affs/ |
D | Kconfig | 5 The Fast File System (FFS) is the common file system used on hard 10 controller used in an Amiga and the standard floppy controller in 14 With this driver you can also mount disk files used by Bernd
|
/fs/jffs2/ |
D | debug.c | 163 uint32_t free = 0, dirty = 0, used = 0, wasted = 0, in __jffs2_dbg_superblock_counts() local 172 used += c->gcblock->used_size; in __jffs2_dbg_superblock_counts() 180 used += c->nextblock->used_size; in __jffs2_dbg_superblock_counts() 188 used += jeb->used_size; in __jffs2_dbg_superblock_counts() 196 used += jeb->used_size; in __jffs2_dbg_superblock_counts() 204 used += jeb->used_size; in __jffs2_dbg_superblock_counts() 212 used += jeb->used_size; in __jffs2_dbg_superblock_counts() 220 used += jeb->used_size; in __jffs2_dbg_superblock_counts() 228 used += jeb->used_size; in __jffs2_dbg_superblock_counts() 236 used += jeb->used_size; in __jffs2_dbg_superblock_counts() [all …]
|
D | README.Locking | 13 The alloc_sem is a per-filesystem mutex, used primarily to ensure 33 the alloc_sem is also used to protect the wbuf-related members of the 48 The reason that the i_sem itself isn't used for this purpose is to 74 This is used to serialise access to the eraseblock lists, to the 93 The erase_completion_lock is also used to protect the c->gc_task 109 if we need to deal with wrapping after 4 milliard inode numbers are used. 124 This mutex is only used by the erase code which frees obsolete node 142 write-behind buffer ('wbuf') used for flash chips where we must write
|
/fs/ |
D | coredump.c | 57 int used, size; member 83 free = cn->size - cn->used; in cn_vprintf() 86 need = vsnprintf(cn->corename + cn->used, free, fmt, arg_copy); in cn_vprintf() 90 cn->used += need; in cn_vprintf() 114 int cur = cn->used; in cn_esc_printf() 122 for (; cur < cn->used; ++cur) { in cn_esc_printf() 172 cn->used = 0; in format_corename()
|
D | xattr.c | 941 size_t used = 0; in simple_xattr_list() local 952 used += len; in simple_xattr_list() 954 if (size < used) { in simple_xattr_list() 955 used = -ERANGE; in simple_xattr_list() 964 return used; in simple_xattr_list()
|
/fs/squashfs/ |
D | Kconfig | 16 archival use (i.e. in cases where a .tar.gz file may be used), and in 41 Traditionally Squashfs has used single-threaded decompression. 88 ZLIB compression is the standard compression used by Squashfs 105 LZ4 is not the standard compression used in Squashfs and so most 120 LZO is not the standard compression used in Squashfs and so most 135 XZ is not the standard compression used in Squashfs and so most
|
/fs/notify/fanotify/ |
D | Kconfig | 21 decisions concerning filesystem events. This is used by some fanotify 23 use those files. This is used by some anti-malware vendors and by some
|
/fs/ceph/ |
D | caps.c | 288 int *total, int *avail, int *used, int *reserved, in ceph_reservation_status() argument 297 if (used) in ceph_reservation_status() 298 *used = mdsc->caps_use_count; in ceph_reservation_status() 832 int used = 0; in __ceph_caps_used() local 834 used |= CEPH_CAP_PIN; in __ceph_caps_used() 836 used |= CEPH_CAP_FILE_RD; in __ceph_caps_used() 838 used |= CEPH_CAP_FILE_CACHE; in __ceph_caps_used() 840 used |= CEPH_CAP_FILE_WR; in __ceph_caps_used() 842 used |= CEPH_CAP_FILE_BUFFER; in __ceph_caps_used() 843 return used; in __ceph_caps_used() [all …]
|
D | debugfs.c | 132 int total, avail, used, reserved, min; in caps_show() local 134 ceph_reservation_status(fsc, &total, &avail, &used, &reserved, &min); in caps_show() 140 total, avail, used, reserved, min); in caps_show()
|
D | snap.c | 442 int used, dirty; in ceph_queue_cap_snap() local 451 used = __ceph_caps_used(ci); in ceph_queue_cap_snap() 459 if (used & CEPH_CAP_FILE_WR) in ceph_queue_cap_snap() 518 if (used & CEPH_CAP_FILE_WR) { in ceph_queue_cap_snap()
|
/fs/nls/ |
D | Kconfig | 24 The default NLS used when mounting file system. Note, that this is 25 the NLS used by your console, not the NLS used by a specific file 48 say Y here if you want to include the DOS codepage that is used in 60 say Y here if you want to include the DOS codepage that is used for 72 say Y here if you want to include the DOS codepage that is used 85 say Y here if you want to include the DOS codepage that is used for 101 say Y here if you want to include the Latin 2 codepage used by DOS 432 Latin 1 (ISO 8859-1) that removes a handful of rarely used 464 say Y here if you want to include the Mac codepage that is used for 479 say Y here if you want to include the Mac codepage that is used for [all …]
|
/fs/sysfs/ |
D | Kconfig | 12 which driver each is bound to. sysfs can also be used to tune devices 19 sysfs is currently used by the block subsystem to mount the root
|
/fs/jbd/ |
D | Kconfig | 5 currently used by the ext3 file system, but it could also be 6 used to add journal support to other file systems or block
|
/fs/jbd2/ |
D | Kconfig | 8 both 32-bit and 64-bit block numbers. It is currently used by 9 the ext4 and OCFS2 filesystems, but it could also be used to add
|
/fs/cifs/ |
D | Kconfig | 66 than the mechanisms used in the older LANMAN version of the 77 used automatically. At runtime LANMAN mounts are disabled but 107 (used by some filesystems to store ACLs) is not supported at 156 Distributed File System (DFS) support is used to access shares
|
/fs/logfs/ |
D | Kconfig | 15 not be used for other than testing purposes.
|
/fs/proc/ |
D | Kconfig | 12 information about what the different IRQs are used for at the moment 14 that are used by the attached devices to gain the CPU's attention --
|
/fs/omfs/ |
D | Kconfig | 6 This is the proprietary file system used by the Rio Karma music
|
/fs/qnx4/ |
D | Kconfig | 5 This is the file system used by the real-time operating systems
|
/fs/udf/ |
D | Kconfig | 5 This is the new file system used on some CD-ROMs and DVDs. Say Y if
|