From: Martin Habets <[EMAIL PROTECTED]>
Date: Wed, 13 Jun 2007 00:16:00 +0100

> @@ -2137,11 +2137,11 @@ static unsigned long srmmu_pte_to_pgoff(
>  
>  static pgprot_t srmmu_pgprot_noncached(pgprot_t prot)
>  {
> -     prot &= ~__pgprot(SRMMU_CACHE);
> +     pgprot_val(prot) &= ~SRMMU_CACHE;
>  
>       return prot;
>  }

This patch doesn't apply cleanly, and it's because of this hunk.

The patch hunk says that there should be "11" lines in both
the before and after, but there are only 7.

Please try to apply the patches your submit unless you
can ensure that all of your patches are perfect without
checking :-)

Also, I wouldn't run a kernel with strict MM checking on, it's
at best a compile time check and it causes the code output a lot,
PTE's and PGD's etc. get passed on the stack when given as
parameters to functions instead of in registers, and many
optimizations get disabled in the compiler because these
things are now structures instead of simple integers.

That's why it's off by default.
-
To unsubscribe from this list: send the line "unsubscribe sparclinux" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to