diff options
author | Al Viro <viro@zeniv.linux.org.uk> | 2011-06-21 08:51:28 -0400 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2011-07-20 01:43:39 -0400 |
commit | 7c97c200e2c5aa8b1067bebb99df0a7c2e12ebf3 (patch) | |
tree | bc486a32cb322a58730be30f5c61d272e3fee54f /fs/cifs | |
parent | beefebf1aa611242e022e71bae87034f415d3314 (diff) | |
download | linux-3.10-7c97c200e2c5aa8b1067bebb99df0a7c2e12ebf3.tar.gz linux-3.10-7c97c200e2c5aa8b1067bebb99df0a7c2e12ebf3.tar.bz2 linux-3.10-7c97c200e2c5aa8b1067bebb99df0a7c2e12ebf3.zip |
cifs: fix the type of cifs_demultiplex_thread()
... and get rid of a bogus typecast, while we are at it; it's not
just that we want a function returning int and not void, but cast
to pointer to function taking void * and returning void would be
(void (*)(void *)) and not (void *)(void *), TYVM...
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'fs/cifs')
-rw-r--r-- | fs/cifs/connect.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/fs/cifs/connect.c b/fs/cifs/connect.c index ccc1afa0bf3..e66297bad41 100644 --- a/fs/cifs/connect.c +++ b/fs/cifs/connect.c @@ -320,9 +320,10 @@ requeue_echo: } static int -cifs_demultiplex_thread(struct TCP_Server_Info *server) +cifs_demultiplex_thread(void *p) { int length; + struct TCP_Server_Info *server = p; unsigned int pdu_length, total_read; struct smb_hdr *smb_buffer = NULL; struct smb_hdr *bigbuf = NULL; @@ -1791,7 +1792,7 @@ cifs_get_tcp_session(struct smb_vol *volume_info) * this will succeed. No need for try_module_get(). */ __module_get(THIS_MODULE); - tcp_ses->tsk = kthread_run((void *)(void *)cifs_demultiplex_thread, + tcp_ses->tsk = kthread_run(cifs_demultiplex_thread, tcp_ses, "cifsd"); if (IS_ERR(tcp_ses->tsk)) { rc = PTR_ERR(tcp_ses->tsk); |