Commit bd707f17 authored by YueHaibing's avatar YueHaibing Committed by David S. Miller

strparser: remove redundant variable 'rd_desc'

Variable 'rd_desc' is being assigned but never used,
so can be removed.

fix this clang warning:
net/strparser/strparser.c:411:20: warning: variable ‘rd_desc’ set but not used [-Wunused-but-set-variable]
Signed-off-by: default avatarYueHaibing <yuehaibing@huawei.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 1296ee8f
...@@ -408,8 +408,6 @@ EXPORT_SYMBOL_GPL(strp_data_ready); ...@@ -408,8 +408,6 @@ EXPORT_SYMBOL_GPL(strp_data_ready);
static void do_strp_work(struct strparser *strp) static void do_strp_work(struct strparser *strp)
{ {
read_descriptor_t rd_desc;
/* We need the read lock to synchronize with strp_data_ready. We /* We need the read lock to synchronize with strp_data_ready. We
* need the socket lock for calling strp_read_sock. * need the socket lock for calling strp_read_sock.
*/ */
...@@ -421,8 +419,6 @@ static void do_strp_work(struct strparser *strp) ...@@ -421,8 +419,6 @@ static void do_strp_work(struct strparser *strp)
if (strp->paused) if (strp->paused)
goto out; goto out;
rd_desc.arg.data = strp;
if (strp_read_sock(strp) == -ENOMEM) if (strp_read_sock(strp) == -ENOMEM)
queue_work(strp_wq, &strp->work); queue_work(strp_wq, &strp->work);
......
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