|
@@ -2358,8 +2358,9 @@ again:
|
|
|
printk_safe_enter_irqsave(flags);
|
|
|
raw_spin_lock(&logbuf_lock);
|
|
|
if (console_seq < log_first_seq) {
|
|
|
- len = sprintf(text, "** %u printk messages dropped **\n",
|
|
|
- (unsigned)(log_first_seq - console_seq));
|
|
|
+ len = sprintf(text,
|
|
|
+ "** %llu printk messages dropped **\n",
|
|
|
+ log_first_seq - console_seq);
|
|
|
|
|
|
/* messages are gone, move to first one */
|
|
|
console_seq = log_first_seq;
|