Lines Matching refs:new
199 static int setup_APIC_mce(int reserved, int new) in setup_APIC_mce() argument
201 if (reserved < 0 && !setup_APIC_eilvt(new, THRESHOLD_APIC_VECTOR, in setup_APIC_mce()
203 return new; in setup_APIC_mce()
215 int offset = -1, new; in mce_amd_feature_init() local
254 new = (high & MASK_LVTOFF_HI) >> 20; in mce_amd_feature_init()
255 offset = setup_APIC_mce(offset, new); in mce_amd_feature_init()
257 if ((offset == new) && in mce_amd_feature_init()
357 unsigned long new; in SHOW_FIELDS() local
362 if (kstrtoul(buf, 0, &new) < 0) in SHOW_FIELDS()
365 b->interrupt_enable = !!new; in SHOW_FIELDS()
379 unsigned long new; in store_threshold_limit() local
381 if (kstrtoul(buf, 0, &new) < 0) in store_threshold_limit()
384 if (new > THRESHOLD_MAX) in store_threshold_limit()
385 new = THRESHOLD_MAX; in store_threshold_limit()
386 if (new < 1) in store_threshold_limit()
387 new = 1; in store_threshold_limit()
391 b->threshold_limit = new; in store_threshold_limit()