[<prev] [next>] [day] [month] [year] [list]
Message-Id: <20220810162301.201540-1-sanpeqf@gmail.com>
Date: Thu, 11 Aug 2022 00:23:01 +0800
From: John Sanpe <sanpeqf@...il.com>
To: philipp.reisner@...bit.com, lars.ellenberg@...bit.com,
christoph.boehmwalder@...bit.com
Cc: drbd-dev@...ts.linbit.com, linux-kernel@...r.kernel.org,
John Sanpe <sanpeqf@...il.com>
Subject: [PATCH] lib/ubsan: add missing line feed of alignment-assumption.
Added three missing '\n' to pr_err format.
Signed-off-by: John Sanpe <sanpeqf@...il.com>
---
lib/ubsan.c | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/lib/ubsan.c b/lib/ubsan.c
index 36bd75e33426..705250ba88bf 100644
--- a/lib/ubsan.c
+++ b/lib/ubsan.c
@@ -371,14 +371,14 @@ void __ubsan_handle_alignment_assumption(void *_data, unsigned long ptr,
ubsan_prologue(&data->location, "alignment-assumption");
if (offset)
- pr_err("assumption of %lu byte alignment (with offset of %lu byte) for pointer of type %s failed",
+ pr_err("assumption of %lu byte alignment (with offset of %lu byte) for pointer of type %s failed\n",
align, offset, data->type->type_name);
else
- pr_err("assumption of %lu byte alignment for pointer of type %s failed",
+ pr_err("assumption of %lu byte alignment for pointer of type %s failed\n",
align, data->type->type_name);
real_ptr = ptr - offset;
- pr_err("%saddress is %lu aligned, misalignment offset is %lu bytes",
+ pr_err("%saddress is %lu aligned, misalignment offset is %lu bytes\n",
offset ? "offset " : "", BIT(real_ptr ? __ffs(real_ptr) : 0),
real_ptr & (align - 1));
--
2.36.1
Powered by blists - more mailing lists