| /OK3568_Linux_fs/kernel/include/asm-generic/ |
| H A D | bug.h | 15 #define BUGFLAG_TAINT(taint) ((taint) << 8) argument 84 void warn_slowpath_fmt(const char *file, const int line, unsigned taint, 87 #define __WARN_printf(taint, arg...) do { \ argument 89 warn_slowpath_fmt(__FILE__, __LINE__, taint, arg); \ 95 #define __WARN_printf(taint, arg...) do { \ argument 98 __WARN_FLAGS(BUGFLAG_NO_CUT_HERE | BUGFLAG_TAINT(taint));\ 114 void __warn(const char *file, int line, void *caller, unsigned taint, 135 #define WARN_TAINT(condition, taint, format...) ({ \ argument 138 __WARN_printf(taint, format); \ 166 #define WARN_TAINT_ONCE(condition, taint, format...) ({ \ argument [all …]
|
| /OK3568_Linux_fs/kernel/tools/debugging/ |
| H A D | kernel-chktaint | 26 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'"
|
| /OK3568_Linux_fs/kernel/arch/arm64/kernel/ |
| H A D | cpufeature.c | 1036 int taint = 0; in update_32bit_cpu_features() local 1052 taint |= check_update_ftr_reg(SYS_ID_DFR0_EL1, cpu, in update_32bit_cpu_features() 1054 taint |= check_update_ftr_reg(SYS_ID_DFR1_EL1, cpu, in update_32bit_cpu_features() 1056 taint |= check_update_ftr_reg(SYS_ID_ISAR0_EL1, cpu, in update_32bit_cpu_features() 1058 taint |= check_update_ftr_reg(SYS_ID_ISAR1_EL1, cpu, in update_32bit_cpu_features() 1060 taint |= check_update_ftr_reg(SYS_ID_ISAR2_EL1, cpu, in update_32bit_cpu_features() 1062 taint |= check_update_ftr_reg(SYS_ID_ISAR3_EL1, cpu, in update_32bit_cpu_features() 1064 taint |= check_update_ftr_reg(SYS_ID_ISAR4_EL1, cpu, in update_32bit_cpu_features() 1066 taint |= check_update_ftr_reg(SYS_ID_ISAR5_EL1, cpu, in update_32bit_cpu_features() 1068 taint |= check_update_ftr_reg(SYS_ID_ISAR6_EL1, cpu, in update_32bit_cpu_features() [all …]
|
| /OK3568_Linux_fs/kernel/drivers/gpu/drm/i915/ |
| H A D | i915_utils.c | 52 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()
|
| H A D | i915_utils.h | 426 void add_taint_for_CI(struct drm_i915_private *i915, unsigned int taint); 427 static inline void __add_taint_for_CI(unsigned int taint) in __add_taint_for_CI() argument 435 add_taint(taint, LOCKDEP_STILL_OK); in __add_taint_for_CI()
|
| /OK3568_Linux_fs/kernel/kernel/ |
| H A D | panic.c | 576 void __warn(const char *file, int line, void *caller, unsigned taint, in __warn() argument 616 add_taint(taint, LOCKDEP_STILL_OK); in __warn() 620 void warn_slowpath_fmt(const char *file, int line, unsigned taint, in warn_slowpath_fmt() argument 628 __warn(file, line, __builtin_return_address(0), taint, in warn_slowpath_fmt() 635 __warn(file, line, __builtin_return_address(0), taint, NULL, &args); in warn_slowpath_fmt()
|
| /OK3568_Linux_fs/kernel/Documentation/admin-guide/ |
| H A D | tainted-kernels.rst | 12 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 143 (Though some warnings may set more specific taint flags.) 159 16) ``X`` Auxiliary taint, defined for and used by Linux distributors.
|
| /OK3568_Linux_fs/kernel/drivers/block/aoe/ |
| H A D | aoecmd.c | 268 if (!t->taint) { in newframe() 273 && (use_tainted || !t->taint) in newframe() 653 if (t->taint) { in rexmit_deferred() 671 } else if (tsince_hr(f) < t->taint * rto(d)) { 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() [all …]
|
| H A D | aoe.h | 150 int taint; /* how much we want to avoid this aoetgt */ member
|
| H A D | aoeblk.c | 141 seq_printf(s, "\ttaint:%d\n", (*t)->taint); in aoedisk_debugfs_show()
|
| /OK3568_Linux_fs/kernel/Documentation/ABI/testing/ |
| H A D | sysfs-module | 44 What: /sys/module/*/taint 48 Description: Module taint flags:
|
| /OK3568_Linux_fs/yocto/poky/bitbake/lib/bb/ |
| H A D | siggen.py | 269 taint = None 272 taint = taintf.read() 275 return taint 318 taint = str(uuid.uuid4()) 319 self.taints[tid] = "nostamp:" + taint 321 taint = self.read_taint(fn, task, dataCaches[mc].stamp[fn]) 322 if taint: 323 self.taints[tid] = taint 407 taint = self.read_taint(fn, task, referencestamp) 408 if taint: [all …]
|
| /OK3568_Linux_fs/yocto/meta-openembedded/meta-oe/recipes-devtools/perl/ |
| H A D | libdbi-perl_1.643.bb | 23 # test requires "-T" (taint) command line option 25 rm -rf ${B}/t/13taint.t
|
| /OK3568_Linux_fs/yocto/meta-openembedded/meta-perl/recipes-perl/libencode/ |
| H A D | libencode-perl_3.17.bb | 27 # Requires "-T" (taint) option on command line 28 rm -rf ${B}/t/taint.t
|
| /OK3568_Linux_fs/yocto/meta-openembedded/meta-perl/recipes-perl/libhtml/ |
| H A D | libhtml-tagset-perl_3.20.bb | 25 # requires "-T" (taint) command line option
|
| /OK3568_Linux_fs/yocto/poky/meta/recipes-devtools/perl/ |
| H A D | liberror-perl_0.17029.bb | 47 # test requires "-T" (taint) command line option
|
| H A D | liburi-perl_5.08.bb | 31 # these tests require "-T" (taint) command line option
|
| /OK3568_Linux_fs/yocto/meta-openembedded/meta-perl/recipes-perl/libcgi/ |
| H A D | libcgi-perl_4.54.bb | 27 # requires "-T" (taint) command line option
|
| /OK3568_Linux_fs/kernel/drivers/vfio/ |
| H A D | Kconfig | 41 in an unsupportable kernel and will therefore taint the kernel.
|
| /OK3568_Linux_fs/kernel/drivers/gpu/drm/i915/gt/ |
| H A D | intel_reset.c | 1054 goto taint; in intel_gt_reset() 1075 goto taint; in intel_gt_reset() 1080 goto taint; in intel_gt_reset() 1088 taint: in intel_gt_reset()
|
| /OK3568_Linux_fs/yocto/meta-openembedded/meta-perl/recipes-perl/libxml/ |
| H A D | libxml-libxml-perl_2.0134.bb | 59 # test requires "-T" (taint) command line option
|
| /OK3568_Linux_fs/kernel/drivers/staging/ |
| H A D | Kconfig | 13 Using any of these drivers will taint your kernel which might
|
| /OK3568_Linux_fs/yocto/meta-openembedded/meta-perl/recipes-perl/libtest/ |
| H A D | libtest-harness-perl_3.44.bb | 94 # these tests require "-T" (taint) option on command line
|
| /OK3568_Linux_fs/yocto/poky/meta/files/common-licenses/ |
| H A D | BSD-Protection | 11 …r goal of providing for the widespread usage of their work, wish to guard against such "GPL-taint".
|
| /OK3568_Linux_fs/external/chromium/licenses/ |
| H A D | LICENCE | 29 such "GPL-taint".
|