scoutfs: remove excessive block locking tracing

I accidentally left some lock tracing in the btree locking commit that
is very noisy and not particularly useful.  Let's remove it.

Signed-off-by: Zach Brown <zab@versity.com>
This commit is contained in:
Zach Brown
2016-09-28 13:44:31 -07:00
parent f7f7a2e53f
commit 9d08b34791

View File

@@ -511,8 +511,6 @@ void scoutfs_block_lock(struct buffer_head *bh, bool write, int subclass)
{
struct block_bh_private *bhp = bh->b_private;
trace_printk("lock write %d bhp %p\n", write, bhp);
if (bhp) {
if (write)
down_write_nested(&bhp->rwsem, subclass);
@@ -525,8 +523,6 @@ void scoutfs_block_unlock(struct buffer_head *bh, bool write)
{
struct block_bh_private *bhp = bh->b_private;
trace_printk("unlock write %d bhp %p\n", write, bhp);
if (bhp) {
if (write)
up_write(&bhp->rwsem);