[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <1475072461-29366-1-git-send-email-agnel.joel@gmail.com>
Date: Wed, 28 Sep 2016 07:21:01 -0700
From: Joel Fernandes <agnel.joel@...il.com>
To: linux-kernel@...r.kernel.org
Cc: Joel Fernandes <joelaf@...gle.com>,
Mark Salyzyn <salyzyn@...roid.com>,
Kees Cook <keescook@...omium.org>,
Anton Vorontsov <anton@...msg.org>,
Colin Cross <ccross@...roid.com>,
Tony Luck <tony.luck@...el.com>
Subject: [PATCH] ramoops: Remove pmsg case for write with write_buf function
From: Joel Fernandes <joelaf@...gle.com>
PMSG now uses ramoops_pstore_write_buf_user instead of write_buf.
Remove the case where we check PSTORE_TYPE_PMSG case in write_buf.
Cc: Mark Salyzyn <salyzyn@...roid.com>
Cc: Kees Cook <keescook@...omium.org>
Cc: Anton Vorontsov <anton@...msg.org>
Cc: Colin Cross <ccross@...roid.com>
Cc: Tony Luck <tony.luck@...el.com>
Signed-off-by: Joel Fernandes <joelaf@...gle.com>
---
fs/pstore/ram.c | 5 -----
1 file changed, 5 deletions(-)
diff --git a/fs/pstore/ram.c b/fs/pstore/ram.c
index 751197d..519404c 100644
--- a/fs/pstore/ram.c
+++ b/fs/pstore/ram.c
@@ -287,11 +287,6 @@ static int notrace ramoops_pstore_write_buf(enum pstore_type_id type,
return -ENOMEM;
persistent_ram_write(cxt->fprz, buf, size, 1);
return 0;
- } else if (type == PSTORE_TYPE_PMSG) {
- if (!cxt->mprz)
- return -ENOMEM;
- persistent_ram_write(cxt->mprz, buf, size, 1);
- return 0;
}
if (type != PSTORE_TYPE_DMESG)
--
2.7.4
Powered by blists - more mailing lists