mirror of
https://gitea.osmocom.org/sim-card/simtrace2.git
synced 2026-03-23 00:38:33 +03:00
WIP: use local_irq_{save,restore}()
This commit is contained in:
@@ -1,19 +1,24 @@
|
||||
#pragma once
|
||||
|
||||
#include "osmocom/core/linuxlist.h"
|
||||
#include "utils.h"
|
||||
|
||||
static inline void llist_add_irqsafe(struct llist_head *_new,
|
||||
struct llist_head *head)
|
||||
{
|
||||
__disable_irq();
|
||||
unsigned long x;
|
||||
|
||||
local_irq_save(x);
|
||||
llist_add(_new, head);
|
||||
__enable_irq();
|
||||
local_irq_retsore(x);
|
||||
}
|
||||
|
||||
static inline void llist_add_tail_irqsafe(struct llist_head *_new,
|
||||
struct llist_head *head)
|
||||
{
|
||||
__disable_irq();
|
||||
unsigned long x;
|
||||
|
||||
local_irq_save(x);
|
||||
llist_add_tail(_new, head);
|
||||
__enable_irq();
|
||||
}
|
||||
@@ -21,15 +26,16 @@ static inline void llist_add_tail_irqsafe(struct llist_head *_new,
|
||||
static inline struct llist_head *llist_head_dequeue_irqsafe(struct llist_head *head)
|
||||
{
|
||||
struct llist_head *lh;
|
||||
unsigned long x;
|
||||
|
||||
__disable_irq();
|
||||
local_irq_save(x);
|
||||
if (llist_empty(head)) {
|
||||
lh = NULL;
|
||||
} else {
|
||||
lh = head->next;
|
||||
llist_del(lh);
|
||||
}
|
||||
__enable_irq();
|
||||
local_irq_restore(x);
|
||||
|
||||
return lh;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user