Searched refs:taint (Results 1 - 14 of 14) sorted by relevance

/linux-master/include/asm-generic/
H A Dbug.h16 #define BUGFLAG_TAINT(taint) ((taint) << 8)
27 void __warn(const char *file, int line, void *caller, unsigned taint,
91 void warn_slowpath_fmt(const char *file, const int line, unsigned taint,
97 #define __WARN_printf(taint, arg...) do { \
99 warn_slowpath_fmt(__FILE__, __LINE__, taint, arg); \
104 #define __WARN_printf(taint, arg...) do { \
107 __WARN_FLAGS(BUGFLAG_NO_CUT_HERE | BUGFLAG_TAINT(taint));\
139 #define WARN_TAINT(condition, taint, format...) ({ \
142 __WARN_printf(taint, forma
[all...]
/linux-master/tools/debugging/
H A Dkernel-chktaint26 taint=$1
38 taint=`cat $TAINTFILE`
41 if [ $taint -eq 0 ]; then
48 T=$taint
107 echo " * taint requested by userspace application (#6)"
187 echo " * auxiliary taint, defined for and used by distros (#16)"
207 echo "For a more detailed explanation of the various taint flags see"
210 echo "Raw taint value as int/string: $taint/'$out'"
/linux-master/drivers/gpu/drm/i915/
H A Di915_utils.c55 void add_taint_for_CI(struct drm_i915_private *i915, unsigned int taint) argument
58 taint, (void *)_RET_IP_);
62 __add_taint_for_CI(taint);
H A Di915_utils.h357 void add_taint_for_CI(struct drm_i915_private *i915, unsigned int taint);
358 static inline void __add_taint_for_CI(unsigned int taint) argument
363 * CI checks the taint state after every test and will reboot
366 add_taint(taint, LOCKDEP_STILL_OK);
/linux-master/arch/arm64/kernel/
H A Dcpufeature.c26 * may result in a TAINT_CPU_OUT_OF_SPEC kernel taint, a capability mismatch
1237 int taint = 0; local
1253 taint |= check_update_ftr_reg(SYS_ID_DFR0_EL1, cpu,
1255 taint |= check_update_ftr_reg(SYS_ID_DFR1_EL1, cpu,
1257 taint |= check_update_ftr_reg(SYS_ID_ISAR0_EL1, cpu,
1259 taint |= check_update_ftr_reg(SYS_ID_ISAR1_EL1, cpu,
1261 taint |= check_update_ftr_reg(SYS_ID_ISAR2_EL1, cpu,
1263 taint |= check_update_ftr_reg(SYS_ID_ISAR3_EL1, cpu,
1265 taint |= check_update_ftr_reg(SYS_ID_ISAR4_EL1, cpu,
1267 taint |
1314 int taint = 0; local
[all...]
/linux-master/kernel/
H A Dpanic.c501 * print_tainted - return a string to represent the kernel taint state.
503 * For individual taint flag meanings, see Documentation/admin-guide/sysctl/kernel.rst
543 * add_taint: add a taint flag if not already set.
553 pr_warn("Disabling lock debugging due to kernel taint\n");
668 void __warn(const char *file, int line, void *caller, unsigned taint, argument
705 add_taint(taint, LOCKDEP_STILL_OK);
710 void warn_slowpath_fmt(const char *file, int line, unsigned taint, argument
719 __warn(file, line, __builtin_return_address(0), taint,
727 __warn(file, line, __builtin_return_address(0), taint, NULL, &args);
/linux-master/drivers/block/aoe/
H A Daoecmd.c267 if (!t->taint) {
272 && (use_tainted || !t->taint)
652 if (t->taint) {
670 } else if (tsince_hr(f) < t->taint * rto(d)) {
671 /* reprobe slowly when taint is high */
703 n = t->taint++;
704 t->taint += t->taint * 2;
705 if (n > t->taint)
706 t->taint
[all...]
H A Daoe.h100 MAX_TAINT = 1000, /* cap on aoetgt taint */
150 int taint; /* how much we want to avoid this aoetgt */ member in struct:aoetgt
H A Daoeblk.c139 seq_printf(s, "\ttaint:%d\n", (*t)->taint);
/linux-master/tools/testing/selftests/hid/tests/
H A Dbase.py265 taint = taint_file.int_value
269 assert taint_file.int_value == taint
/linux-master/arch/x86/kernel/cpu/mce/
H A Dcore.c1270 int severity, i, taint = 0; local
1296 /* Set taint even when machine check was not enabled. */
1297 taint++;
1337 return taint;
1460 int worst = 0, order, no_way_out, kill_current_task, lmce, taint = 0; local
1541 taint = __mc_scan_banks(&m, regs, final, toclear, valid_banks, no_way_out, &worst);
1580 if (taint)
/linux-master/drivers/gpu/drm/i915/gt/
H A Dintel_reset.c1222 goto taint;
1241 goto taint;
1246 goto taint;
1254 taint:
1260 * We also want to go one step further and add a taint to the
/linux-master/arch/x86/kernel/cpu/
H A Dcommon.c1487 int arglen, taint = 0; local
1539 taint++;
1557 taint++;
1567 if (taint)
/linux-master/kernel/module/
H A Dmain.c977 __ATTR(taint, 0444, show_taint, NULL);
1101 pr_warn("%s: module uses symbols %s from proprietary module %s, inheriting taint.\n",
2009 * These calls taint the kernel depending certain module circumstances */

Completed in 179 milliseconds