Loading net/qrtr/Kconfig +11 −0 Original line number Diff line number Diff line Loading @@ -15,6 +15,17 @@ config QRTR if QRTR config QRTR_NODE_ID int "QRTR Local Node ID" default 1 help This option is used to configure the QRTR Node ID for the local processor. The node ID published to other nodes within the system. This value can be overridden by the name service application. This option is for configurations where Node ID needs to be customized but the name service application is not priveleged enough to use netlink sockets. config QRTR_SMD tristate "SMD IPC Router channels" depends on RPMSG || (COMPILE_TEST && RPMSG=n) Loading net/qrtr/qrtr.c +1 −1 Original line number Diff line number Diff line Loading @@ -106,7 +106,7 @@ static inline struct qrtr_sock *qrtr_sk(struct sock *sk) return container_of(sk, struct qrtr_sock, sk); } static unsigned int qrtr_local_nid = NUMA_NO_NODE; static unsigned int qrtr_local_nid = CONFIG_QRTR_NODE_ID; /* for node ids */ static RADIX_TREE(qrtr_nodes, GFP_ATOMIC); Loading Loading
net/qrtr/Kconfig +11 −0 Original line number Diff line number Diff line Loading @@ -15,6 +15,17 @@ config QRTR if QRTR config QRTR_NODE_ID int "QRTR Local Node ID" default 1 help This option is used to configure the QRTR Node ID for the local processor. The node ID published to other nodes within the system. This value can be overridden by the name service application. This option is for configurations where Node ID needs to be customized but the name service application is not priveleged enough to use netlink sockets. config QRTR_SMD tristate "SMD IPC Router channels" depends on RPMSG || (COMPILE_TEST && RPMSG=n) Loading
net/qrtr/qrtr.c +1 −1 Original line number Diff line number Diff line Loading @@ -106,7 +106,7 @@ static inline struct qrtr_sock *qrtr_sk(struct sock *sk) return container_of(sk, struct qrtr_sock, sk); } static unsigned int qrtr_local_nid = NUMA_NO_NODE; static unsigned int qrtr_local_nid = CONFIG_QRTR_NODE_ID; /* for node ids */ static RADIX_TREE(qrtr_nodes, GFP_ATOMIC); Loading