Skip to content

Commit bba91dd

Browse files
hiss2018bostrovs
authored andcommitted
xen: remove redundant initialization of variable ret
After commit 9f51c05 ("pvcalls-front: Avoid get_free_pages(GFP_KERNEL) under spinlock"), the variable ret is being initialized with '-ENOMEM' that is meaningless. So remove it. Signed-off-by: Jing Xiangfeng <jingxiangfeng@huawei.com> Link: https://lore.kernel.org/r/20200919031702.32192-1-jingxiangfeng@huawei.com Reviewed-by: Juergen Gross <jgross@suse.com> Signed-off-by: Boris Ostrovsky <boris.ostrovsky@oracle.com>
1 parent d6bbc2f commit bba91dd

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

drivers/xen/pvcalls-front.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -371,7 +371,7 @@ static int alloc_active_ring(struct sock_mapping *map)
371371
static int create_active(struct sock_mapping *map, evtchn_port_t *evtchn)
372372
{
373373
void *bytes;
374-
int ret = -ENOMEM, irq = -1, i;
374+
int ret, irq = -1, i;
375375

376376
*evtchn = 0;
377377
init_waitqueue_head(&map->active.inflight_conn_req);

0 commit comments

Comments
 (0)