From: Kenn H. <ke...@us...> - 2002-12-31 22:33:11
|
Update of /cvsroot/linux-vax/kernel-2.5/arch/vax In directory sc8-pr-cvs1:/tmp/cvs-serv7033 Modified Files: vmlinux.lds Log Message: Add jiffies symbol as alias for low 32 bits of jiffies_64 Index: vmlinux.lds =================================================================== RCS file: /cvsroot/linux-vax/kernel-2.5/arch/vax/vmlinux.lds,v retrieving revision 1.4 retrieving revision 1.5 diff -u -r1.4 -r1.5 --- vmlinux.lds 6 Jun 2002 00:12:24 -0000 1.4 +++ vmlinux.lds 31 Dec 2002 22:33:07 -0000 1.5 @@ -2,6 +2,13 @@ * Written for i386 by Martin Mares <mj...@at...> * Modified by Kenn Humborg <ke...@li...> */ + +/* As of 2.5.16, the jiffy counter is 64-bit and is called jiffies_64. + For backward-compatibility, a symbol 'jiffies' needs to be aliased + to the low 32-bits of jiffies_64 */ + +jiffies = jiffies_64; + SECTIONS { |