K 10 svn:author V 6 marcel K 8 svn:date V 27 2011-03-14T23:49:41.907981Z K 7 svn:log V 344 Don't define IA64_PBVM_PAGE_SIZE as 1U shifted to the left by some amount. The compiler seems to assume it's a 32-bit integral and rounding to the page size using the standard expression (((u_long)(x) + mask) & ~mask), results in a 32-bit value. Dropping the 'U' suffix is enough to have the compiler treat the expression as a 64-bit integral. END