Home
last modified time | relevance | path

Searched refs:fmb (Results 1 – 2 of 2) sorted by relevance

/linux/arch/s390/pci/
H A Dpci.c176 if (zdev->fmb || sizeof(*zdev->fmb) < zdev->fmb_length) in zpci_fmb_enable_device()
179 zdev->fmb = kmem_cache_zalloc(zdev_fmb_cache, GFP_KERNEL); in zpci_fmb_enable_device()
180 if (!zdev->fmb) in zpci_fmb_enable_device()
182 WARN_ON((u64) zdev->fmb & 0xf); in zpci_fmb_enable_device()
197 fib.fmb_addr = virt_to_phys(zdev->fmb); in zpci_fmb_enable_device()
201 kmem_cache_free(zdev_fmb_cache, zdev->fmb); in zpci_fmb_enable_device()
202 zdev->fmb = NULL; in zpci_fmb_enable_device()
214 if (!zdev->fmb) in zpci_fmb_disable_device()
225 kmem_cache_free(zdev_fmb_cache, zdev->fmb); in zpci_fmb_disable_device()
226 zdev->fmb = NULL; in zpci_fmb_disable_device()
/linux/arch/s390/include/asm/
H A Dpci.h182 struct zpci_fmb *fmb; member