From 62db60bede8b187e25acb715f6616d2ce7cfc97f Mon Sep 17 00:00:00 2001 From: Tommi Virtanen Date: Thu, 17 May 2012 09:54:02 -0700 Subject: [PATCH] FileJournal: Clarify log message on journal too small. The OSDs tolerate a full journal, it will just result in a latency spike. Make the error message say operation will continue, just slower. Signed-off-by: Tommi Virtanen --- src/os/FileJournal.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/os/FileJournal.cc b/src/os/FileJournal.cc index f6b4ec1d8ff3..0cbb9e1e6c93 100644 --- a/src/os/FileJournal.cc +++ b/src/os/FileJournal.cc @@ -724,7 +724,7 @@ int FileJournal::check_for_full(uint64_t seq, off64_t pos, off64_t size) off64_t max = header.max_size - get_top(); if (size > max) - dout(0) << "JOURNAL TOO SMALL: item " << size << " > journal " << max << " (usable)" << dendl; + dout(0) << "JOURNAL TOO SMALL: continuing, but slow: item " << size << " > journal " << max << " (usable)" << dendl; return -ENOSPC; } -- 2.47.3