lists.openwall.net | lists / announce owl-users owl-dev john-users john-dev passwdqc-users yescrypt popa3d-users / oss-security kernel-hardening musl sabotage tlsify passwords / crypt-dev xvendor / Bugtraq Full-Disclosure linux-kernel linux-netdev linux-ext4 linux-hardening PHC | |
Open Source and information security mailing list archives
| ||
|
Date: Tue, 10 Nov 2009 08:23:40 +0000 From: Jesse Barnes <jbarnes@...tuousgeek.org> To: Yinghai Lu <yinghai@...nel.org> Cc: Ivan Kokshaysky <ink@...assic.park.msu.ru>, Linus Torvalds <torvalds@...ux-foundation.org>, Ingo Molnar <mingo@...e.hu>, Matthew Wilcox <matthew@....cx>, "linux-pci@...r.kernel.org" <linux-pci@...r.kernel.org>, "linux-kernel@...r.kernel.org" <linux-kernel@...r.kernel.org> Subject: Re: pci_find_parent_resource patch I don't remember seeing it, is it for 2.6.32? Jesse On Mon, 09 Nov 2009 12:04:32 -0800 Yinghai Lu <yinghai@...nel.org> wrote: > it seems this patch from Linus get lost ? > > ----------------------------------------------------- > > > > from Linus > > --- > drivers/pci/pci.c | 8 ++++++-- > 1 file changed, 6 insertions(+), 2 deletions(-) > > Index: linux-2.6/drivers/pci/pci.c > =================================================================== > --- linux-2.6.orig/drivers/pci/pci.c > +++ linux-2.6/drivers/pci/pci.c > @@ -382,8 +382,12 @@ pci_find_parent_resource(const struct pc > continue; /* Wrong type */ > if (!((res->flags ^ r->flags) & IORESOURCE_PREFETCH)) > return r; /* Exact match */ > - if ((res->flags & IORESOURCE_PREFETCH) && !(r->flags > & IORESOURCE_PREFETCH)) > - best = r; /* Approximating > prefetchable by non-prefetchable */ > + /* We can't insert a non-prefetch resource inside a > prefetchable parent .. */ > + if (r->flags & IORESOURCE_PREFETCH) > + continue; > + /* .. but we can put a prefetchable resource inside > a non-prefetchable one */ > + if (!best) > + best = r; > } > return best; > } > -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@...r.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists