Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1244622
| From | Lukasz Odzioba <lukasz.odzioba@intel.com> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | [PATCH 1/1] Bumps limit of maximum core ID from 32 to 128. |
| Date | 2015-10-12 14:00 +0200 |
| Message-ID | <qiJVM-6sh-15@gated-at.bofh.it> (permalink) |
| Organization | linux.* mail to news gateway |
A new limit selected arbitrarily as power of two greater than required minimum for Xeon Phi processor. Currently driver is not able to handle cores with core ID greater than 32. Such attempt ends up with the following error in dmesg: coretemp coretemp.0: Adding Core XXX failed Signed-off-by: Lukasz Odzioba <lukasz.odzioba@intel.com> --- drivers/hwmon/coretemp.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/drivers/hwmon/coretemp.c b/drivers/hwmon/coretemp.c index 3e03379..6a27eb2 100644 --- a/drivers/hwmon/coretemp.c +++ b/drivers/hwmon/coretemp.c @@ -52,7 +52,7 @@ module_param_named(tjmax, force_tjmax, int, 0444); MODULE_PARM_DESC(tjmax, "TjMax value in degrees Celsius"); #define BASE_SYSFS_ATTR_NO 2 /* Sysfs Base attr no for coretemp */ -#define NUM_REAL_CORES 32 /* Number of Real cores per cpu */ +#define NUM_REAL_CORES 128 /* Number of Real cores per cpu */ #define CORETEMP_NAME_LENGTH 19 /* String Length of attrs */ #define MAX_CORE_ATTRS 4 /* Maximum no of basic attrs */ #define TOTAL_ATTRS (MAX_CORE_ATTRS + 1) -- 1.7.1 -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
Back to linux.kernel | Previous | Next — Next in thread | Find similar | Unroll thread
[PATCH 1/1] Bumps limit of maximum core ID from 32 to 128. Lukasz Odzioba <lukasz.odzioba@intel.com> - 2015-10-12 14:00 +0200
Re: [PATCH 1/1] Bumps limit of maximum core ID from 32 to 128. Guenter Roeck <linux@roeck-us.net> - 2015-10-13 22:40 +0200
Re: [lm-sensors] [PATCH 1/1] Bumps limit of maximum core ID from 32 to 128. Phil Pokorny <ppokorny@penguincomputing.com> - 2015-10-13 23:10 +0200
Re: [lm-sensors] [PATCH 1/1] Bumps limit of maximum core ID from 32 to 128. Guenter Roeck <linux@roeck-us.net> - 2015-10-13 23:30 +0200
RE: [PATCH 1/1] Bumps limit of maximum core ID from 32 to 128. "Odzioba, Lukasz" <lukasz.odzioba@intel.com> - 2015-10-14 00:10 +0200
Re: [PATCH 1/1] Bumps limit of maximum core ID from 32 to 128. Guenter Roeck <linux@roeck-us.net> - 2015-10-14 00:30 +0200
RE: [PATCH 1/1] Bumps limit of maximum core ID from 32 to 128. "Odzioba, Lukasz" <lukasz.odzioba@intel.com> - 2015-10-14 00:50 +0200
Re: [PATCH 1/1] Bumps limit of maximum core ID from 32 to 128. Guenter Roeck <linux@roeck-us.net> - 2015-10-14 03:20 +0200
RE: [PATCH 1/1] Bumps limit of maximum core ID from 32 to 128. "Odzioba, Lukasz" <lukasz.odzioba@intel.com> - 2015-10-14 13:40 +0200
Re: [PATCH 1/1] Bumps limit of maximum core ID from 32 to 128. Guenter Roeck <linux@roeck-us.net> - 2015-10-14 16:10 +0200
RE: [PATCH 1/1] Bumps limit of maximum core ID from 32 to 128. "Odzioba, Lukasz" <lukasz.odzioba@intel.com> - 2015-10-16 00:10 +0200
csiph-web