Home
last modified time | relevance | path

Searched refs:split (Results 1 – 16 of 16) sorted by relevance

/fs/jfs/
Djfs_xtree.c108 uint split; member
121 struct xtsplit * split, struct btstack * btstack);
123 static int xtSplitPage(tid_t tid, struct inode *ip, struct xtsplit * split,
127 struct xtsplit * split, struct metapage ** rmpp);
547 struct xtsplit split; /* split information */ in xtInsert() local
609 split.mp = mp; in xtInsert()
610 split.index = index; in xtInsert()
611 split.flag = xflag; in xtInsert()
612 split.off = xoff; in xtInsert()
613 split.len = xlen; in xtInsert()
[all …]
Djfs_dtree.c153 struct dtsplit * split, struct btstack * btstack);
155 static int dtSplitPage(tid_t tid, struct inode *ip, struct dtsplit * split,
159 struct dtsplit * split, struct btstack * btstack);
162 struct dtsplit * split, struct metapage ** rmpp);
829 struct dtsplit split; /* split information */ in dtInsert() local
870 split.mp = mp; in dtInsert()
871 split.index = index; in dtInsert()
872 split.nslot = n; in dtInsert()
873 split.key = name; in dtInsert()
874 split.data = &data; in dtInsert()
[all …]
/fs/btrfs/
Dfile.c436 struct extent_map *split = NULL; in btrfs_drop_extent_cache() local
451 if (!split) in btrfs_drop_extent_cache()
452 split = alloc_extent_map(); in btrfs_drop_extent_cache()
455 BUG_ON(!split || !split2); /* -ENOMEM */ in btrfs_drop_extent_cache()
483 split->start = em->start; in btrfs_drop_extent_cache()
484 split->len = start - em->start; in btrfs_drop_extent_cache()
485 split->orig_start = em->orig_start; in btrfs_drop_extent_cache()
486 split->block_start = em->block_start; in btrfs_drop_extent_cache()
489 split->block_len = em->block_len; in btrfs_drop_extent_cache()
491 split->block_len = split->len; in btrfs_drop_extent_cache()
[all …]
Dctree.c2226 struct extent_buffer *split; in split_node() local
2253 split = btrfs_alloc_free_block(trans, root, root->nodesize, 0, in split_node()
2256 if (IS_ERR(split)) in split_node()
2257 return PTR_ERR(split); in split_node()
2261 memset_extent_buffer(split, 0, 0, sizeof(struct btrfs_header)); in split_node()
2262 btrfs_set_header_level(split, btrfs_header_level(c)); in split_node()
2263 btrfs_set_header_bytenr(split, split->start); in split_node()
2264 btrfs_set_header_generation(split, trans->transid); in split_node()
2265 btrfs_set_header_backref_rev(split, BTRFS_MIXED_BACKREF_REV); in split_node()
2266 btrfs_set_header_owner(split, root->root_key.objectid); in split_node()
[all …]
Dextent_io.h93 struct extent_state *orig, u64 split);
Dextent_io.c364 u64 split) in split_cb() argument
367 tree->ops->split_extent_hook(tree->mapping->host, orig, split); in split_cb()
385 struct extent_state *prealloc, u64 split) in split_state() argument
389 split_cb(tree, orig, split); in split_state()
392 prealloc->end = split - 1; in split_state()
394 orig->start = split; in split_state()
Dinode.c1396 struct extent_state *orig, u64 split) in btrfs_split_extent_hook() argument
/fs/ceph/
Dsnap.c775 u64 split; in ceph_handle_snap() local
792 split = le64_to_cpu(h->split); /* non-zero if we are splitting an in ceph_handle_snap()
800 ceph_snap_op_name(op), split, trace_len); in ceph_handle_snap()
828 realm = ceph_lookup_snap_realm(mdsc, split); in ceph_handle_snap()
830 realm = ceph_create_snap_realm(mdsc, split); in ceph_handle_snap()
/fs/ext3/
Dnamei.c1146 unsigned split, move, size; in do_split() local
1186 split = count - move; in do_split()
1187 hash2 = map[split].hash; in do_split()
1188 continued = hash2 == map[split - 1].hash; in do_split()
1190 dx_get_block(frame->at), hash2, split, count-split)); in do_split()
1193 de2 = dx_move_dirents(data1, data2, map + split, count - split); in do_split()
/fs/ext4/
Dnamei.c1163 unsigned split, move, size; in do_split() local
1203 split = count - move; in do_split()
1204 hash2 = map[split].hash; in do_split()
1205 continued = hash2 == map[split - 1].hash; in do_split()
1208 hash2, split, count-split)); in do_split()
1211 de2 = dx_move_dirents(data1, data2, map + split, count - split, blocksize); in do_split()
Dextents.c68 ext4_lblk_t split,
2838 ext4_lblk_t split, in ext4_split_extent_at() argument
2853 "block %llu\n", inode->i_ino, (unsigned long long)split); in ext4_split_extent_at()
2861 newblock = split - ee_block + ext4_ext_pblock(ex); in ext4_split_extent_at()
2863 BUG_ON(split < ee_block || split >= (ee_block + ee_len)); in ext4_split_extent_at()
2869 if (split == ee_block) { in ext4_split_extent_at()
2889 ex->ee_len = cpu_to_le16(split - ee_block); in ext4_split_extent_at()
2902 ex2->ee_block = cpu_to_le32(split); in ext4_split_extent_at()
2903 ex2->ee_len = cpu_to_le16(ee_len - (split - ee_block)); in ext4_split_extent_at()
/fs/xfs/
Dxfs_log.c1424 int split = 0; /* split write into two regions */ in xlog_sync() local
1472 split = count - (BBTOB(log->l_logBBsize - XFS_BUF_ADDR(bp))); in xlog_sync()
1520 if (split) { in xlog_sync()
1524 (char *)&iclog->ic_header + count, split); in xlog_sync()
1538 for (i = 0; i < split; i += BBSIZE) { in xlog_sync()
Dxfs_btree.c2160 XFS_BTREE_STATS_INC(cur, split); in xfs_btree_split()
/fs/ocfs2/
Dalloc.c2360 enum ocfs2_split_type split, in ocfs2_rotate_tree_right() argument
2437 if (split == SPLIT_NONE && in ocfs2_rotate_tree_right()
2480 if (split != SPLIT_NONE && in ocfs2_rotate_tree_right()
3791 enum ocfs2_split_type split, in ocfs2_subtract_from_rec() argument
3800 if (split == SPLIT_LEFT) { in ocfs2_subtract_from_rec()
4041 enum ocfs2_split_type split) in ocfs2_split_record() argument
4071 if (split == SPLIT_LEFT) { in ocfs2_split_record()
4111 split, rec, split_rec); in ocfs2_split_record()
Drefcounttree.c2200 struct ocfs2_refcount_rec split = *rec; in ocfs2_decrease_refcount_rec() local
2201 split.r_cpos = cpu_to_le64(cpos); in ocfs2_decrease_refcount_rec()
2202 split.r_clusters = cpu_to_le32(len); in ocfs2_decrease_refcount_rec()
2204 le32_add_cpu(&split.r_refcount, -1); in ocfs2_decrease_refcount_rec()
2208 &split, index, 1, in ocfs2_decrease_refcount_rec()
/fs/cifs/
DCHANGES381 transact response for an SMB request and search entry split across two frames.