Page Menu
Home
FreeBSD
Search
Configure Global Search
Log In
Files
F151512110
D35092.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Flag For Later
Award Token
Size
2 KB
Referenced Files
None
Subscribers
None
D35092.diff
View Options
diff --git a/sys/dev/mpr/mpr_sas.c b/sys/dev/mpr/mpr_sas.c
--- a/sys/dev/mpr/mpr_sas.c
+++ b/sys/dev/mpr/mpr_sas.c
@@ -618,7 +618,9 @@
* if so.
*/
if (TAILQ_FIRST(&targ->commands) == NULL) {
- mpr_dprint(sc, MPR_INFO, "No pending commands: starting remove_device\n");
+ mpr_dprint(sc, MPR_INFO,
+ "No pending commands: starting remove_device for target %u handle 0x%04x\n",
+ targ->tid, handle);
mpr_map_command(sc, tm);
targ->pending_remove_tm = NULL;
} else {
@@ -2842,7 +2844,9 @@
if (cm->cm_targ->flags & MPRSAS_TARGET_INREMOVAL) {
if (TAILQ_FIRST(&cm->cm_targ->commands) == NULL &&
cm->cm_targ->pending_remove_tm != NULL) {
- mpr_dprint(sc, MPR_INFO, "Last pending command complete: starting remove_device\n");
+ mpr_dprint(sc, MPR_INFO,
+ "Last pending command complete: starting remove_device target %u handle 0x%04x\n",
+ cm->cm_targ->tid, cm->cm_targ->handle);
mpr_map_command(sc, cm->cm_targ->pending_remove_tm);
cm->cm_targ->pending_remove_tm = NULL;
}
diff --git a/sys/dev/mps/mps_sas.c b/sys/dev/mps/mps_sas.c
--- a/sys/dev/mps/mps_sas.c
+++ b/sys/dev/mps/mps_sas.c
@@ -588,7 +588,9 @@
* if so.
*/
if (TAILQ_FIRST(&targ->commands) == NULL) {
- mps_dprint(sc, MPS_INFO, "No pending commands: starting remove_device\n");
+ mps_dprint(sc, MPS_INFO,
+ "No pending commands: starting remove_device target %u handle 0x%04x\n",
+ targ->tid, handle);
mps_map_command(sc, tm);
targ->pending_remove_tm = NULL;
} else {
@@ -2383,7 +2385,9 @@
if (cm->cm_targ->flags & MPSSAS_TARGET_INREMOVAL) {
if (TAILQ_FIRST(&cm->cm_targ->commands) == NULL &&
cm->cm_targ->pending_remove_tm != NULL) {
- mps_dprint(sc, MPS_INFO, "Last pending command complete: starting remove_device\n");
+ mps_dprint(sc, MPS_INFO,
+ "Last pending command complete: starting remove_device target %u handle 0x%04x\n",
+ cm->cm_targ->tid, cm->cm_targ->handle);
mps_map_command(sc, cm->cm_targ->pending_remove_tm);
cm->cm_targ->pending_remove_tm = NULL;
}
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Thu, Apr 9, 10:47 PM (7 h, 12 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
31175269
Default Alt Text
D35092.diff (2 KB)
Attached To
Mode
D35092: mpr/mps: when sending reset on removal, include target in message
Attached
Detach File
Event Timeline
Log In to Comment