Skip to content

Commit

Permalink
Merge tag 'pstore-v4.17-rc1-fix' of git://git.kernel.org/pub/scm/linu…
Browse files Browse the repository at this point in the history
…x/kernel/git/kees/linux

Pull pstore fix from Kees Cook:
 "Fix another compression Kconfig combination missed in testing (Tobias
  Regnery)"

* tag 'pstore-v4.17-rc1-fix' of git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux:
  pstore: fix crypto dependencies without compression
  • Loading branch information
Linus Torvalds committed Apr 9, 2018
2 parents fd40ffc + e698aaf commit 190f2ac
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions fs/pstore/platform.c
Original file line number Diff line number Diff line change
Expand Up @@ -258,7 +258,7 @@ static int pstore_decompress(void *in, void *out,

static void allocate_buf_for_compression(void)
{
if (!zbackend)
if (!IS_ENABLED(CONFIG_PSTORE_COMPRESS) || !zbackend)
return;

if (!crypto_has_comp(zbackend->name, 0, 0)) {
Expand Down Expand Up @@ -287,7 +287,7 @@ static void allocate_buf_for_compression(void)

static void free_buf_for_compression(void)
{
if (!IS_ERR_OR_NULL(tfm))
if (IS_ENABLED(CONFIG_PSTORE_COMPRESS) && !IS_ERR_OR_NULL(tfm))
crypto_free_comp(tfm);
kfree(big_oops_buf);
big_oops_buf = NULL;
Expand Down

0 comments on commit 190f2ac

Please sign in to comment.