Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit fce6e033 authored by Petr Mladek's avatar Petr Mladek Committed by Linus Torvalds
Browse files

printk: do not compute the size of the message twice



This is just a tiny optimization.  It removes duplicate computation of
the message size.

Signed-off-by: default avatarPetr Mladek <pmladek@suse.cz>
Cc: Steven Rostedt <rostedt@goodmis.org>
Cc: Frederic Weisbecker <fweisbec@gmail.com>
Cc: Jan Kara <jack@suse.cz>
Cc: Michal Hocko <mhocko@suse.cz>
Cc: Kay Sievers <kay@vrfy.org>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent 39b25109
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -351,7 +351,7 @@ static void log_store(int facility, int level,
	else
		msg->ts_nsec = local_clock();
	memset(log_dict(msg) + dict_len, 0, pad_len);
	msg->len = sizeof(struct printk_log) + text_len + dict_len + pad_len;
	msg->len = size;

	/* insert message */
	log_next_idx += msg->len;