Lines Matching refs:leak
12 * Fixes the memory leak introduced in livepatch-shadow-mod through the
56 int **leak = ctor_data;
61 *shadow_leak = *leak;
68 int *leak;
83 leak = kzalloc(sizeof(*leak), GFP_KERNEL);
84 if (!leak)
87 shadow_leak = klp_shadow_alloc(d, SV_LEAK, sizeof(leak), GFP_KERNEL,
88 shadow_leak_ctor, &leak);
90 pr_err("%s: failed to allocate shadow variable for the leaking pointer: dummy @ %p, leak @ %p\n",
91 __func__, d, leak);
101 kfree(leak);
112 pr_info("%s: dummy @ %p, prevented leak @ %p\n",