Add fix-newlines branch

This commit is contained in:
Brian Behlendorf 2008-11-20 12:52:03 -08:00
parent 34dc7c2f25
commit 0661fb127a
3 changed files with 11 additions and 2 deletions

1
.topdeps Normal file
View File

@ -0,0 +1 @@
master

8
.topmsg Normal file
View File

@ -0,0 +1,8 @@
From: Brian Behlendorf <behlendorf1@llnl.gov>
Subject: [PATCH] fix missing newlines
Add missing \n's to dprintf()s
Signed-off-by: Brian Behlendorf <behlendorf1@llnl.gov>
---

View File

@ -1496,7 +1496,7 @@ arc_evict(arc_state_t *state, spa_t *spa, int64_t bytes, boolean_t recycle,
mutex_exit(&state->arcs_mtx);
if (bytes_evicted < bytes)
dprintf("only evicted %lld bytes from %x",
dprintf("only evicted %lld bytes from %x\n",
(longlong_t)bytes_evicted, state);
if (skipped)
@ -1596,7 +1596,7 @@ top:
}
if (bytes_deleted < bytes)
dprintf("only deleted %lld bytes from %p",
dprintf("only deleted %lld bytes from %p\n",
(longlong_t)bytes_deleted, state);
}