Re: xpt_action_default: CCB type 0xe not supported

2011-06-21 Thread Matt

On 06/21/11 10:51, George Kontostanos wrote:

Fresh installation and after world  kernel update I get these messages
during boot:

xpt_action_default: CCB type 0xe not supported
xpt_action_default: CCB type 0xe not supported

The system is running GENERIC with debugging for use in current off options.


Full dmesg attached.

Regards,



___
freebsd-current@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-current
To unsubscribe, send any mail to freebsd-current-unsubscr...@freebsd.org
SImilar issues on Tyan board with SATA 3gbs, atapicam custom kernel. I 
assumed it was the ugly CF adapter I have, as I've had shoddy USB 
devices confuse CAM in the past. Not as annoying as virtualbox being 
borked currently, I assume it's simply a printf that is a little too 
verbose? Or is scsi borked too?


Matt







___
freebsd-current@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-current
To unsubscribe, send any mail to freebsd-current-unsubscr...@freebsd.org


Re: xpt_action_default: CCB type 0xe not supported

2011-06-21 Thread Hartmann, O.

On 06/21/11 19:58, Matt wrote:

On 06/21/11 10:51, George Kontostanos wrote:

Fresh installation and after world  kernel update I get these messages
during boot:

xpt_action_default: CCB type 0xe not supported
xpt_action_default: CCB type 0xe not supported

The system is running GENERIC with debugging for use in current off 
options.



Full dmesg attached.

Regards,



___
freebsd-current@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-current
To unsubscribe, send any mail to 
freebsd-current-unsubscr...@freebsd.org
SImilar issues on Tyan board with SATA 3gbs, atapicam custom kernel. I 
assumed it was the ugly CF adapter I have, as I've had shoddy USB 
devices confuse CAM in the past. Not as annoying as virtualbox being 
borked currently, I assume it's simply a printf that is a little too 
verbose? Or is scsi borked too?


Matt







___
freebsd-current@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-current
To unsubscribe, send any mail to 
freebsd-current-unsubscr...@freebsd.org


Same here,
ASUS board, Intel ICH10R, SATA 3GB. Custom kernel:
# S-ATA/AHCI Interface
device  ahci# Serial ATA Advanced Host Controller 
Interface driver

device  ata # Legacy Core ATA functionality
options ATA_CAM # ATA CAM
#
device  mvs # Marvell Serial ATA Host Controller driver
device  siis# Marvell Serial ATA Host Controller driver

and the SCSI stuff.

Seems to be a very verbose thing inside the CAM system.

Oliver
___
freebsd-current@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-current
To unsubscribe, send any mail to freebsd-current-unsubscr...@freebsd.org


Re: xpt_action_default: CCB type 0xe not supported

2011-06-21 Thread Andrey Chernov
On Tue, Jun 21, 2011 at 08:51:02PM +0300, George Kontostanos wrote:
 Fresh installation and after world  kernel update I get these messages
 during boot:
 
 xpt_action_default: CCB type 0xe not supported
 xpt_action_default: CCB type 0xe not supported

+1 on ICH9 SATA

-- 
http://ache.vniz.net/
___
freebsd-current@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-current
To unsubscribe, send any mail to freebsd-current-unsubscr...@freebsd.org


Re: xpt_action_default: CCB type 0xe not supported

2011-06-21 Thread Garrett Cooper
On Tue, Jun 21, 2011 at 11:22 AM, Andrey Chernov a...@freebsd.org wrote:
 On Tue, Jun 21, 2011 at 08:51:02PM +0300, George Kontostanos wrote:
 Fresh installation and after world  kernel update I get these messages
 during boot:

 xpt_action_default: CCB type 0xe not supported
 xpt_action_default: CCB type 0xe not supported

 +1 on ICH9 SATA

It's noise added via r223081, that wasn't present in the previous
revision ( 
http://svnweb.freebsd.org/base/head/sys/cam/cam_xpt.c?view=markuppathrev=223081
):

2930case XPT_SDEV_TYPE:
2931case XPT_TERM_IO:
2932case XPT_ENG_INQ:
2933/* XXX Implement */
2934printf(%s: CCB type %#x not supported\n, __func__,
2935   start_ccb-ccb_h.func_code);
2936start_ccb-ccb_h.status = CAM_PROVIDE_FAIL;
2937if (start_ccb-ccb_h.func_code  XPT_FC_DEV_QUEUED) {
2938xpt_done(start_ccb);
2939}
2940break;

It probably should be removed.
Thanks,
-Garrett
___
freebsd-current@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-current
To unsubscribe, send any mail to freebsd-current-unsubscr...@freebsd.org


Re: xpt_action_default: CCB type 0xe not supported

2011-06-21 Thread Scott Long

On Jun 21, 2011, at 1:13 PM, Garrett Cooper wrote:

 On Tue, Jun 21, 2011 at 11:22 AM, Andrey Chernov a...@freebsd.org wrote:
 On Tue, Jun 21, 2011 at 08:51:02PM +0300, George Kontostanos wrote:
 Fresh installation and after world  kernel update I get these messages
 during boot:
 
 xpt_action_default: CCB type 0xe not supported
 xpt_action_default: CCB type 0xe not supported
 
 +1 on ICH9 SATA
 
 It's noise added via r223081, that wasn't present in the previous
 revision ( 
 http://svnweb.freebsd.org/base/head/sys/cam/cam_xpt.c?view=markuppathrev=223081
 ):
 

This should fix it:

--- cam_xpt.c   14 Jun 2011 14:53:17 -  1.262
+++ cam_xpt.c   21 Jun 2011 19:44:17 -
@@ -2931,8 +2931,9 @@
case XPT_TERM_IO:
case XPT_ENG_INQ:
/* XXX Implement */
-   printf(%s: CCB type %#x not supported\n, __func__,
-  start_ccb-ccb_h.func_code);
+   CAM_DEBUG(start_ccb-ccb_h.path, CAM_DEBUG_INFO,
+   (%s: CCB type %#x not supported\n, __func__,
+   start_ccb-ccb_h.func_code));
start_ccb-ccb_h.status = CAM_PROVIDE_FAIL;
if (start_ccb-ccb_h.func_code  XPT_FC_DEV_QUEUED) {
xpt_done(start_ccb);


___
freebsd-current@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-current
To unsubscribe, send any mail to freebsd-current-unsubscr...@freebsd.org