ksmbd: do not call kvmalloc() with __GFP_NORETRY | __GFP_NO_WARN
authorMarios Makassikis <mmakassikis@freebox.fr>
Thu, 16 Mar 2023 13:40:43 +0000 (14:40 +0100)
committerSteve French <stfrench@microsoft.com>
Sat, 25 Mar 2023 19:54:06 +0000 (14:54 -0500)
commite416ea62a9166e6075a07a970cc5bf79255d2700
tree0fb404168995e112ea94216140748d341a9a3282
parent90c8ce31dbe93f277fc1157e34740e841094c254
ksmbd: do not call kvmalloc() with __GFP_NORETRY | __GFP_NO_WARN

Commit 83dcedd5540d ("ksmbd: fix infinite loop in ksmbd_conn_handler_loop()"),
changes GFP modifiers passed to kvmalloc(). This cause xfstests generic/551
test to fail. We limit pdu length size according to connection status and
maximum number of connections. In the rest, memory allocation of request
is limited by credit management. so these flags are no longer needed.

Fixes: 83dcedd5540d ("ksmbd: fix infinite loop in ksmbd_conn_handler_loop()")
Cc: stable@vger.kernel.org
Signed-off-by: Marios Makassikis <mmakassikis@freebox.fr>
Acked-by: Namjae Jeon <linkinjeon@kernel.org>
Signed-off-by: Steve French <stfrench@microsoft.com>
fs/ksmbd/connection.c