On Wed, Mar 30, 2011 at 01:55:36PM -0400, Stefan Berger wrote: > This patch provides ACPI support for the TPM device. It probes for the TPM > device and only if a TPM device is found then the TPM's SSDT and TCPA table > are created. This patch also connects them to the RSDT. [...] > // Space to reserve in high-memory for tables > -#define CONFIG_MAX_HIGHTABLE (64*1024) > +#if CONFIG_TCGBIOS > +# define CONFIG_MAX_HIGHTABLE (96*1024) > +#else > +# define CONFIG_MAX_HIGHTABLE (64*1024) > +#endif
I'm a bit confused on patch ordering - it seems CONFIG_TCGBIOS is defined in patch 4 but used in patch 2. Also, I'd prefer to avoid ifdefs - just up the size to 96 always, or do something like: #define CONFIG_MAX_HIGHTABLE ((64*1024) + CONFIG_TCGBIOS*(32*1024)) -Kevin