10d0aa3c0a
Commit bdc807871d
broke the build
for this config because the sim_defconfig selects CONFIG_HZ=250
but include/asm-ia64/param.h has an ifdef for the simulator to
force HZ to 32. So we ended up with a kernel/timeconst.h set
for HZ=250 ... which then failed the check for the right HZ
value and died with:
Drop the #ifdef magic from param.h and make force CONFIG_HZ=32
directly for the simulator.
Signed-off-by: Tony Luck <tony.luck@intel.com>
33 lines
707 B
C
33 lines
707 B
C
#ifndef _ASM_IA64_PARAM_H
|
|
#define _ASM_IA64_PARAM_H
|
|
|
|
/*
|
|
* Fundamental kernel parameters.
|
|
*
|
|
* Based on <asm-i386/param.h>.
|
|
*
|
|
* Modified 1998, 1999, 2002-2003
|
|
* David Mosberger-Tang <davidm@hpl.hp.com>, Hewlett-Packard Co
|
|
*/
|
|
|
|
#define EXEC_PAGESIZE 65536
|
|
|
|
#ifndef NOGROUP
|
|
# define NOGROUP (-1)
|
|
#endif
|
|
|
|
#define MAXHOSTNAMELEN 64 /* max length of hostname */
|
|
|
|
#ifdef __KERNEL__
|
|
# define HZ CONFIG_HZ
|
|
# define USER_HZ HZ
|
|
# define CLOCKS_PER_SEC HZ /* frequency at which times() counts */
|
|
#else
|
|
/*
|
|
* Technically, this is wrong, but some old apps still refer to it. The proper way to
|
|
* get the HZ value is via sysconf(_SC_CLK_TCK).
|
|
*/
|
|
# define HZ 1024
|
|
#endif
|
|
|
|
#endif /* _ASM_IA64_PARAM_H */
|