1
0
mirror of git://sourceware.org/git/lvm2.git synced 2024-12-21 13:34:40 +03:00

bcache: change log level for prefetch message

The "new new blocks" message was printed as an error
but it's not an error condition.
This commit is contained in:
David Teigland 2019-09-03 12:02:09 -05:00
parent 25b58310e3
commit fcbffbdbc0

View File

@ -957,7 +957,7 @@ static struct block *_new_block(struct bcache *cache, int fd, block_address i, b
_writeback(cache, 16); // FIXME: magic number
_wait_io(cache);
} else {
log_error("bcache no new blocks for fd %d index %u",
log_debug("bcache no new blocks for fd %d index %u",
fd, (uint32_t) i);
return NULL;
}