Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 5199dfe5 authored by Eric Dumazet's avatar Eric Dumazet Committed by David S. Miller
Browse files

sparc: bpf_jit_comp: can call module_free() from any context



module_free()/vfree() takes care of details, we no longer need a wrapper
and a work_struct.

Signed-off-by: default avatarEric Dumazet <edumazet@google.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 57b354e6
Loading
Loading
Loading
Loading
+3 −17
Original line number Diff line number Diff line
@@ -785,9 +785,7 @@ cond_branch: f_offset = addrs[i + filter[i].jf];
			break;
		}
		if (proglen == oldproglen) {
			image = module_alloc(max_t(unsigned int,
						   proglen,
						   sizeof(struct work_struct)));
			image = module_alloc(proglen);
			if (!image)
				goto out;
		}
@@ -806,20 +804,8 @@ cond_branch: f_offset = addrs[i + filter[i].jf];
	return;
}

static void jit_free_defer(struct work_struct *arg)
{
	module_free(NULL, arg);
}

/* run from softirq, we must use a work_struct to call
 * module_free() from process context
 */
void bpf_jit_free(struct sk_filter *fp)
{
	if (fp->bpf_func != sk_run_filter) {
		struct work_struct *work = (struct work_struct *)fp->bpf_func;

		INIT_WORK(work, jit_free_defer);
		schedule_work(work);
	}
	if (fp->bpf_func != sk_run_filter)
		module_free(NULL, fp->bpf_func);
}