This code is there not for performance
Posted Feb 12, 2008 7:32 UTC (Tue) by
khim (subscriber, #9252)
In reply to:
vmsplice(): the making of a local root exploit by dw
Parent article:
vmsplice(): the making of a local root exploit
It's easy to say in userspace code: we'll just never use structures as big as 2GiB or larger - then we can safely use signed offsets. Of you can use 64bit offsets if you want 4GB so badly. The problem with kernel is that both solutions are inadequate: 64bit offsets will require full-sized locking on many architectures - and that's sometimes can cost you 100-150% slowdown (or even more in rare cases), 2GB limit will make the system unusable (ask HURD guys who had such limit for partition size few years ago). Thus kernel code is full is strange arithmetic where you try to calculate something in range of terabytes (think disk) with just 32bit integers. Of course it's not "clean and easy to read" but it's necessary if you want production kernel and not a toy.
(
Log in to post comments)