Home
last modified time | relevance | path

Searched refs:stgbuf (Results 1 – 1 of 1) sorted by relevance

/Linux-v6.1/security/apparmor/
Dpolicy_unpack.c1068 void *stgbuf, *dstbuf; in deflate_compress() local
1088 stgbuf = kvzalloc(stglen, GFP_KERNEL); in deflate_compress()
1089 if (!stgbuf) { in deflate_compress()
1096 strm.next_out = stgbuf; in deflate_compress()
1106 if (is_vmalloc_addr(stgbuf)) { in deflate_compress()
1109 memcpy(dstbuf, stgbuf, strm.total_out); in deflate_compress()
1110 kvfree(stgbuf); in deflate_compress()
1118 dstbuf = krealloc(stgbuf, strm.total_out, GFP_KERNEL); in deflate_compress()
1135 kvfree(stgbuf); in deflate_compress()