summaryrefslogtreecommitdiffstats
path: root/net/qrtr/qrtr.c
diff options
context:
space:
mode:
Diffstat (limited to 'net/qrtr/qrtr.c')
-rw-r--r--net/qrtr/qrtr.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/net/qrtr/qrtr.c b/net/qrtr/qrtr.c
index 86e1e37eb4e8..b37e6e0a1026 100644
--- a/net/qrtr/qrtr.c
+++ b/net/qrtr/qrtr.c
@@ -15,6 +15,7 @@
15#include <linux/netlink.h> 15#include <linux/netlink.h>
16#include <linux/qrtr.h> 16#include <linux/qrtr.h>
17#include <linux/termios.h> /* For TIOCINQ/OUTQ */ 17#include <linux/termios.h> /* For TIOCINQ/OUTQ */
18#include <linux/numa.h>
18 19
19#include <net/sock.h> 20#include <net/sock.h>
20 21
@@ -101,7 +102,7 @@ static inline struct qrtr_sock *qrtr_sk(struct sock *sk)
101 return container_of(sk, struct qrtr_sock, sk); 102 return container_of(sk, struct qrtr_sock, sk);
102} 103}
103 104
104static unsigned int qrtr_local_nid = -1; 105static unsigned int qrtr_local_nid = NUMA_NO_NODE;
105 106
106/* for node ids */ 107/* for node ids */
107static RADIX_TREE(qrtr_nodes, GFP_KERNEL); 108static RADIX_TREE(qrtr_nodes, GFP_KERNEL);