From mboxrd@z Thu Jan 1 00:00:00 1970 From: Rusty Russell Subject: Re: [PATCH v3 10/16] s390: add pci_iomap_range Date: Wed, 21 Jan 2015 11:13:14 +1030 Message-ID: <87fvb5arq5.fsf@rustcorp.com.au> References: <1421256142-11512-1-git-send-email-mst@redhat.com> <1421256142-11512-11-git-send-email-mst@redhat.com> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Return-path: In-Reply-To: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: virtualization-bounces@lists.linux-foundation.org Errors-To: virtualization-bounces@lists.linux-foundation.org To: Sebastian Ott , "Michael S. Tsirkin" Cc: linux-s390@vger.kernel.org, linux-pci@vger.kernel.org, Heiko Carstens , linux-kernel@vger.kernel.org, virtualization@lists.linux-foundation.org, Bjorn Helgaas , linux390@de.ibm.com, Martin Schwidefsky , Gerald Schaefer List-Id: virtualization@lists.linuxfoundation.org Sebastian Ott writes: > On Wed, 14 Jan 2015, Michael S. Tsirkin wrote: >> } >> -EXPORT_SYMBOL_GPL(pci_iomap); >> +EXPORT_SYMBOL_GPL(pci_iomap_range); >> + >> +void __iomem *pci_iomap(struct pci_dev *dev, int bar, unsigned long maxlen) >> +{ >> + return pci_iomap_range(dev, bar, 0, maxlen); >> +} >> +EXPORT_SYMBOL(pci_iomap); > > As discussed earlier, could you please leave that as EXPORT_SYMBOL_GPL. > If there's a reason to have these interfaces as EXPORT_SYMBOL, we could > change all of them in an extra patch. > > With this change integrated you can add > Acked-by: Sebastian Ott OK, I've gone back and rebased virtio-next to fix this (I don't really want to think too hard about the legal consequences of having a version which isn't EXPORT_SYMBOL_GPL). Thanks, Rusty.