diff options
| author | Mark Johnston <markj@FreeBSD.org> | 2025-01-11 23:06:06 +0000 |
|---|---|---|
| committer | Mark Johnston <markj@FreeBSD.org> | 2025-04-29 13:53:40 +0000 |
| commit | 325aa4dbd10d04a61a9529e1d76212b5649b3c73 (patch) | |
| tree | e53d8eb0bf0fff99ff2346b5bc98f03452c981af /sys/compat/linuxkpi/common/include/linux/workqueue.h | |
| parent | 4fa275a5f35742a5d662db7106d20819329dc8f2 (diff) | |
Diffstat (limited to 'sys/compat/linuxkpi/common/include/linux/workqueue.h')
| -rw-r--r-- | sys/compat/linuxkpi/common/include/linux/workqueue.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/compat/linuxkpi/common/include/linux/workqueue.h b/sys/compat/linuxkpi/common/include/linux/workqueue.h index 7e740f0f1dfc..25ee861d3015 100644 --- a/sys/compat/linuxkpi/common/include/linux/workqueue.h +++ b/sys/compat/linuxkpi/common/include/linux/workqueue.h @@ -90,7 +90,7 @@ struct delayed_work { struct { struct callout callout; struct mtx mtx; - int expires; + long expires; } timer; }; @@ -245,7 +245,7 @@ extern struct workqueue_struct *linux_create_workqueue_common(const char *, int) extern void linux_destroy_workqueue(struct workqueue_struct *); extern bool linux_queue_work_on(int cpu, struct workqueue_struct *, struct work_struct *); extern bool linux_queue_delayed_work_on(int cpu, struct workqueue_struct *, - struct delayed_work *, unsigned delay); + struct delayed_work *, unsigned long delay); extern bool linux_cancel_work(struct work_struct *); extern bool linux_cancel_delayed_work(struct delayed_work *); extern bool linux_cancel_work_sync(struct work_struct *); |
