lkml.org 
[lkml]   [2009]   [Jan]   [12]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
/
SubjectRe: [git pull] x86 fixes
From
Date
On Mon, 2009-01-12 at 21:52 +0100, Ingo Molnar wrote:
> * Linus Torvalds <torvalds@linux-foundation.org> wrote:

> +static inline int is_new_memtype_allowed(unsigned long flags,
> + unsigned long new_flags)
> +{
> + /*
> + * Certain new memtypes are not allowed with certain
> + * requested memtype:
> + * - request is uncached, return cannot be write-back
> + * - request is write-combine, return cannot be write-back
> + */
> + if ((flags == _PAGE_CACHE_UC_MINUS &&
> + new_flags == _PAGE_CACHE_WB) ||
> + (flags == _PAGE_CACHE_WC &&
> + new_flags == _PAGE_CACHE_WB)) {
> + return 0;
> + }

if ((flags == _PAGE_CACHE_UC_MINUS || flags == _PAGE_CACHE_WC) &&
(new_flags == _PAGE_CACHE_WB))

might be a bit neater perhaps.

Harvey



\
 
 \ /
  Last update: 2009-01-12 22:07    [W:0.059 / U:0.624 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site