mirror of
				https://github.com/torvalds/linux.git
				synced 2025-11-04 02:30:34 +02:00 
			
		
		
		
	virtio_ring: fix num_free handling in error case
The vq->vq.num_free hasn't been changed when error happens,
so it shouldn't be changed when handling the error.
Fixes: 780bc7903a ("virtio_ring: Support DMA APIs")
Cc: Andy Lutomirski <luto@kernel.org>
Cc: Michael S. Tsirkin <mst@redhat.com>
Cc: stable@vger.kernel.org
Signed-off-by: Tiwei Bie <tiwei.bie@intel.com>
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
			
			
This commit is contained in:
		
							parent
							
								
									4a3928c6f8
								
							
						
					
					
						commit
						e82df67023
					
				
					 1 changed files with 0 additions and 2 deletions
				
			
		| 
						 | 
					@ -428,8 +428,6 @@ static inline int virtqueue_add(struct virtqueue *_vq,
 | 
				
			||||||
		i = virtio16_to_cpu(_vq->vdev, vq->vring.desc[i].next);
 | 
							i = virtio16_to_cpu(_vq->vdev, vq->vring.desc[i].next);
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	vq->vq.num_free += total_sg;
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
	if (indirect)
 | 
						if (indirect)
 | 
				
			||||||
		kfree(desc);
 | 
							kfree(desc);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
		Reference in a new issue