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

Commit 006b9568 authored by Linus Torvalds's avatar Linus Torvalds
Browse files

Merge tag 'for-v3.7-fixes' of git://git.infradead.org/users/cbou/linux-pstore

Pull pstore fix from Anton Vorontsov:
 "A small fixup for the persistent storage subsystem.  The bug can
  prevent kernel booting on a APEI-enabled machines w/ PSTORE_CONSOLE=y
  (this is N by default, though)."

* tag 'for-v3.7-fixes' of git://git.infradead.org/users/cbou/linux-pstore:
  pstore: Fix NULL pointer dereference in console writes
parents e8017454 70a6f46d
Loading
Loading
Loading
Loading
+2 −1
Original line number Original line Diff line number Diff line
@@ -161,6 +161,7 @@ static void pstore_console_write(struct console *con, const char *s, unsigned c)


	while (s < e) {
	while (s < e) {
		unsigned long flags;
		unsigned long flags;
		u64 id;


		if (c > psinfo->bufsize)
		if (c > psinfo->bufsize)
			c = psinfo->bufsize;
			c = psinfo->bufsize;
@@ -172,7 +173,7 @@ static void pstore_console_write(struct console *con, const char *s, unsigned c)
			spin_lock_irqsave(&psinfo->buf_lock, flags);
			spin_lock_irqsave(&psinfo->buf_lock, flags);
		}
		}
		memcpy(psinfo->buf, s, c);
		memcpy(psinfo->buf, s, c);
		psinfo->write(PSTORE_TYPE_CONSOLE, 0, NULL, 0, c, psinfo);
		psinfo->write(PSTORE_TYPE_CONSOLE, 0, &id, 0, c, psinfo);
		spin_unlock_irqrestore(&psinfo->buf_lock, flags);
		spin_unlock_irqrestore(&psinfo->buf_lock, flags);
		s += c;
		s += c;
		c = e - s;
		c = e - s;