Messages in this thread |  | | Date | Mon, 2 Jul 2001 18:22:17 -0500 | From | Timur Tabi <> | Subject | pte_val(*pte) as lvalue |
| |
In my driver, I have this code:
unsigned long p = pte_val(*pte);
[set some bits in "p"]
pte_val(*pte) = p;
This works fine in 2.2, and 2.4 when PAE support is disabled. When PAE support is enabled, it doesn't work, because the pte_val macro can no longer be an lvalue.
What is the accepted way to assign an integer to a pte that works in 2.2 and 2.4?
-- Timur Tabi - ttabi@interactivesi.com Interactive Silicon - http://www.interactivesi.com
- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
|  |