Date: Mon, 28 Mar 2022 12:49:51 GMT From: Emmanuel Vadot <manu@FreeBSD.org> To: src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-main@FreeBSD.org Subject: git: 17ee6aca65c8 - main - linuxkpi: Add llnode member in struct irq_work Message-ID: <202203281249.22SCnpxp070847@gitrepo.freebsd.org>
next in thread | raw e-mail | index | archive | help
The branch main has been updated by manu: URL: https://cgit.FreeBSD.org/src/commit/?id=17ee6aca65c8dfb5f041b3229655ce12b0f37372 commit 17ee6aca65c8dfb5f041b3229655ce12b0f37372 Author: Emmanuel Vadot <manu@FreeBSD.org> AuthorDate: 2022-03-28 12:48:28 +0000 Commit: Emmanuel Vadot <manu@FreeBSD.org> CommitDate: 2022-03-28 12:49:39 +0000 linuxkpi: Add llnode member in struct irq_work This was added in Linux v5.8 and started to be used in drm code in v5.9 MFC after: 1 week Sponsored by: Beckhoff Automation GmbH & Co. KG --- sys/compat/linuxkpi/common/include/linux/irq_work.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/sys/compat/linuxkpi/common/include/linux/irq_work.h b/sys/compat/linuxkpi/common/include/linux/irq_work.h index 0c35747d596c..d87ac8f0f44f 100644 --- a/sys/compat/linuxkpi/common/include/linux/irq_work.h +++ b/sys/compat/linuxkpi/common/include/linux/irq_work.h @@ -35,10 +35,12 @@ #include <sys/taskqueue.h> struct irq_work; +struct llist_node; typedef void (*irq_work_func_t)(struct irq_work *); struct irq_work { struct task irq_task; + struct llist_node llnode; irq_work_func_t func; };
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202203281249.22SCnpxp070847>