Commit 1f8ce09b authored by YueHaibing's avatar YueHaibing Committed by Boris Ostrovsky

xen/pvcalls: remove set but not used variable 'intf'

Fixes gcc '-Wunused-but-set-variable' warning:

drivers/xen/pvcalls-back.c: In function 'pvcalls_sk_state_change':
drivers/xen/pvcalls-back.c:286:28: warning:
 variable 'intf' set but not used [-Wunused-but-set-variable]

It not used since e6587cdb ("pvcalls-back: set -ENOTCONN in
pvcalls_conn_back_read")
Signed-off-by: default avatarYueHaibing <yuehaibing@huawei.com>
Reviewed-by: default avatarBoris Ostrovsky <boris.ostrovsky@oracle.com>
Signed-off-by: default avatarBoris Ostrovsky <boris.ostrovsky@oracle.com>
parent e6587cdb
...@@ -283,12 +283,10 @@ static int pvcalls_back_socket(struct xenbus_device *dev, ...@@ -283,12 +283,10 @@ static int pvcalls_back_socket(struct xenbus_device *dev,
static void pvcalls_sk_state_change(struct sock *sock) static void pvcalls_sk_state_change(struct sock *sock)
{ {
struct sock_mapping *map = sock->sk_user_data; struct sock_mapping *map = sock->sk_user_data;
struct pvcalls_data_intf *intf;
if (map == NULL) if (map == NULL)
return; return;
intf = map->ring;
atomic_inc(&map->read); atomic_inc(&map->read);
notify_remote_via_irq(map->irq); notify_remote_via_irq(map->irq);
} }
......
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