svn commit: r356719 - stable/12/sys/dev/smartpqi

Mark Johnston markj at FreeBSD.org
Tue Jan 14 02:44:25 UTC 2020


Author: markj
Date: Tue Jan 14 02:44:24 2020
New Revision: 356719
URL: https://svnweb.freebsd.org/changeset/base/356719

Log:
  MFC r356445:
  Decrease logging severity when adding a device or reading config table.
  
  PR:	243056

Modified:
  stable/12/sys/dev/smartpqi/smartpqi_discovery.c
  stable/12/sys/dev/smartpqi/smartpqi_init.c
Directory Properties:
  stable/12/   (props changed)

Modified: stable/12/sys/dev/smartpqi/smartpqi_discovery.c
==============================================================================
--- stable/12/sys/dev/smartpqi/smartpqi_discovery.c	Tue Jan 14 02:41:52 2020	(r356718)
+++ stable/12/sys/dev/smartpqi/smartpqi_discovery.c	Tue Jan 14 02:44:24 2020	(r356719)
@@ -1213,7 +1213,7 @@ static int pqisrc_add_device(pqisrc_softstate_t *softs
 	pqi_scsi_dev_t *device)
 {
 	DBG_FUNC("IN\n");
-	DBG_WARN("vendor: %s model: %s bus:%d target:%d lun:%d is_physical_device:0x%x expose_device:0x%x volume_offline 0x%x volume_status 0x%x \n",
+	DBG_DISC("vendor: %s model: %s bus:%d target:%d lun:%d is_physical_device:0x%x expose_device:0x%x volume_offline 0x%x volume_status 0x%x \n",
 		device->vendor, device->model, device->bus, device->target, device->lun, device->is_physical_device, device->expose_device, device->volume_offline, device->volume_status);
 
 	device->invalid = false;

Modified: stable/12/sys/dev/smartpqi/smartpqi_init.c
==============================================================================
--- stable/12/sys/dev/smartpqi/smartpqi_init.c	Tue Jan 14 02:41:52 2020	(r356718)
+++ stable/12/sys/dev/smartpqi/smartpqi_init.c	Tue Jan 14 02:44:24 2020	(r356719)
@@ -453,7 +453,7 @@ int pqisrc_process_config_table(pqisrc_softstate_t *so
 		ret = PQI_STATUS_SUCCESS;
 		break;
 		default:
-		DBG_ERR("unrecognized PQI config table section ID: 0x%x\n",
+		DBG_INFO("unrecognized PQI config table section ID: 0x%x\n",
 					LE_16(section_hdr->section_id));
 		break;
 		}


More information about the svn-src-all mailing list