Home
last modified time | relevance | path

Searched refs:items (Results 1 – 20 of 20) sorted by relevance

/fs/ceph/
Dmetric.c36 s32 items = 0; in ceph_mdsc_send_metrics() local
62 items++; in ceph_mdsc_send_metrics()
75 items++; in ceph_mdsc_send_metrics()
88 items++; in ceph_mdsc_send_metrics()
101 items++; in ceph_mdsc_send_metrics()
112 items++; in ceph_mdsc_send_metrics()
124 items++; in ceph_mdsc_send_metrics()
134 items++; in ceph_mdsc_send_metrics()
144 items++; in ceph_mdsc_send_metrics()
154 items++; in ceph_mdsc_send_metrics()
[all …]
/fs/xfs/
Dxfs_icache.c1858 WRITE_ONCE(gc->items, 0); in xfs_inodegc_worker()
1980 unsigned int items) in xfs_inodegc_want_queue_work() argument
1984 if (items > mp->m_ino_geo.inodes_per_cluster) in xfs_inodegc_want_queue_work()
2025 unsigned int items, in xfs_inodegc_want_flush_work() argument
2034 if (items > XFS_INODEGC_MAX_BACKLOG) in xfs_inodegc_want_flush_work()
2051 int items; in xfs_inodegc_queue() local
2062 items = READ_ONCE(gc->items); in xfs_inodegc_queue()
2063 WRITE_ONCE(gc->items, items + 1); in xfs_inodegc_queue()
2075 if (xfs_inodegc_want_queue_work(ip, items)) in xfs_inodegc_queue()
2083 if (xfs_inodegc_want_flush_work(ip, items, shrinker_hits)) { in xfs_inodegc_queue()
[all …]
Dxfs_refcount_item.c345 struct list_head *items, in xfs_refcount_update_create_intent() argument
357 list_sort(mp, items, xfs_refcount_update_diff_items); in xfs_refcount_update_create_intent()
358 list_for_each_entry(refc, items, ri_list) in xfs_refcount_update_create_intent()
Dxfs_bmap_item.c345 struct list_head *items, in xfs_bmap_update_create_intent() argument
357 list_sort(mp, items, xfs_bmap_update_diff_items); in xfs_bmap_update_create_intent()
358 list_for_each_entry(bmap, items, bi_list) in xfs_bmap_update_create_intent()
Dxfs_rmap_item.c372 struct list_head *items, in xfs_rmap_update_create_intent() argument
384 list_sort(mp, items, xfs_rmap_update_diff_items); in xfs_rmap_update_create_intent()
385 list_for_each_entry(rmap, items, ri_list) in xfs_rmap_update_create_intent()
Dxfs_extfree_item.c430 struct list_head *items, in xfs_extent_free_create_intent() argument
442 list_sort(mp, items, xfs_extent_free_diff_items); in xfs_extent_free_create_intent()
443 list_for_each_entry(free, items, xefi_list) in xfs_extent_free_create_intent()
Dxfs_attr_item.c385 struct list_head *items, in xfs_attr_create_intent() argument
400 attr = list_first_entry_or_null(items, struct xfs_attr_intent, in xfs_attr_create_intent()
Dxfs_mount.h67 unsigned int items; member
Dxfs_super.c1091 gc->items = 0; in xfs_inodegc_init_percpu()
/fs/btrfs/
Ddelayed-inode.h33 atomic_t items; /* for delayed items */ member
104 atomic_set(&delayed_root->items, 0); in btrfs_init_delayed_root()
Ddelayed-inode.c394 atomic_inc(&delayed_node->root->fs_info->delayed_root->items); in __btrfs_add_delayed_item()
403 if ((atomic_dec_return(&delayed_root->items) < in finish_one_item()
1325 if (atomic_read(&delayed_root->items) < in btrfs_async_run_delayed_root()
1396 if (atomic_read(&delayed_root->items) < BTRFS_DELAYED_BACKGROUND) in could_end_wait()
1406 if ((atomic_read(&delayed_root->items) < BTRFS_DELAYED_BACKGROUND) || in btrfs_balance_delayed_items()
1410 if (atomic_read(&delayed_root->items) >= BTRFS_DELAYED_WRITEBACK) { in btrfs_balance_delayed_items()
1939 atomic_inc(&root->fs_info->delayed_root->items); in btrfs_delayed_update_inode()
1983 atomic_inc(&fs_info->delayed_root->items); in btrfs_delayed_delete_inode_ref()
Droot-tree.c497 struct btrfs_block_rsv *rsv, int items, in btrfs_subvolume_reserve_metadata() argument
516 num_bytes = btrfs_calc_insert_metadata_size(fs_info, items); in btrfs_subvolume_reserve_metadata()
Dspace-info.c577 u64 items; in shrink_delalloc() local
588 items = U64_MAX; in shrink_delalloc()
603 items = calc_reclaim_items_nr(fs_info, to_reclaim) * 2; in shrink_delalloc()
665 btrfs_wait_ordered_roots(fs_info, items, 0, (u64)-1); in shrink_delalloc()
Dcheck-integrity.c928 (uintptr_t)(leafhdr->items + sf->i) - in btrfsic_process_metablock()
959 offsetof(struct btrfs_leaf, items); in btrfsic_process_metablock()
1323 file_extent_item_offset = offsetof(struct btrfs_leaf, items) + in btrfsic_handle_extent_data()
Dctree.h375 struct btrfs_item items[]; member
1565 #define BTRFS_LEAF_DATA_OFFSET offsetof(struct btrfs_leaf, items)
2161 return offsetof(struct btrfs_leaf, items) + in btrfs_item_nr_offset()
Dctree.c807 p = offsetof(struct btrfs_leaf, items); in generic_bin_search()
/fs/
Dbinfmt_elf.c151 #define STACK_ADD(sp, items) ((elf_addr_t __user *)(sp) + (items)) argument
152 #define STACK_ROUND(sp, items) \ argument
153 ((15 + (unsigned long) ((sp) + (items))) &~ 15UL)
158 #define STACK_ADD(sp, items) ((elf_addr_t __user *)(sp) - (items)) argument
159 #define STACK_ROUND(sp, items) \ argument
160 (((unsigned long) (sp - items)) &~ 15UL)
189 int items; in create_elf_tables() local
302 items = (argc + 1) + (envc + 1) + 1; in create_elf_tables()
303 bprm->p = STACK_ROUND(sp, items); in create_elf_tables()
307 sp = (elf_addr_t __user *)bprm->p - items - ei_index; in create_elf_tables()
/fs/xfs/libxfs/
Dxfs_defer.h50 struct list_head *items, unsigned int count, bool sort);
/fs/cramfs/
DREADME5 a bit looser, e.g. it doesn't care if the <file_data> items are
/fs/reiserfs/
DREADME102 align files), and he invented and implemented indirect items and