If the final line in in the message to be printed is blang, don't print
it.
This happens with indented printbufs - after a newline we emit spaces up
to the indent level.
Signed-off-by: Kent Overstreet <kent.overstreet@linux.dev>
        bch2_prt_u64_base2_nbits(out, v, fls64(v) ?: 1);
 }
 
+static bool string_is_spaces(const char *str)
+{
+       while (*str) {
+               if (*str != ' ')
+                       return false;
+               str++;
+       }
+       return true;
+}
+
 void bch2_print_string_as_lines(const char *prefix, const char *lines,
                                bool nonblocking)
 {
 
        while (*lines) {
                p = strchrnul(lines, '\n');
+               if (!*p && string_is_spaces(lines))
+                       break;
+
                printk("%s%.*s\n", prefix, (int) (p - lines), lines);
                if (!*p)
                        break;