search for: klp_patch_pending

Displaying 1 result from an estimated 1 matches for "klp_patch_pending".

2023 Jan 26
1
[PATCH 2/2] vhost: check for pending livepatches from vhost worker kthreads
...; +++ b/drivers/vhost/vhost.c > > > > > @@ -366,6 +367,9 @@ static int vhost_worker(void *data) > > > > > if (need_resched()) > > > > > schedule(); > > > > > } > > > > > + > > > > > + if (unlikely(klp_patch_pending(current))) > > > > > + klp_switch_current(); > > > > > > > > I suggest to use the following intead: > > > > > > > > if (unlikely(klp_patch_pending(current))) > > > > klp_update_patch_state(current); > > > &...