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

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