Home
last modified time | relevance | path

Searched refs:taint (Results 1 – 24 of 24) sorted by relevance

/linux/include/asm-generic/
A Dbug.h16 #define BUGFLAG_TAINT(taint) ((taint) << 8) argument
86 void warn_slowpath_fmt(const char *file, const int line, unsigned taint,
89 #define __WARN_printf(taint, arg...) do { \ argument
91 warn_slowpath_fmt(__FILE__, __LINE__, taint, arg); \
97 #define __WARN_printf(taint, arg...) do { \ argument
100 __WARN_FLAGS(BUGFLAG_NO_CUT_HERE | BUGFLAG_TAINT(taint));\
116 void __warn(const char *file, int line, void *caller, unsigned taint,
137 #define WARN_TAINT(condition, taint, format...) ({ \ argument
140 __WARN_printf(taint, format); \
152 #define WARN_TAINT_ONCE(condition, taint, format...) \ argument
[all …]
/linux/tools/debugging/
A Dkernel-chktaint26 taint=$1
38 taint=`cat $TAINTFILE`
41 if [ $taint -eq 0 ]; then
48 T=$taint
201 echo "Raw taint value as int/string: $taint/'$out'"
/linux/arch/arm64/kernel/
A Dcpufeature.c1037 int taint = 0; in update_32bit_cpu_features() local
1095 taint |= check_update_ftr_reg(SYS_MVFR0_EL1, cpu, in update_32bit_cpu_features()
1097 taint |= check_update_ftr_reg(SYS_MVFR1_EL1, cpu, in update_32bit_cpu_features()
1099 taint |= check_update_ftr_reg(SYS_MVFR2_EL1, cpu, in update_32bit_cpu_features()
1102 return taint; in update_32bit_cpu_features()
1114 int taint = 0; in update_cpu_features() local
1121 taint |= check_update_ftr_reg(SYS_CTR_EL0, cpu, in update_cpu_features()
1129 taint |= check_update_ftr_reg(SYS_DCZID_EL0, cpu, in update_cpu_features()
1176 taint |= check_update_ftr_reg(SYS_ZCR_EL1, cpu, in update_cpu_features()
1192 taint |= check_update_ftr_reg(SYS_GMID_EL1, cpu, in update_cpu_features()
[all …]
/linux/drivers/gpu/drm/i915/
A Di915_utils.c52 void add_taint_for_CI(struct drm_i915_private *i915, unsigned int taint) in add_taint_for_CI() argument
55 taint, (void *)_RET_IP_); in add_taint_for_CI()
59 __add_taint_for_CI(taint); in add_taint_for_CI()
A Di915_utils.h437 void add_taint_for_CI(struct drm_i915_private *i915, unsigned int taint);
438 static inline void __add_taint_for_CI(unsigned int taint) in __add_taint_for_CI() argument
446 add_taint(taint, LOCKDEP_STILL_OK); in __add_taint_for_CI()
/linux/kernel/
A Dpanic.c574 void __warn(const char *file, int line, void *caller, unsigned taint, in __warn() argument
614 add_taint(taint, LOCKDEP_STILL_OK); in __warn()
618 void warn_slowpath_fmt(const char *file, int line, unsigned taint, in warn_slowpath_fmt() argument
626 __warn(file, line, __builtin_return_address(0), taint, in warn_slowpath_fmt()
633 __warn(file, line, __builtin_return_address(0), taint, NULL, &args); in warn_slowpath_fmt()
A Dmodule.c1203 __ATTR(taint, 0444, show_taint, NULL);
/linux/Documentation/admin-guide/
A Dtainted-kernels.rst12 Note the kernel will remain tainted even after you undo what caused the taint
66 a more details explanation of the various taint flags.
67 Raw taint value as int/string: 4609/'P W O '
73 a particular type of taint. It's best to leave that to the aforementioned
91 6 _/U 64 taint requested by userspace application
101 16 _/X 65536 auxiliary taint, defined for and used by distros
156 (Though some warnings may set more specific taint flags.)
172 16) ``X`` Auxiliary taint, defined for and used by Linux distributors.
A Dreporting-issues.rst134 * Ensure the kernel you just installed does not 'taint' itself when
494 Check 'taint' flag
500 The kernel marks itself with a 'taint' flag when something happens that might
505 install the latest mainline kernel; you will need to check the taint flag again
512 why the kernel also mentions the taint status when it reports an internal
556 question is the only reason for the taint. If the issue happens in an
925 Check 'taint' flag
928 *Ensure the kernel you just installed does not 'taint' itself when
931 As outlined above in more detail already: the kernel sets a 'taint' flag when
A Dbug-hunting.rst61 "(...)", where the taint flags are described in
A Dkernel-parameters.txt1421 Warning: use of this parameter will taint the kernel
3724 extra details on the taint flags that users can pick
/linux/drivers/block/aoe/
A Daoecmd.c268 if (!t->taint) { in newframe()
273 && (use_tainted || !t->taint) in newframe()
653 if (t->taint) { in rexmit_deferred()
704 n = t->taint++; in scorn()
705 t->taint += t->taint * 2; in scorn()
706 if (n > t->taint) in scorn()
707 t->taint = n; in scorn()
708 if (t->taint > MAX_TAINT) in scorn()
709 t->taint = MAX_TAINT; in scorn()
1160 if (t->taint > 0 in ktiocomplete()
[all …]
A Daoe.h150 int taint; /* how much we want to avoid this aoetgt */ member
A Daoeblk.c140 seq_printf(s, "\ttaint:%d\n", (*t)->taint); in aoedisk_debugfs_show()
/linux/Documentation/ABI/testing/
A Dsysfs-module51 What: /sys/module/*/taint
55 Description: Module taint flags:
/linux/Documentation/translations/zh_TW/admin-guide/
A Dtainted-kernels.rst69 a more details explanation of the various taint flags.
70 Raw taint value as int/string: 4609/'P W O '
A Dreporting-issues.rst381taint)」標誌標記自己。如果您的內核受到汙染,那麼您面臨的可能是這樣的錯誤。
/linux/Documentation/translations/zh_CN/admin-guide/
A Dtainted-kernels.rst66 a more details explanation of the various taint flags.
67 Raw taint value as int/string: 4609/'P W O '
A Dreporting-issues.rst380taint)”标志标记自己。如果您的内核受到污染,那么您面临的可能是这样的错误。
/linux/drivers/vfio/
A DKconfig40 in an unsupportable kernel and will therefore taint the kernel.
/linux/drivers/gpu/drm/i915/gt/
A Dintel_reset.c1123 goto taint; in intel_gt_reset()
1144 goto taint; in intel_gt_reset()
1149 goto taint; in intel_gt_reset()
1157 taint: in intel_gt_reset()
/linux/drivers/staging/
A DKconfig13 Using any of these drivers will taint your kernel which might
/linux/Documentation/admin-guide/sysctl/
A Dkernel.rst1358 64 `(U)` taint requested by userspace application
1368 65536 `(X)` Auxiliary taint, defined and used by for distros
/linux/init/
A DKconfig2098 --force). Forced module loading sets the 'F' (forced) taint flag and
2179 key. Without this, such modules will simply taint the kernel.

Completed in 78 milliseconds