From 038d8f994d66eeb79734c03ecd631a12d5433221 Mon Sep 17 00:00:00 2001 From: Pranith Kumar K Date: Tue, 11 Jul 2017 18:58:04 +0530 Subject: libglusterfs: Handle FS errors gracefully Problem: FS sometimes doesn't give the expected return values. We need our common functions to guard against this. Example BUG: https://bugzilla.redhat.com/show_bug.cgi?id=864401 Fix: When the return value is not as per specification, change the return value to -1 and errno to EIO BUG: 1469487 Change-Id: I14739ab2e5ae225b1a91438b87f8928af56f2934 Signed-off-by: Pranith Kumar K --- xlators/storage/posix/src/posix-messages.h | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) (limited to 'xlators/storage/posix/src/posix-messages.h') diff --git a/xlators/storage/posix/src/posix-messages.h b/xlators/storage/posix/src/posix-messages.h index fbae4d8d83a..7d0ff0282bf 100644 --- a/xlators/storage/posix/src/posix-messages.h +++ b/xlators/storage/posix/src/posix-messages.h @@ -45,7 +45,8 @@ */ #define POSIX_COMP_BASE GLFS_MSGID_COMP_POSIX -#define GLFS_NUM_MESSAGES 112 + +#define GLFS_NUM_MESSAGES 113 #define GLFS_MSGID_END (POSIX_COMP_BASE + GLFS_NUM_MESSAGES + 1) /* Messaged with message IDs */ #define glfs_msg_start_x POSIX_COMP_BASE, "Invalid: Start of messages" @@ -954,9 +955,17 @@ * */ - #define P_MSG_DISK_SPACE_CHECK_FAILED (POSIX_COMP_BASE + 112) +/*! + * @messageid + * @diagnosis + * @recommendedaction + * + */ + +#define P_MSG_FALLOCATE_FAILED (POSIX_COMP_BASE + 113) + /*! * @messageid * @diagnosis -- cgit