Blame SOURCES/debrand-rh_taint.patch

aa97d0
--- a/kernel/rh_taint.c	2020-10-16 10:41:51.000000000 -0500
aa97d0
+++ b/kernel/rh_taint.c	2020-11-19 10:50:24.853039167 -0600
aa97d0
@@ -2,12 +2,12 @@
aa97d0
 #include <linux/module.h>
aa97d0
 
aa97d0
 /*
aa97d0
- * The following functions are used by Red Hat to indicate to users that
aa97d0
- * hardware and drivers are unsupported, or have limited support in RHEL major
aa97d0
+ * The following functions are used by CentOS Linux to indicate to users that
aa97d0
+ * hardware and drivers are unsupported, or have limited support in CentOS Linux major
aa97d0
  * and minor releases.  These functions output loud warning messages to the end
aa97d0
  * user and should be USED WITH CAUTION.
aa97d0
  *
aa97d0
- * Any use of these functions _MUST_ be documented in the RHEL Release Notes,
aa97d0
+ * Any use of these functions _MUST_ be documented in the CentOS Linux Release Notes,
aa97d0
  * and have approval of management.
aa97d0
  */
aa97d0
 
aa97d0
@@ -16,15 +16,15 @@
aa97d0
  * @msg: Hardware name, class, or type
aa97d0
  *
aa97d0
  * Called to mark a device, class of devices, or types of devices as not having
aa97d0
- * support in any RHEL minor release.  This does not TAINT the kernel.  Red Hat
aa97d0
- * will not fix bugs against this hardware in this minor release.  Red Hat may
aa97d0
+ * support in any CentOS Linux minor release.  This does not TAINT the kernel.  CentOS Linux
aa97d0
+ * will not fix bugs against this hardware in this minor release.  CentOS Linux may
aa97d0
  * declare support in a future major or minor update release.  This cannot be
aa97d0
  * used to mark drivers unsupported.
aa97d0
  */
aa97d0
 void mark_hardware_unsupported(const char *msg)
aa97d0
 {
aa97d0
 	/* Print one single message */
aa97d0
-	pr_crit("Warning: %s - this hardware has not undergone testing by Red Hat and might not be certified. Please consult https://catalog.redhat.com for certified hardware.\n", msg);
aa97d0
+	pr_crit("Warning: %s - this hardware has not undergone testing by CentOS Linux and might not be certified. Please consult https://catalog.redhat.com for certified hardware.\n", msg);
aa97d0
 }
aa97d0
 EXPORT_SYMBOL(mark_hardware_unsupported);
aa97d0
 
aa97d0
@@ -35,12 +35,12 @@ EXPORT_SYMBOL(mark_hardware_unsupported)
aa97d0
  * Called to minimize the support status of a previously supported device in
aa97d0
  * a minor release.  This does not TAINT the kernel.  Marking hardware
aa97d0
  * deprecated is usually done in conjunction with the hardware vendor.  Future
aa97d0
- * RHEL major releases may not include this driver.  Driver updates and fixes
aa97d0
+ * CentOS Linux major releases may not include this driver.  Driver updates and fixes
aa97d0
  * for this device will be limited to critical issues in future minor releases.
aa97d0
  */
aa97d0
 void mark_hardware_deprecated(const char *msg)
aa97d0
 {
aa97d0
-	pr_crit("Warning: %s - this hardware is not recommended for new deployments. It continues to be supported in this RHEL release, but it is likely to be removed in the next major release. Driver updates and fixes for this device will be limited to critical issues. Please contact Red Hat Support or your device's hardware vendor for additional information.\n", msg);
aa97d0
+	pr_crit("Warning: %s - this hardware is not recommended for new deployments. It continues to be supported in this CentOS Linux release, but it is likely to be removed in the next major release. Driver updates and fixes for this device will be limited to critical issues. Please contact CentOS Linux Support or your device's hardware vendor for additional information.\n", msg);
aa97d0
 }
aa97d0
 EXPORT_SYMBOL(mark_hardware_deprecated);
aa97d0
 
aa97d0
@@ -50,9 +50,9 @@ EXPORT_SYMBOL(mark_hardware_deprecated);
aa97d0
  *
aa97d0
  * Called to minimize the support status of a new driver.  This does TAINT the
aa97d0
  * kernel.  Calling this function indicates that the driver or subsystem has
aa97d0
- * had limited testing and is not marked for full support within this RHEL
aa97d0
- * minor release.  The next RHEL minor release may contain full support for
aa97d0
- * this driver.  Red Hat does not guarantee that bugs reported against this
aa97d0
+ * had limited testing and is not marked for full support within this CentOS Linux
aa97d0
+ * minor release.  The next CentOS Linux minor release may contain full support for
aa97d0
+ * this driver.  CentOS Linux does not guarantee that bugs reported against this
aa97d0
  * driver or subsystem will be resolved.
aa97d0
  */
aa97d0
 void mark_tech_preview(const char *msg, struct module *mod)
aa97d0
@@ -81,13 +81,13 @@ EXPORT_SYMBOL(mark_tech_preview);
aa97d0
  * mark_driver_unsupported - drivers that we know we don't want to support
aa97d0
  * @name: the name of the driver
aa97d0
  *
aa97d0
- * In some cases Red Hat has chosen to build a driver for internal QE
aa97d0
+ * In some cases CentOS Linux has chosen to build a driver for internal QE
aa97d0
  * use. Use this function to mark those drivers as unsupported for
aa97d0
  * customers.
aa97d0
  */
aa97d0
 void mark_driver_unsupported(const char *name)
aa97d0
 {
aa97d0
-	pr_crit("Warning: %s - This driver has not undergone sufficient testing by Red Hat for this release and therefore cannot be used in production systems.\n",
aa97d0
+	pr_crit("Warning: %s - This driver has not undergone sufficient testing by CentOS Linux for this release and therefore cannot be used in production systems.\n",
aa97d0
 	        name ? name : "kernel");
aa97d0
 }
aa97d0
 EXPORT_SYMBOL(mark_driver_unsupported);