mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2025-04-15 11:47:33 +07:00
net: qrtr: Fix FIXME related to qrtr_ns_init()
The 2 second delay before calling qrtr_ns_init() meant that the remote processors would register as endpoints in qrtr and the say_hello() call would therefor broadcast the outgoing HELLO to them. With the HELLO handshake corrected this delay is no longer needed. Reviewed-by: Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org> Tested-by: Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org> Signed-off-by: Bjorn Andersson <bjorn.andersson@linaro.org> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
a1dc1d6a05
commit
71046abfff
@ -693,7 +693,7 @@ static void qrtr_ns_data_ready(struct sock *sk)
|
|||||||
queue_work(qrtr_ns.workqueue, &qrtr_ns.work);
|
queue_work(qrtr_ns.workqueue, &qrtr_ns.work);
|
||||||
}
|
}
|
||||||
|
|
||||||
void qrtr_ns_init(struct work_struct *work)
|
void qrtr_ns_init(void)
|
||||||
{
|
{
|
||||||
struct sockaddr_qrtr sq;
|
struct sockaddr_qrtr sq;
|
||||||
int ret;
|
int ret;
|
||||||
|
@ -9,7 +9,6 @@
|
|||||||
#include <linux/termios.h> /* For TIOCINQ/OUTQ */
|
#include <linux/termios.h> /* For TIOCINQ/OUTQ */
|
||||||
#include <linux/spinlock.h>
|
#include <linux/spinlock.h>
|
||||||
#include <linux/wait.h>
|
#include <linux/wait.h>
|
||||||
#include <linux/workqueue.h>
|
|
||||||
|
|
||||||
#include <net/sock.h>
|
#include <net/sock.h>
|
||||||
|
|
||||||
@ -110,8 +109,6 @@ static DEFINE_MUTEX(qrtr_node_lock);
|
|||||||
static DEFINE_IDR(qrtr_ports);
|
static DEFINE_IDR(qrtr_ports);
|
||||||
static DEFINE_MUTEX(qrtr_port_lock);
|
static DEFINE_MUTEX(qrtr_port_lock);
|
||||||
|
|
||||||
static struct delayed_work qrtr_ns_work;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* struct qrtr_node - endpoint node
|
* struct qrtr_node - endpoint node
|
||||||
* @ep_lock: lock for endpoint management and callbacks
|
* @ep_lock: lock for endpoint management and callbacks
|
||||||
@ -1263,11 +1260,7 @@ static int __init qrtr_proto_init(void)
|
|||||||
return rc;
|
return rc;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* FIXME: Currently, this 2s delay is required to catch the NEW_SERVER
|
qrtr_ns_init();
|
||||||
* messages from routers. But the fix could be somewhere else.
|
|
||||||
*/
|
|
||||||
INIT_DELAYED_WORK(&qrtr_ns_work, qrtr_ns_init);
|
|
||||||
schedule_delayed_work(&qrtr_ns_work, msecs_to_jiffies(2000));
|
|
||||||
|
|
||||||
return rc;
|
return rc;
|
||||||
}
|
}
|
||||||
@ -1275,7 +1268,6 @@ postcore_initcall(qrtr_proto_init);
|
|||||||
|
|
||||||
static void __exit qrtr_proto_fini(void)
|
static void __exit qrtr_proto_fini(void)
|
||||||
{
|
{
|
||||||
cancel_delayed_work_sync(&qrtr_ns_work);
|
|
||||||
qrtr_ns_remove();
|
qrtr_ns_remove();
|
||||||
sock_unregister(qrtr_family.family);
|
sock_unregister(qrtr_family.family);
|
||||||
proto_unregister(&qrtr_proto);
|
proto_unregister(&qrtr_proto);
|
||||||
|
@ -29,7 +29,7 @@ void qrtr_endpoint_unregister(struct qrtr_endpoint *ep);
|
|||||||
|
|
||||||
int qrtr_endpoint_post(struct qrtr_endpoint *ep, const void *data, size_t len);
|
int qrtr_endpoint_post(struct qrtr_endpoint *ep, const void *data, size_t len);
|
||||||
|
|
||||||
void qrtr_ns_init(struct work_struct *work);
|
void qrtr_ns_init(void);
|
||||||
|
|
||||||
void qrtr_ns_remove(void);
|
void qrtr_ns_remove(void);
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user