Commit c54ed23f authored by Amitoj Kaur Chawla's avatar Amitoj Kaur Chawla Committed by Greg Kroah-Hartman

staging: lustre: ptlrpc: pinger: Remove useless cast on void pointer

The semantic patch used to find this is:

@r@
expression x;
void* e;
type T;
identifier f;
@@

(
  *((T *)e)
|
  ((T *)x)[...]
|
  ((T *)x)->f
|
- (T *)
  e
)
Signed-off-by: default avatarAmitoj Kaur Chawla <amitoj1606@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 864ef621
...@@ -221,7 +221,7 @@ static void ptlrpc_pinger_process_import(struct obd_import *imp, ...@@ -221,7 +221,7 @@ static void ptlrpc_pinger_process_import(struct obd_import *imp,
static int ptlrpc_pinger_main(void *arg) static int ptlrpc_pinger_main(void *arg)
{ {
struct ptlrpc_thread *thread = (struct ptlrpc_thread *)arg; struct ptlrpc_thread *thread = arg;
/* Record that the thread is running */ /* Record that the thread is running */
thread_set_flags(thread, SVC_RUNNING); thread_set_flags(thread, SVC_RUNNING);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment