mirror of
https://github.com/linuxkit/linuxkit.git
synced 2025-09-12 13:24:12 +00:00
44 lines
1.3 KiB
Diff
44 lines
1.3 KiB
Diff
From 1ee4bc5017c2dfc14b348a6a131223a148ca89d2 Mon Sep 17 00:00:00 2001
|
|
From: Sebastian Andrzej Siewior <bigeasy@linutronix.de>
|
|
Date: Wed, 14 Sep 2016 11:52:17 +0200
|
|
Subject: [PATCH 056/418] rbtree: include rcu.h because we use it
|
|
|
|
Since commit c1adf20052d8 ("Introduce rb_replace_node_rcu()")
|
|
rbtree_augmented.h uses RCU related data structures but does not include
|
|
them. It works as long as gets somehow included before that and fails
|
|
otherwise.
|
|
|
|
Signed-off-by: Sebastian Andrzej Siewior <bigeasy@linutronix.de>
|
|
---
|
|
include/linux/rbtree_augmented.h | 1 +
|
|
include/linux/rbtree_latch.h | 1 +
|
|
2 files changed, 2 insertions(+)
|
|
|
|
diff --git a/include/linux/rbtree_augmented.h b/include/linux/rbtree_augmented.h
|
|
index 6bfd2b581f75..af8a61be2d8d 100644
|
|
--- a/include/linux/rbtree_augmented.h
|
|
+++ b/include/linux/rbtree_augmented.h
|
|
@@ -26,6 +26,7 @@
|
|
|
|
#include <linux/compiler.h>
|
|
#include <linux/rbtree.h>
|
|
+#include <linux/rcupdate.h>
|
|
|
|
/*
|
|
* Please note - only struct rb_augment_callbacks and the prototypes for
|
|
diff --git a/include/linux/rbtree_latch.h b/include/linux/rbtree_latch.h
|
|
index ece43e882b56..7d012faa509a 100644
|
|
--- a/include/linux/rbtree_latch.h
|
|
+++ b/include/linux/rbtree_latch.h
|
|
@@ -35,6 +35,7 @@
|
|
|
|
#include <linux/rbtree.h>
|
|
#include <linux/seqlock.h>
|
|
+#include <linux/rcupdate.h>
|
|
|
|
struct latch_tree_node {
|
|
struct rb_node node[2];
|
|
--
|
|
2.17.1
|
|
|