|
From: Jan-Benedict G. <jb...@us...> - 2004-09-30 20:17:53
|
Update of /cvsroot/linux-vax/kernel-2.5/include/asm-vax In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv12756 Modified Files: param.h Log Message: - Add a comment to HZ that 100 is *required* to keep compatibility with all the hardwired machines (seems most machines that we developers have access to are hardwired, though...). - Next patch will be to set a proper value for the NICR. Index: param.h =================================================================== RCS file: /cvsroot/linux-vax/kernel-2.5/include/asm-vax/param.h,v retrieving revision 1.4 retrieving revision 1.5 diff -u -d -r1.4 -r1.5 --- param.h 29 Jan 2003 00:09:25 -0000 1.4 +++ param.h 30 Sep 2004 20:17:44 -0000 1.5 @@ -1,9 +1,10 @@ #ifndef _VAX_PARAM_H #define _VAX_PARAM_H -/* FIXME: check this value */ #ifdef __KERNEL__ -#define HZ 100 +#define HZ 100 /* Actually, some VAX CPUs are hardwired + to trigger interrupts at 10ms, so + HZ==100 is mandatory */ #define USER_HZ 100 #define CLOCKS_PER_SEC 100 /* frequency at which times() counts */ #endif |