Blame SOURCES/0123-fcntl-use-print_fields.h-macros.patch

089393
From eba856eb0246ce2a2ba99d68611da1af7814080e Mon Sep 17 00:00:00 2001
089393
From: "Dmitry V. Levin" <ldv@altlinux.org>
089393
Date: Mon, 13 Jul 2020 08:00:00 +0000
089393
Subject: [PATCH 123/138] fcntl: use print_fields.h macros
089393
089393
* fcntl.c: Include "print_fields.h".
089393
(print_struct_flock64, print_f_owner_ex): Use PRINT_FIELD_* macros
089393
from print_fields.h.
089393
---
089393
 fcntl.c | 19 +++++++++----------
089393
 1 file changed, 9 insertions(+), 10 deletions(-)
089393
089393
diff --git a/fcntl.c b/fcntl.c
089393
index 0b4221c..e84549e 100644
089393
--- a/fcntl.c
089393
+++ b/fcntl.c
089393
@@ -11,6 +11,7 @@
089393
 
089393
 #include "defs.h"
089393
 #include "flock.h"
089393
+#include "print_fields.h"
089393
 
089393
 #include "xlat/f_owner_types.h"
089393
 #include "xlat/f_seals.h"
089393
@@ -22,14 +23,12 @@
089393
 static void
089393
 print_struct_flock64(const struct_kernel_flock64 *fl, const int getlk)
089393
 {
089393
-	tprints("{l_type=");
089393
-	printxval(lockfcmds, (unsigned short) fl->l_type, "F_???");
089393
-	tprints(", l_whence=");
089393
-	printxval(whence_codes, (unsigned short) fl->l_whence, "SEEK_???");
089393
-	tprintf(", l_start=%" PRId64 ", l_len=%" PRId64,
089393
-		(int64_t) fl->l_start, (int64_t) fl->l_len);
089393
+	PRINT_FIELD_XVAL("{", *fl, l_type, lockfcmds, "F_???");
089393
+	PRINT_FIELD_XVAL(", ", *fl, l_whence, whence_codes, "SEEK_???");
089393
+	PRINT_FIELD_D(", ", *fl, l_start);
089393
+	PRINT_FIELD_D(", ", *fl, l_len);
089393
 	if (getlk)
089393
-		tprintf(", l_pid=%lu", (unsigned long) fl->l_pid);
089393
+		PRINT_FIELD_D(", ", *fl, l_pid);
089393
 	tprints("}");
089393
 }
089393
 
089393
@@ -59,9 +58,9 @@ print_f_owner_ex(struct tcb *const tcp, const kernel_ulong_t addr)
089393
 	if (umove_or_printaddr(tcp, addr, &owner))
089393
 		return;
089393
 
089393
-	tprints("{type=");
089393
-	printxval(f_owner_types, owner.type, "F_OWNER_???");
089393
-	tprintf(", pid=%d}", owner.pid);
089393
+	PRINT_FIELD_XVAL("{", owner, type, f_owner_types, "F_OWNER_???");
089393
+	PRINT_FIELD_D(", ", owner, pid);
089393
+	tprints("}");
089393
 }
089393
 
089393
 static int
089393
-- 
089393
2.1.4
089393