Searched refs:new_subvol (Results 1 – 3 of 3) sorted by relevance
/linux-6.12.1/fs/bcachefs/ |
D | subvolume.c | 544 struct bkey_i_subvolume *new_subvol = NULL; in bch2_subvolume_create() local 588 new_subvol = bch2_bkey_alloc(trans, &dst_iter, 0, subvolume); in bch2_subvolume_create() 589 ret = PTR_ERR_OR_ZERO(new_subvol); in bch2_subvolume_create() 593 new_subvol->v.flags = 0; in bch2_subvolume_create() 594 new_subvol->v.snapshot = cpu_to_le32(new_nodes[0]); in bch2_subvolume_create() 595 new_subvol->v.inode = cpu_to_le64(inode); in bch2_subvolume_create() 596 new_subvol->v.creation_parent = cpu_to_le32(src_subvolid); in bch2_subvolume_create() 597 new_subvol->v.fs_path_parent = cpu_to_le32(parent_subvolid); in bch2_subvolume_create() 598 new_subvol->v.otime.lo = cpu_to_le64(bch2_current_time(c)); in bch2_subvolume_create() 599 new_subvol->v.otime.hi = 0; in bch2_subvolume_create() [all …]
|
D | fs-common.c | 108 u32 new_subvol, dir_snapshot; in bch2_create_trans() local 113 &new_subvol, &snapshot, in bch2_create_trans() 119 new_inode->bi_subvol = new_subvol; in bch2_create_trans() 120 new_inum.subvol = new_subvol; in bch2_create_trans() 121 dir_target = new_subvol; in bch2_create_trans()
|
D | fsck.c | 562 struct bkey_i_subvolume *new_subvol = bch2_trans_kmalloc(trans, sizeof(*new_subvol)); in reconstruct_subvol() local 563 int ret = PTR_ERR_OR_ZERO(new_subvol); in reconstruct_subvol() 567 bkey_subvolume_init(&new_subvol->k_i); in reconstruct_subvol() 568 new_subvol->k.p.offset = subvolid; in reconstruct_subvol() 569 new_subvol->v.snapshot = cpu_to_le32(snapshotid); in reconstruct_subvol() 570 new_subvol->v.inode = cpu_to_le64(inum); in reconstruct_subvol() 571 ret = bch2_btree_insert_trans(trans, BTREE_ID_subvolumes, &new_subvol->k_i, 0); in reconstruct_subvol()
|