summaryrefslogtreecommitdiffstats
path: root/fs/dlm
diff options
context:
space:
mode:
authorAlexander Aring <aahringo@redhat.com>2023-08-01 14:09:46 -0400
committerDavid Teigland <teigland@redhat.com>2023-08-10 10:33:03 -0500
commit561c67d8a10142250baa2a2a4e8b5d95e9c97df9 (patch)
treedddccf19f3d1f73588dd0c86975664a5e180e449 /fs/dlm
parentc4f4e135c27b503d325d414819831909023b113d (diff)
downloadlinux-561c67d8a10142250baa2a2a4e8b5d95e9c97df9.tar.gz
linux-561c67d8a10142250baa2a2a4e8b5d95e9c97df9.tar.bz2
linux-561c67d8a10142250baa2a2a4e8b5d95e9c97df9.zip
fs: dlm: drop rxbuf manipulation in dlm_copy_master_names
This patch removes the manipulation of the receive buffer in case of an error and be sure the buffer is null terminated before an error messagea is printed out. Instead of manipulate the receive buffer we tell inside the format string the maximum length the string buffer is being read. Signed-off-by: Alexander Aring <aahringo@redhat.com> Signed-off-by: David Teigland <teigland@redhat.com>
Diffstat (limited to 'fs/dlm')
-rw-r--r--fs/dlm/dir.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/fs/dlm/dir.c b/fs/dlm/dir.c
index 3bf5bf7a37b4..768cf8d43b2b 100644
--- a/fs/dlm/dir.c
+++ b/fs/dlm/dir.c
@@ -245,9 +245,8 @@ void dlm_copy_master_names(struct dlm_ls *ls, char *inbuf, int inlen,
if (inlen > 1) {
r = find_rsb_root(ls, inbuf, inlen);
if (!r) {
- inbuf[inlen - 1] = '\0';
- log_error(ls, "copy_master_names from %d start %d %s",
- nodeid, inlen, inbuf);
+ log_error(ls, "copy_master_names from %d start %d %.*s",
+ nodeid, inlen, inlen, inbuf);
goto out;
}
list = r->res_root_list.next;