summaryrefslogtreecommitdiff
path: root/include/linux/sched/vhost_task.h
blob: 837a23624a66a3ed1ceb6958e0fe8f5a98065d82 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/* SPDX-License-Identifier: GPL-2.0 */
#ifndef _LINUX_VHOST_TASK_H
#define _LINUX_VHOST_TASK_H


struct vhost_task;

struct vhost_task *vhost_task_create(bool (*fn)(void *), void *arg,
				     const char *name);
void vhost_task_start(struct vhost_task *vtsk);
void vhost_task_stop(struct vhost_task *vtsk);
void vhost_task_wake(struct vhost_task *vtsk);

#endif