summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--patches/0024-printk-implement-kmsg_dump.patch2
-rw-r--r--patches/localversion.patch2
2 files changed, 2 insertions, 2 deletions
diff --git a/patches/0024-printk-implement-kmsg_dump.patch b/patches/0024-printk-implement-kmsg_dump.patch
index 0cf17330a187..5869c8594f92 100644
--- a/patches/0024-printk-implement-kmsg_dump.patch
+++ b/patches/0024-printk-implement-kmsg_dump.patch
@@ -292,7 +292,7 @@ Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de>
- /* move first record forward until length fits into the buffer */
- seq = dumper->cur_seq;
- idx = dumper->cur_idx;
-- while (l > size && seq < dumper->next_seq) {
+- while (l >= size && seq < dumper->next_seq) {
- struct printk_log *msg = log_from_idx(idx);
+ /* count the total bytes after seq */
+ textlen = count_remaining(&iter, end_seq, msgbuf,
diff --git a/patches/localversion.patch b/patches/localversion.patch
index 02952cda4bfa..e16fb07c0a7d 100644
--- a/patches/localversion.patch
+++ b/patches/localversion.patch
@@ -10,4 +10,4 @@ Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
--- /dev/null
+++ b/localversion-rt
@@ -0,0 +1 @@
-+-rt9
++-rt10