linux/include/asm-m68k
Andrea Righi 27ac792ca0 PAGE_ALIGN(): correctly handle 64-bit values on 32-bit architectures
On 32-bit architectures PAGE_ALIGN() truncates 64-bit values to the 32-bit
boundary. For example:

	u64 val = PAGE_ALIGN(size);

always returns a value < 4GB even if size is greater than 4GB.

The problem resides in PAGE_MASK definition (from include/asm-x86/page.h for
example):

#define PAGE_SHIFT      12
#define PAGE_SIZE       (_AC(1,UL) << PAGE_SHIFT)
#define PAGE_MASK       (~(PAGE_SIZE-1))
...
#define PAGE_ALIGN(addr)       (((addr)+PAGE_SIZE-1)&PAGE_MASK)

The "~" is performed on a 32-bit value, so everything in "and" with
PAGE_MASK greater than 4GB will be truncated to the 32-bit boundary.
Using the ALIGN() macro seems to be the right way, because it uses
typeof(addr) for the mask.

Also move the PAGE_ALIGN() definitions out of include/asm-*/page.h in
include/linux/mm.h.

See also lkml discussion: http://lkml.org/lkml/2008/6/11/237

[akpm@linux-foundation.org: fix drivers/media/video/uvc/uvc_queue.c]
[akpm@linux-foundation.org: fix v850]
[akpm@linux-foundation.org: fix powerpc]
[akpm@linux-foundation.org: fix arm]
[akpm@linux-foundation.org: fix mips]
[akpm@linux-foundation.org: fix drivers/media/video/pvrusb2/pvrusb2-dvb.c]
[akpm@linux-foundation.org: fix drivers/mtd/maps/uclinux.c]
[akpm@linux-foundation.org: fix powerpc]
Signed-off-by: Andrea Righi <righi.andrea@gmail.com>
Cc: <linux-arch@vger.kernel.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
2008-07-24 10:47:21 -07:00
..
a.out-core.h
a.out.h
adb_iop.h
amigahw.h m68k/amiga/: possible cleanups 2008-07-20 17:24:39 -07:00
amigaints.h m68k/amiga/: possible cleanups 2008-07-20 17:24:39 -07:00
amigayle.h
amipcmcia.h
apollodma.h m68k: remove CVS keywords 2008-07-20 17:24:38 -07:00
apollohw.h
atafd.h
atafdreg.h
atari_joystick.h
atari_stdma.h
atari_stram.h
atarihw.h
atariints.h
atarikb.h
atomic.h
auxvec.h
bitops.h m68k: Add ext2_find_{first,next}_bit() for ext4 2008-06-12 18:05:39 -07:00
blinken.h
bootinfo.h
bug.h m68k: Make gcc aware that BUG() does not return 2008-05-18 13:28:48 -07:00
bugs.h
bvme6000hw.h
byteorder.h
cache.h
cachectl.h
cacheflush.h
checksum.h
contregs.h
cputime.h
current.h
delay.h
device.h
div64.h
dma-mapping.h
dma.h
dsp56k.h
dvma.h PAGE_ALIGN(): correctly handle 64-bit values on 32-bit architectures 2008-07-24 10:47:21 -07:00
elf.h
emergency-restart.h
entry.h
errno.h
fb.h
fbio.h
fcntl.h
floppy.h
fpu.h m68k: Allow no CPU/platform type for allnoconfig 2008-07-20 17:24:38 -07:00
futex.h
hardirq.h
hp300hw.h
hw_irq.h
hwtest.h
ide.h
idprom.h
intersil.h
io.h m68k: Prefix ISA type with ISA_TYPE_ 2008-05-18 13:28:50 -07:00
ioctl.h
ioctls.h
ipcbuf.h
irq_regs.h
irq.h m68k: Allow no CPU/platform type for allnoconfig 2008-07-20 17:24:38 -07:00
Kbuild
kdebug.h
kmap_types.h
kvm.h
linkage.h
local.h
mac_asc.h
mac_baboon.h m68k/mac/: possible cleanups 2008-07-20 17:24:39 -07:00
mac_iop.h
mac_mouse.h
mac_oss.h
mac_psc.h
mac_via.h m68k/mac/: possible cleanups 2008-07-20 17:24:39 -07:00
machdep.h
machines.h m68k/sun3/: possible cleanups 2008-07-20 17:24:39 -07:00
machw.h m68k: remove old mac_esp cruft 2008-05-05 12:38:50 -07:00
macintosh.h m68k/mac/: possible cleanups 2008-07-20 17:24:39 -07:00
macints.h
math-emu.h
mc146818rtc.h
md.h m68k: remove CVS keywords 2008-07-20 17:24:38 -07:00
mman.h
mmu_context.h
mmu.h
mmzone.h
module.h
motorola_pgalloc.h
motorola_pgtable.h
movs.h
msgbuf.h
mutex.h
mvme16xhw.h
mvme147hw.h
namei.h
nubus.h
openprom.h m68k: remove CVS keywords 2008-07-20 17:24:38 -07:00
oplib.h m68k: remove AP1000 code 2008-07-20 17:24:38 -07:00
page_offset.h
page.h PAGE_ALIGN(): correctly handle 64-bit values on 32-bit architectures 2008-07-24 10:47:21 -07:00
param.h
parport.h
pci.h
percpu.h
pgalloc.h
pgtable.h
poll.h
posix_types.h
processor.h
ptrace.h
q40_master.h
q40ints.h
raw_io.h
resource.h
rtc.h
sbus.h m68k: remove stale ARCH_SUN4 #define 2008-07-20 17:24:39 -07:00
scatterlist.h
sections.h
segment.h
semaphore.h
sembuf.h
serial.h
setup.h m68k: export m68k_mmutype 2008-05-18 13:28:50 -07:00
shm.h
shmbuf.h
shmparam.h
sigcontext.h
siginfo.h
signal.h
socket.h
sockios.h
spinlock.h
stat.h
statfs.h
string.h
sun3_pgalloc.h
sun3_pgtable.h
sun3-head.h m68k: remove CVS keywords 2008-07-20 17:24:38 -07:00
sun3ints.h
sun3mmu.h
sun3x.h
sun3xflop.h
sun3xprom.h
suspend.h
system.h
termbits.h
termios.h
thread_info.h
timex.h
tlb.h
tlbflush.h m68k: Allow no CPU/platform type for allnoconfig 2008-07-20 17:24:38 -07:00
topology.h
traps.h
types.h m68k: types: use <asm-generic/int-*.h> for the m68k architecture 2008-05-02 16:18:28 -07:00
uaccess.h m68k: Convert access_ok() to an inline function 2008-05-18 13:28:48 -07:00
ucontext.h
unaligned.h
unistd.h
user.h
virtconvert.h
xor.h
zorro.h