aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/include/linux/posix-timers.h
diff options
context:
space:
mode:
authorThomas Gleixner <tglx@linutronix.de>2024-07-30 18:53:38 +0200
committerThomas Gleixner <tglx@linutronix.de>2024-07-30 18:53:38 +0200
commit9a7b0158aea7a53c8c942e8b83e16f7f30e0018c (patch)
tree55e8afffdecaa5b559f7594bd9d6a9bce22afaea /include/linux/posix-timers.h
parentLinux 6.11-rc1 (diff)
parentsignal: Replace BUG_ON()s (diff)
downloadwireguard-linux-9a7b0158aea7a53c8c942e8b83e16f7f30e0018c.tar.xz
wireguard-linux-9a7b0158aea7a53c8c942e8b83e16f7f30e0018c.zip
Merge tag 'posix-timers-2024-07-29' of git://git.kernel.org/pub/scm/linux/kernel/git/frederic/linux-dynticks into timers/core
Pull updates for posix timers and related signal code from Frederic Weisbecker: * Prepare posix timers selftests for upcoming changes: - Check signal behaviour sanity against SIG_IGN - Check signal behaviour sanity against timer reprogramm/deletion - Check SIGEV_NONE pending expiry read - Check interval timer read on a pending SIGNAL - Check correct overrun count after signal block/unblock * Various consolidations: - timer get/set - signal queue * Fixes: - Correctly read SIGEV_NONE timers - Forward expiry while reading expired interval timers with pending signal - Don't arm SIGEV_NONE timers * Various cleanups all over the place
Diffstat (limited to '')
-rw-r--r--include/linux/posix-timers.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/posix-timers.h b/include/linux/posix-timers.h
index dc7b738de299..453691710839 100644
--- a/include/linux/posix-timers.h
+++ b/include/linux/posix-timers.h
@@ -158,7 +158,7 @@ static inline void posix_cputimers_init_work(void) { }
* @rcu: RCU head for freeing the timer.
*/
struct k_itimer {
- struct list_head list;
+ struct hlist_node list;
struct hlist_node t_hash;
spinlock_t it_lock;
const struct k_clock *kclock;