diff options
author | Philipp Reisner <philipp.reisner@linbit.com> | 2011-05-25 05:03:04 -0400 |
---|---|---|
committer | Philipp Reisner <philipp.reisner@linbit.com> | 2012-11-08 10:57:43 -0500 |
commit | a67b813cfa6f7d84bc3958558be9b87b5b3ea533 (patch) | |
tree | 10498e4a826e96b460f5de32de2af1059ee76a7d | |
parent | c75b9b10e7f09bbf9660dd20a675e0a8069bd529 (diff) |
drbd: Lower log priority for an event that is definitely not an error
Signed-off-by: Philipp Reisner <philipp.reisner@linbit.com>
Signed-off-by: Lars Ellenberg <lars.ellenberg@linbit.com>
-rw-r--r-- | drivers/block/drbd/drbd_receiver.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/block/drbd/drbd_receiver.c b/drivers/block/drbd/drbd_receiver.c index 96113032b03c..4ba097293278 100644 --- a/drivers/block/drbd/drbd_receiver.c +++ b/drivers/block/drbd/drbd_receiver.c | |||
@@ -1084,7 +1084,7 @@ static void drbd_flush(struct drbd_conf *mdev) | |||
1084 | rv = blkdev_issue_flush(mdev->ldev->backing_bdev, GFP_KERNEL, | 1084 | rv = blkdev_issue_flush(mdev->ldev->backing_bdev, GFP_KERNEL, |
1085 | NULL); | 1085 | NULL); |
1086 | if (rv) { | 1086 | if (rv) { |
1087 | dev_err(DEV, "local disk flush failed with status %d\n", rv); | 1087 | dev_info(DEV, "local disk flush failed with status %d\n", rv); |
1088 | /* would rather check on EOPNOTSUPP, but that is not reliable. | 1088 | /* would rather check on EOPNOTSUPP, but that is not reliable. |
1089 | * don't try again for ANY return value != 0 | 1089 | * don't try again for ANY return value != 0 |
1090 | * if (rv == -EOPNOTSUPP) */ | 1090 | * if (rv == -EOPNOTSUPP) */ |