mirror of
https://gitea.osmocom.org/sim-card/simtrace2.git
synced 2026-03-16 21:28:33 +03:00
Add llist_add_irqsafe() similar to llist_add_tail_irqsafe()
This commit is contained in:
@@ -2,6 +2,14 @@
|
||||
|
||||
#include "osmocom/core/linuxlist.h"
|
||||
|
||||
static inline void llist_add_irqsafe(struct llist_head *_new,
|
||||
struct llist_head *head)
|
||||
{
|
||||
__disable_irq();
|
||||
llist_add(_new, head);
|
||||
__enable_irq();
|
||||
}
|
||||
|
||||
static inline void llist_add_tail_irqsafe(struct llist_head *_new,
|
||||
struct llist_head *head)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user