apparmor: fix blob compression build failure on ppc

security/apparmor/policy_unpack.c: In function 'deflate_compress':
security/apparmor/policy_unpack.c:1064:4: error: implicit declaration of function 'vfree'; did you mean 'kfree'? [-Werror=implicit-function-declaration]
    vfree(stgbuf);
    ^~~~~
    kfree

Fixes: 876dd866c084 ("apparmor: Initial implementation of raw policy blob compression")
Signed-off-by: John Johansen <john.johansen@canonical.com>
This commit is contained in:
John Johansen 2019-02-08 17:14:35 -08:00
parent 63c16c3a76
commit 6a59d9243d

View File

@ -1062,7 +1062,7 @@ static int deflate_compress(const char *src, size_t slen, char **dst,
dstbuf = kvzalloc(strm.total_out, GFP_KERNEL);
if (dstbuf) {
memcpy(dstbuf, stgbuf, strm.total_out);
vfree(stgbuf);
kvfree(stgbuf);
}
} else
/*