cifsd: remove unneeded FIXME comments
authorSergey Senozhatsky <senozhatsky@chromium.org>
Sat, 20 Mar 2021 07:23:22 +0000 (16:23 +0900)
committerSteve French <stfrench@microsoft.com>
Tue, 11 May 2021 00:15:23 +0000 (19:15 -0500)
Remove unneeded FIXME comments.

Signed-off-by: Sergey Senozhatsky <senozhatsky@chromium.org>
Signed-off-by: Namjae Jeon <namjae.jeon@samsung.com>
Signed-off-by: Steve French <stfrench@microsoft.com>
12 files changed:
fs/cifsd/mgmt/share_config.c
fs/cifsd/mgmt/share_config.h
fs/cifsd/mgmt/tree_connect.c
fs/cifsd/mgmt/tree_connect.h
fs/cifsd/mgmt/user_config.c
fs/cifsd/mgmt/user_config.h
fs/cifsd/mgmt/user_session.c
fs/cifsd/server.c
fs/cifsd/smb_common.c
fs/cifsd/transport_ipc.c
fs/cifsd/transport_ipc.h
fs/cifsd/vfs_cache.c

index 0593702babfee49a0065c765f444fecfbc3ca69e..9bc7f7555ee2bae077af3be328dbc5c1dc74919e 100644 (file)
@@ -16,7 +16,6 @@
 #include "user_session.h"
 #include "../buffer_pool.h"
 #include "../transport_ipc.h"
-#include "../ksmbd_server.h" /* FIXME */
 
 #define SHARE_HASH_BITS                3
 static DEFINE_HASHTABLE(shares_table, SHARE_HASH_BITS);
index c47b874bd80b3d5de644ae3289a1127748727eac..49ca89667991880da7976db2c94c3acc2a2ce4f7 100644 (file)
@@ -10,8 +10,6 @@
 #include <linux/hashtable.h>
 #include <linux/path.h>
 
-#include "../glob.h"  /* FIXME */
-
 struct ksmbd_share_config {
        char                    *name;
        char                    *path;
index 2be7b2e2e3cd1830e724b6c884e5693e84a8db98..d5670f2596a3e7e956c37720037e9983b800df98 100644 (file)
@@ -6,7 +6,6 @@
 #include <linux/list.h>
 #include <linux/slab.h>
 
-#include "../ksmbd_server.h" /* FIXME */
 #include "../buffer_pool.h"
 #include "../transport_ipc.h"
 #include "../connection.h"
index 46237cd05b9c312dc2376ca95f261edd59a4739e..4e40ec3f47744ebf305e84620433cd5b65e45042 100644 (file)
@@ -8,7 +8,7 @@
 
 #include <linux/hashtable.h>
 
-#include "../ksmbd_server.h" /* FIXME */
+#include "../ksmbd_server.h"
 
 struct ksmbd_share_config;
 struct ksmbd_user;
index 1ab68f80f72e3de25195d806f175920519c9ac01..a1a454bfb57b1aeed5a18b3a71dc3dbd78af5b46 100644 (file)
@@ -8,7 +8,6 @@
 #include "user_config.h"
 #include "../buffer_pool.h"
 #include "../transport_ipc.h"
-#include "../ksmbd_server.h" /* FIXME */
 
 struct ksmbd_user *ksmbd_login_user(const char *account)
 {
index 5cda4a5d3e2f3eed51344cf167af8eafc2700607..b2bb074a0150f02a225b1080808d3d93aaa65e3a 100644 (file)
@@ -6,8 +6,7 @@
 #ifndef __USER_CONFIG_MANAGEMENT_H__
 #define __USER_CONFIG_MANAGEMENT_H__
 
-#include "../glob.h"  /* FIXME */
-#include "../ksmbd_server.h" /* FIXME */
+#include "../glob.h"
 
 struct ksmbd_user {
        unsigned short          flags;
index d9f6dbde850a3241a0610327de1482def3bfdaec..afcdf76a3851c0e7a77fd048d1208de3aeab2f5d 100644 (file)
@@ -14,7 +14,6 @@
 #include "../transport_ipc.h"
 #include "../connection.h"
 #include "../buffer_pool.h"
-#include "../ksmbd_server.h" /* FIXME */
 #include "../vfs_cache.h"
 
 static struct ksmbd_ida *session_ida;
index a70d311a29dcebdcd6ed339e5cdb0ce1cb3fea67..3670dcc9ba0353d65eb5ec551833400159166be3 100644 (file)
@@ -102,8 +102,6 @@ static inline int check_conn_state(struct ksmbd_work *work)
        return 0;
 }
 
-/* @FIXME what a mess... god help. */
-
 #define TCP_HANDLER_CONTINUE   0
 #define TCP_HANDLER_ABORT      1
 
index f7560b68b820f59f581ec235d856c6fa4cf60eb3..7eb6d98656c78750469395bd43edda84d5ee9a80 100644 (file)
@@ -8,7 +8,6 @@
 #include "server.h"
 #include "misc.h"
 #include "smbstatus.h"
-/* @FIXME */
 #include "connection.h"
 #include "ksmbd_work.h"
 #include "mgmt/user_session.h"
index b91fa265f85d64a2732473fc5fdac7ff5a33de18..c49e46fda9b18e3b7d3cea3afb72b0fc4a8c687f 100644 (file)
@@ -28,9 +28,6 @@
 #include "connection.h"
 #include "transport_tcp.h"
 
-/* @FIXME fix this code */
-extern int get_protocol_idx(char *str);
-
 #define IPC_WAIT_TIMEOUT       (2 * HZ)
 
 #define IPC_MSG_HASH_BITS      3
index 68c0030278112544eb76b8f828825b15614ca3cf..6ed7cbea727e9de4211834d4b5bc893eebac35c3 100644 (file)
@@ -7,7 +7,6 @@
 #define __KSMBD_TRANSPORT_IPC_H__
 
 #include <linux/wait.h>
-#include "ksmbd_server.h"  /* FIXME */
 
 #define KSMBD_IPC_MAX_PAYLOAD  4096
 
index 8d8c4e373308a7bf8c150fbb3465f60c99a0fb3c..af92fab5b7ae1a591f4d6577a47a373e1dab8881 100644 (file)
@@ -8,18 +8,14 @@
 #include <linux/slab.h>
 #include <linux/vmalloc.h>
 
-/* @FIXME */
 #include "glob.h"
 #include "vfs_cache.h"
 #include "buffer_pool.h"
-
 #include "oplock.h"
 #include "vfs.h"
 #include "connection.h"
 #include "mgmt/tree_connect.h"
 #include "mgmt/user_session.h"
-
-/* @FIXME */
 #include "smb_common.h"
 
 #define S_DEL_PENDING                  1