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 <tv@inktank.com>
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;
}