git: 70bbe8425bc7 - stable/13 - linuxkpi: Define `tasklet_unlock_spin_wait()` as `tasklet_unlock_wait()`
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Thu, 16 Feb 2023 11:55:42 UTC
The branch stable/13 has been updated by dumbbell (ports committer):
URL: https://cgit.FreeBSD.org/src/commit/?id=70bbe8425bc7118f4971264ed577eacdd8237447
commit 70bbe8425bc7118f4971264ed577eacdd8237447
Author: Jean-Sébastien Pédron <dumbbell@FreeBSD.org>
AuthorDate: 2023-01-11 00:48:43 +0000
Commit: Jean-Sébastien Pédron <dumbbell@FreeBSD.org>
CommitDate: 2023-02-16 11:55:12 +0000
linuxkpi: Define `tasklet_unlock_spin_wait()` as `tasklet_unlock_wait()`
Reviewed by: manu
Approved by: manu
Differential Revision: https://reviews.freebsd.org/D38080
(cherry picked from commit 2272ccaa68c550e0e29801b9d881b2ea5ba12efa)
---
sys/compat/linuxkpi/common/include/linux/interrupt.h | 1 +
1 file changed, 1 insertion(+)
diff --git a/sys/compat/linuxkpi/common/include/linux/interrupt.h b/sys/compat/linuxkpi/common/include/linux/interrupt.h
index 57d7ac58ec5e..3bc98aa88ba4 100644
--- a/sys/compat/linuxkpi/common/include/linux/interrupt.h
+++ b/sys/compat/linuxkpi/common/include/linux/interrupt.h
@@ -165,5 +165,6 @@ extern void tasklet_disable_nosync(struct tasklet_struct *);
extern int tasklet_trylock(struct tasklet_struct *);
extern void tasklet_unlock(struct tasklet_struct *);
extern void tasklet_unlock_wait(struct tasklet_struct *ts);
+#define tasklet_unlock_spin_wait(ts) tasklet_unlock_wait(ts)
#endif /* _LINUXKPI_LINUX_INTERRUPT_H_ */