From: Alexander Aring Date: Thu, 17 Nov 2022 22:11:47 +0000 (-0500) Subject: fs: dlm: remove twice INIT_WORK X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=01ea3d7701cb52dece379384f8aa7b8840f1d7c7;p=linux.git fs: dlm: remove twice INIT_WORK This patch removed a twice INIT_WORK() functionality. We already doing this inside of dlm_lowcomms_init() functionality which is called only once dlm is loaded. Signed-off-by: Alexander Aring Signed-off-by: David Teigland --- diff --git a/fs/dlm/lowcomms.c b/fs/dlm/lowcomms.c index 0dcb69cc456a8..3106e7f873447 100644 --- a/fs/dlm/lowcomms.c +++ b/fs/dlm/lowcomms.c @@ -1825,7 +1825,6 @@ static int dlm_listen_for_all(void) save_listen_callbacks(sock); add_listen_sock(sock, &listen_con); - INIT_WORK(&listen_con.rwork, process_listen_recv_socket); result = sock->ops->listen(sock, 5); if (result < 0) { dlm_close_sock(&listen_con.sock);