Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 3e3f6b4e authored by Christoph Hellwig's avatar Christoph Hellwig Committed by Trond Myklebust
Browse files

pnfs/blocklayout: remove some debugging



The kbuild test robot complained that we got the printk format wrong.
Let's just kill these printks instead of fixing them as there is not
point after the initial tree algorithm debugging.

Reported-by: default avatarkbuild test robot <fengguang.wu@intel.com>
Signed-off-by: default avatarChristoph Hellwig <hch@lst.de>
Signed-off-by: default avatarTrond Myklebust <trond.myklebust@primarydata.com>
parent 8d11620e
Loading
Loading
Loading
Loading
+0 −8
Original line number Diff line number Diff line
@@ -370,9 +370,6 @@ ext_tree_split(struct rb_root *root, struct pnfs_block_extent *be,
	struct pnfs_block_extent *new;
	sector_t orig_len = be->be_length;

	dprintk("%s: need split for 0x%lx:0x%lx at 0x%lx\n",
		__func__, be->be_f_offset, ext_f_end(be), split);

	new = kzalloc(sizeof(*new), GFP_ATOMIC);
	if (!new)
		return -ENOMEM;
@@ -387,11 +384,6 @@ ext_tree_split(struct rb_root *root, struct pnfs_block_extent *be,
	new->be_tag = be->be_tag;
	new->be_device = nfs4_get_deviceid(be->be_device);

	dprintk("%s: got 0x%lx:0x%lx!\n",
		__func__, be->be_f_offset, ext_f_end(be));
	dprintk("%s: got 0x%lx:0x%lx!\n",
		__func__, new->be_f_offset, ext_f_end(new));

	__ext_tree_insert(root, new, false);
	return 0;
}