Add fix-newlines branch
This commit is contained in:
parent
34dc7c2f25
commit
0661fb127a
|
@ -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>
|
||||
|
||||
---
|
|
@ -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);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue