14f8ab
From 5a7348a266587704dae4f1ddda16b7c95f547251 Mon Sep 17 00:00:00 2001
14f8ab
From: Rinku Kothiya <rkothiya@redhat.com>
14f8ab
Date: Sun, 7 Feb 2021 13:40:24 +0000
14f8ab
Subject: [PATCH 530/532] gfapi: avoid crash while logging message.
14f8ab
14f8ab
Breaking parameter into two different parameter
14f8ab
to avoid a crash.
14f8ab
14f8ab
Upstream:
14f8ab
> Reviewed-on: https://github.com/gluster/glusterfs/pull/2139
14f8ab
> fixes: #2138
14f8ab
> Change-Id: Idd5f3631488c1d892748f83e6847fb6fd2d0802a
14f8ab
> Signed-off-by: Rinku Kothiya <rkothiya@redhat.com>
14f8ab
14f8ab
BUG: 1691320
14f8ab
14f8ab
Change-Id: Ifd6a96982ffd4e5334f8be2297de2ad826f3145b
14f8ab
Signed-off-by: Rinku Kothiya <rkothiya@redhat.com>
14f8ab
Reviewed-on: https://code.engineering.redhat.com/gerrit/226851
14f8ab
Tested-by: RHGS Build Bot <nigelb@redhat.com>
14f8ab
Reviewed-by: Sunil Kumar Heggodu Gopala Acharya <sheggodu@redhat.com>
14f8ab
---
14f8ab
 api/src/glfs-fops.c | 2 +-
14f8ab
 1 file changed, 1 insertion(+), 1 deletion(-)
14f8ab
14f8ab
diff --git a/api/src/glfs-fops.c b/api/src/glfs-fops.c
14f8ab
index 051541f..6dc3b66 100644
14f8ab
--- a/api/src/glfs-fops.c
14f8ab
+++ b/api/src/glfs-fops.c
14f8ab
@@ -1529,7 +1529,7 @@ glfs_pwritev_common(struct glfs_fd *glfd, const struct iovec *iovec, int iovcnt,
14f8ab
         ret = -1;
14f8ab
         errno = EINVAL;
14f8ab
         gf_smsg(THIS->name, GF_LOG_ERROR, errno, API_MSG_INVALID_ARG,
14f8ab
-                "size >= %llu is not allowed", GF_UNIT_GB, NULL);
14f8ab
+                "Data size too large", "size=%llu", GF_UNIT_GB, NULL);
14f8ab
         goto out;
14f8ab
     }
14f8ab
 
14f8ab
-- 
14f8ab
1.8.3.1
14f8ab