Lines Matching defs:new_ptbl
1470 * @new_ptbl: new part_tbl to install
1472 * Replace disk->part_tbl with @new_ptbl in RCU-safe way. The
1479 struct disk_part_tbl *new_ptbl)
1484 rcu_assign_pointer(disk->part_tbl, new_ptbl);
1511 struct disk_part_tbl *new_ptbl;
1530 new_ptbl = kzalloc_node(struct_size(new_ptbl, part, target), GFP_KERNEL,
1532 if (!new_ptbl)
1535 new_ptbl->len = target;
1538 rcu_assign_pointer(new_ptbl->part[i], old_ptbl->part[i]);
1540 disk_replace_part_tbl(disk, new_ptbl);