Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 25 Jan 2023 21:38:58 GMT
From:      =?utf-8?Q?Jean-S=C3=A9bastien=20P=C3=A9dron?= <dumbbell@FreeBSD.org>
To:        src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-main@FreeBSD.org
Subject:   git: 2272ccaa68c5 - main - linuxkpi: Define `tasklet_unlock_spin_wait()` as `tasklet_unlock_wait()`
Message-ID:  <202301252138.30PLcw5N007470@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
The branch main has been updated by dumbbell (ports committer):

URL: https://cgit.FreeBSD.org/src/commit/?id=2272ccaa68c550e0e29801b9d881b2ea5ba12efa

commit 2272ccaa68c550e0e29801b9d881b2ea5ba12efa
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-01-25 21:26:53 +0000

    linuxkpi: Define `tasklet_unlock_spin_wait()` as `tasklet_unlock_wait()`
    
    Reviewed by:    manu
    Approved by:    manu
    Differential Revision:  https://reviews.freebsd.org/D38080
---
 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 f56140632605..aa9360ead910 100644
--- a/sys/compat/linuxkpi/common/include/linux/interrupt.h
+++ b/sys/compat/linuxkpi/common/include/linux/interrupt.h
@@ -176,5 +176,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_ */



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202301252138.30PLcw5N007470>