]> git-server-git.apps.pok.os.sepia.ceph.com Git - ceph.git/commitdiff
rbd-nbd: lower down the log level when return -EINVAL in aio_callback.
authorPan Liu <wanjun.lp@alibaba-inc.com>
Tue, 29 Aug 2017 15:30:15 +0000 (23:30 +0800)
committerPan Liu <wanjun.lp@alibaba-inc.com>
Tue, 29 Aug 2017 15:30:15 +0000 (23:30 +0800)
Signed-off-by: Pan Liu <wanjun.lp@alibaba-inc.com>
src/tools/rbd_nbd/rbd-nbd.cc

index aaf84972cc49a6b4aaab8940de0ea1ff186c4715..6d432f86eb5cf3bc38ff430e8b6b30b24f4a2bdb 100644 (file)
@@ -233,7 +233,7 @@ private:
     if (ret == -EINVAL) {
       // if shrinking an image, a pagecache writeback might reference
       // extents outside of the range of the new image extents
-      dout(5) << __func__ << ": masking IO out-of-bounds error" << dendl;
+      dout(0) << __func__ << ": masking IO out-of-bounds error" << dendl;
       ctx->data.clear();
       ret = 0;
     }