From 5426194be4b389fc9452f595b40de2a89061e175 Mon Sep 17 00:00:00 2001 From: Leon Romanovsky Date: Wed, 25 Sep 2024 15:16:16 +0300 Subject: [PATCH] another tmp fix Signed-off-by: Leon Romanovsky --- net/9p/client.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/net/9p/client.c b/net/9p/client.c index 5cd94721d974..ad73ea5eae03 100644 --- a/net/9p/client.c +++ b/net/9p/client.c @@ -1038,11 +1038,11 @@ struct p9_client *p9_client_create(const char *dev_name, char *options) /* P9_HDRSZ + 4 is the smallest packet header we can have that is * followed by data accessed from userspace by read */ - clnt->fcall_cache = - kmem_cache_create_usercopy("9p-fcall-cache", clnt->msize, - 0, 0, P9_HDRSZ + 4, - clnt->msize - (P9_HDRSZ + 4), - NULL); + //clnt->fcall_cache = + // kmem_cache_create_usercopy("9p-fcall-cache", clnt->msize, + // 0, 0, P9_HDRSZ + 4, + // clnt->msize - (P9_HDRSZ + 4), + // NULL); return clnt; -- 2.49.0