On Mon, Oct 23, 2023 at 10:40:50AM +0200, Tadeusz Struk wrote: > Remove redundant goto in pci_alloc_p2pmem() > > Signed-off-by: Tadeusz Struk <tstruk@xxxxxxxxx> Thanks, applied to pci/p2pdma with Logan's reviewed-by for v6.7. Updated the subject line to: PCI/P2PDMA: Remove redundant goto so it matches the history. > --- > drivers/pci/p2pdma.c | 1 - > 1 file changed, 1 deletion(-) > > diff --git a/drivers/pci/p2pdma.c b/drivers/pci/p2pdma.c > index fa7370f9561a..a7776315996c 100644 > --- a/drivers/pci/p2pdma.c > +++ b/drivers/pci/p2pdma.c > @@ -837,7 +837,6 @@ void *pci_alloc_p2pmem(struct pci_dev *pdev, size_t size) > if (unlikely(!percpu_ref_tryget_live_rcu(ref))) { > gen_pool_free(p2pdma->pool, (unsigned long) ret, size); > ret = NULL; > - goto out; > } > out: > rcu_read_unlock(); > -- > 2.41.0