From owner-freebsd-usb@FreeBSD.ORG Mon Nov 16 02:10:02 2009 Return-Path: Delivered-To: freebsd-usb@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 255DE1065679 for ; Mon, 16 Nov 2009 02:10:02 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id DD00A8FC0C for ; Mon, 16 Nov 2009 02:10:01 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id nAG2A1Ch009958 for ; Mon, 16 Nov 2009 02:10:01 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id nAG2A1k7009957; Mon, 16 Nov 2009 02:10:01 GMT (envelope-from gnats) Resent-Date: Mon, 16 Nov 2009 02:10:01 GMT Resent-Message-Id: <200911160210.nAG2A1k7009957@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-usb@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Alexander Best Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C5F4A106566B for ; Mon, 16 Nov 2009 02:02:50 +0000 (UTC) (envelope-from nobody@FreeBSD.org) Received: from www.freebsd.org (www.freebsd.org [IPv6:2001:4f8:fff6::21]) by mx1.freebsd.org (Postfix) with ESMTP id 9AB4F8FC1B for ; Mon, 16 Nov 2009 02:02:50 +0000 (UTC) Received: from www.freebsd.org (localhost [127.0.0.1]) by www.freebsd.org (8.14.3/8.14.3) with ESMTP id nAG22oB1035221 for ; Mon, 16 Nov 2009 02:02:50 GMT (envelope-from nobody@www.freebsd.org) Received: (from nobody@localhost) by www.freebsd.org (8.14.3/8.14.3/Submit) id nAG22oQM035220; Mon, 16 Nov 2009 02:02:50 GMT (envelope-from nobody) Message-Id: <200911160202.nAG22oQM035220@www.freebsd.org> Date: Mon, 16 Nov 2009 02:02:50 GMT From: Alexander Best To: freebsd-gnats-submit@FreeBSD.org X-Send-Pr-Version: www-3.1 Cc: Subject: usb/140590: [bluetooth] [usb] ng_ubt(4) ng_l2cap_process_cmd_rej warnings X-BeenThere: freebsd-usb@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: FreeBSD support for USB List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 16 Nov 2009 02:10:02 -0000 >Number: 140590 >Category: usb >Synopsis: [bluetooth] [usb] ng_ubt(4) ng_l2cap_process_cmd_rej warnings >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-usb >State: open >Quarter: >Keywords: >Date-Required: >Class: sw-bug >Submitter-Id: current-users >Arrival-Date: Mon Nov 16 02:10:01 UTC 2009 >Closed-Date: >Last-Modified: >Originator: Alexander Best >Release: 9.0-CURRENT >Organization: >Environment: FreeBSD otaku 9.0-CURRENT FreeBSD 9.0-CURRENT #7 r199258M: Sat Nov 14 00:05:10 CET 2009 root@otaku:/usr/obj/usr/src/sys/ARUNDEL i386 >Description: when receiving data with my usb bluetooth dongle device i'm getting these warnings: ng_l2cap_process_cmd_rej: ubt0l2cap - unexpected L2CAP_CommandRej command. Requested ident does not exist, ident=2 ng_l2cap_process_cmd_rej: ubt0l2cap - unexpected L2CAP_CommandRej command. Requested ident does not exist, ident=2 when sending data these are the warnings appear: ng_l2cap_process_cmd_rej: ubt0l2cap - unexpected L2CAP_CommandRej command. Requested ident does not exist, ident=1 ng_l2cap_process_cmd_rej: ubt0l2cap - unexpected L2CAP_CommandRej command. Requested ident does not exist, ident=1 ng_btsocket_rfcomm_receive_dm: Got DM for non-existing dlci=18 this is my device: ugen3.3: at usbus3, cfg=0 md=HOST spd=FULL (12Mbps) pwr=ON bLength = 0x0012 bDescriptorType = 0x0001 bcdUSB = 0x0200 bDeviceClass = 0x00e0 bDeviceSubClass = 0x0001 bDeviceProtocol = 0x0001 bMaxPacketSize0 = 0x0040 idVendor = 0x0a12 idProduct = 0x0001 bcdDevice = 0x1593 iManufacturer = 0x0000 iProduct = 0x0000 iSerialNumber = 0x0000 bNumConfigurations = 0x0001 i have the following devd.conf entries installed to start bluetooth services upon attach: attach 100 { device-name "ubt[0-9]+"; action "/etc/rc.d/hcsecd onestart"; action "/etc/rc.d/sdpd onestart"; action "/etc/rc.d/bluetooth quietstart $device-name"; action "/usr/local/bin/obexapp -u arundel -r /var/spool/obex -s -C1"; }; this is the detach entry: detach 100 { device-name "ubt[0-9]+"; action "/usr/bin/killall obexapp"; action "/etc/rc.d/bluetooth quietstop $device-name"; action "/etc/rc.d/sdpd onestop"; action "/etc/rc.d/hcsecd onestop"; }; cheers. alex >How-To-Repeat: >Fix: >Release-Note: >Audit-Trail: >Unformatted: From owner-freebsd-usb@FreeBSD.ORG Mon Nov 16 11:07:03 2009 Return-Path: Delivered-To: freebsd-usb@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B9356106568F for ; Mon, 16 Nov 2009 11:07:03 +0000 (UTC) (envelope-from owner-bugmaster@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id A6B278FC26 for ; Mon, 16 Nov 2009 11:07:03 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id nAGB73Js011323 for ; Mon, 16 Nov 2009 11:07:03 GMT (envelope-from owner-bugmaster@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id nAGB73VH011321 for freebsd-usb@FreeBSD.org; Mon, 16 Nov 2009 11:07:03 GMT (envelope-from owner-bugmaster@FreeBSD.org) Date: Mon, 16 Nov 2009 11:07:03 GMT Message-Id: <200911161107.nAGB73VH011321@freefall.freebsd.org> X-Authentication-Warning: freefall.freebsd.org: gnats set sender to owner-bugmaster@FreeBSD.org using -f From: FreeBSD bugmaster To: freebsd-usb@FreeBSD.org Cc: Subject: Current problem reports assigned to freebsd-usb@FreeBSD.org X-BeenThere: freebsd-usb@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: FreeBSD support for USB List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 16 Nov 2009 11:07:03 -0000 Note: to view an individual PR, use: http://www.freebsd.org/cgi/query-pr.cgi?pr=(number). The following is a listing of current problems submitted by FreeBSD users. These represent problem reports covering all versions including experimental development code and obsolete releases. S Tracker Resp. Description -------------------------------------------------------------------------------- o usb/140590 usb [bluetooth] [usb] ng_ubt(4) ng_l2cap_process_cmd_rej w o usb/140477 usb [umass] [patch] allow boot-time attachment of daX devi o usb/140325 usb Missing/incorrect initialisation and memory leak in li o usb/140259 usb libusb-1.0 portability/compatibility nits o usb/140242 usb dev/usb/controller/ehci_ix4xx.c shortcomings o usb/140236 usb [msdosfs] Labels wiped on external Journaled USB HDD o o usb/140160 usb USB ports are no longer "active" after ACPI suspend/re o usb/139990 usb [panic] Kernel frequently panics after printing o usb/139598 usb [umass] CAM reports "xptioctl: put "device pass" in yo o usb/139243 usb [uhci] unplug prolific USB serial -> uhci_abort_xfer: o usb/139142 usb [regression] ehci drivers (NVIDIA nForce4 USB 2.0 cont o usb/138915 usb [patch][usb8][usb67] add support for SheevaPlug serial o usb/138904 usb [rum] unpluging USB wifi card panics system f usb/138882 usb [ohci] [panic] Can't install FreeBSD 7.2 due to ohci p o usb/138879 usb [uftdi] [patch] Patch to add support for CTI USB-Mini o usb/138798 usb 8.0-BETA4 can't boot from USB flash drive [regression] o usb/138675 usb [usb8] [panic] page fault, perhaps in USB o usb/138659 usb [usb8][uftdi] driver broken in RELENG_8/CURRENT o usb/138389 usb [usb8] [patch] NULL pointer dereference in usb_endpoin o usb/138175 usb [usb67] [boot] System cannot boot, when USB reader wit o usb/138172 usb Additional dev id for u3g (Option mini PCIe) o usb/138138 usb Novatel U760 for u3g (Verizon and Bell Canada) o usb/138124 usb [usb8] Axed uaudio functionality in the usbng (alterna o usb/138119 usb MultiBay CDROM (propably on USB bus) is not recognized o usb/137872 usb slow booting on usb flash drive f usb/137848 usb Page fault when using an USB bluetooth adapter o usb/137806 usb [ukbd] USB keyboard doesn't work until it's unplugged o usb/137763 usb [usb67][ukbd] Logitech wireless keyboard media keys no o usb/137616 usb [usb67][usb8][usbdevs] [patch]: usbdevs update: Please o usb/137377 usb [usb8] Support for Huawei E180 o usb/137341 usb [usb8][rum] driver if_rum doesn't work at all and thro p usb/137226 usb [usb67][patch] quirk for Philips extern USB disk o usb/137190 usb [usb8][patch] inhibit spurious button releases for som o usb/137189 usb [usb8][patch] create and use sysctl nodes for HID repo p usb/137188 usb [usb8][patch] correctly handle USB report descriptors o usb/137129 usb SteelSeries Ikari USB laser mouse not attaching p usb/136761 usb [usbdevs][usb67][patch] Teach usbdevs / u3g(4) about H o usb/135938 usb [aue] aue driver only passes traffic in promisc mode f usb/135857 usb RTL8187 Wireless Adapter o usb/135575 usb [usbdevs] [patch] Add HTC Wizard phone vid/pid informa o usb/135542 usb [keyboard] boot loader does not work with a usb keyboa p usb/135372 usb [usb67][umass] Quirk report for Teclast TL-C300 usb me o usb/135348 usb [umass] USB Drive Hangs with ZFS (JMicron USB2/eSata) o usb/135206 usb machine reboots when inserted USB device o usb/135200 usb SAMSUNG i740 usb mass: Synchronize cache failed, statu o usb/135182 usb UMASS quirk - Olympus FE20 camera o usb/134950 usb Lowering DTR for USB-modem via ubsa is not possible o usb/134633 usb Add support for WILLCOM03(SHARP smart phone) o usb/134631 usb [usbdevs] [patch] WiSPY DBx support requires usb tweak o usb/134299 usb Kernel Panic plugging in MF626 USB UMTS Stick u3g o usb/134193 usb System freeze on usb MP3 player insertion o usb/134117 usb [Patch] Add support for 'Option GlobeTrotter HSDPA Mod o usb/134085 usb [umass] Adding usb quirk for Sony USB flash drive o usb/133989 usb [newusb] [ukbd] USB keyboard dead at mountroot> prompt o usb/133712 usb [ural] [patch] RE: Fixed an issue with ural(4) that wa o usb/133390 usb umass crashes system in 7.1 when Olympus D-540 attache o usb/133296 usb [rum] driver not working properly in hostap mode p usb/132799 usb [usb][patch]GENESYS USB2IDE requires NO_SYNCHRONIZE_CA o usb/132785 usb [usb] [patch] Gemtech remote powersocket is classed as o usb/132594 usb USB subsystem causes page fault and crashes o usb/132312 usb Xorg 7.4 halts USB controller o usb/132080 usb [patch] [usb] [rum] Kernel panic after NOMEM caused by o usb/132066 usb [ukbd] Keyboard failure USB keyboard DELL 760 o usb/132036 usb [panic] page fault when connecting Olympus C740 camera o usb/131912 usb [uslcom] [patch] New devices using Silicon Labs chips o usb/131900 usb [usbdevs] [patch] Additional product identification co o usb/131583 usb [umass] Failure when detaching umass Device o usb/131576 usb [aue] ADMtek USB To LAN Converter can't send data o usb/131521 usb Registering Belkin UPS to usb_quirks.c o usb/131123 usb [patch] re-add UQ_ASSUME_CM_OVER_DATA USB quirk o usb/131074 usb no run-time detection of usb devices plugged into exte o usb/130736 usb Page fault unplugging USB stick o usb/130230 usb Samsung Electronics YP-U3 does not attach in 7.1-RELEA o usb/130208 usb Boot process severely hampered by umass0 error o usb/130122 usb [newusb] DVD drive detects as 'da' device o usb/129945 usb [usbdevs] [patch] add u3g support for Longcheer WM66 U o usb/129766 usb [usb] plugging in usb modem HUAWEI E226 panics system o usb/129758 usb [uftdi] [patch] add Pyramid LCD usb support o usb/129673 usb [uhci] uhci (uhub) confused on replugging USB 1.1 scan o usb/129522 usb [ubsa] [patch] add support for ZTE AC8700 modem o usb/129500 usb [umass] [panic] FreeBSD Crashes when connecting SanDis o usb/129311 usb [usb] [panic] Instant crash with an USB card reader o usb/129251 usb [usbdevs] [patch] Liebert UPS being assigned uhid and o usb/129173 usb [uplcom] [patch] Add support for Corega CG-USBRS232R a s usb/128990 usb [usb] u3g does not handle RTS/CTS available on for exa o usb/128977 usb [usb] [patch] uaudio is not full duplex o usb/128803 usb [usbdevs] [patch] Quirk for I-Tuner Networks USBLCD4X2 o usb/128485 usb [umodem] [patch] Nokia N80 modem support o usb/128425 usb [umass] Cannot Connect Maxtor Onetouch 4 USB drive o usb/128418 usb [panic] [rum] loading if_rum causes panic, looks like o usb/128324 usb [uplcom] [patch] remove baud rate restriction for PL23 o usb/127980 usb [umass] [patch] Fix Samsung YP U2 MP3 player on 7.x an o usb/127926 usb [boot] USB Timeout during bootup s usb/127549 usb [umass] [patch] Meizu MiniPlayer M6 (SL) requires some s usb/127453 usb [request] ubsa, uark, ubser, uftdi, and friends should o usb/127423 usb [boot] BTX halted on Gigabyte GA-MA69VM-S2 / AMD Sempr o usb/127342 usb [boot] [panic] enabling usb keyboard and mouse support o usb/127248 usb [ucom] panic while uplcom devices attaach and detach o usb/127222 usb [ohci] Regression in 7.0 usb storage generic driver o usb/126884 usb [ugen] [patch] Bug in buffer handling in ugen.c o usb/126848 usb [usb]: USB Keyboard hangs during Installation o usb/126740 usb [ulpt] doesn't work on 7.0-RELEASE, 10 second stall be o usb/126519 usb [usb] [panic] panic when plugging in an iphone o kern/126396 usb [panic] kernel panic after unplug USB Bluetooth device o usb/125736 usb [ukbd] [hang] system hangs after AT keyboard detect if o usb/125631 usb [ums] [panic] kernel panic during bootup while 'Logite o usb/125510 usb [panic] repeated plug and unplug of USB mass storage d o usb/125450 usb [panic] Removing USB flash card while being accessed c o usb/125238 usb [ums] Habu Mouse turns off in X o usb/125088 usb [keyboard] Touchpad not detected on Adesso AKB-430UG U o usb/124980 usb [panic] kernel panic on detaching unmounted umass devi o kern/124777 usb [ucom] USB cua devices don't revert to tty devices whe o usb/124758 usb [rum] [panic] rum panics SMP kernel o usb/124708 usb [panic] Kernel panic on USB KVM reattach o usb/124604 usb [ums] Microsoft combo wireless mouse doesn't work o kern/124130 usb [usb] gmirror fails to start usb devices that were pre o usb/123969 usb [usb] Supermicro H8SMi-2 usb problem: port reset faile o usb/123714 usb [usb] [panic] Panic when hald-storage-probe runs with o usb/123691 usb usbd(8): usbd hangs o usb/123690 usb [usb] [panic] Panic on USB device insertion when usb l o usb/123611 usb [usb] BBB reset failed, STALLED from Imation/Mitsumi U o usb/123509 usb [umass] continuous reset Samsung SGH-G600 phone o usb/123352 usb [usbdevs] [patch] Add Option GTMAX3.6/7.2 and Quallcom o usb/123351 usb [usbdevs] [patch] Add Reiner SCT cyberJack, Omnikey [2 o usb/122992 usb [umass] [patch] MotoROKR Z6 Phone not recognised by um o usb/122956 usb [ubsa] [patch] add support for Novatel Wireless XU870 o usb/122936 usb [ucom] [ubsa] Device does not receive interrupt o usb/122905 usb [ubsa] [patch] add Huawei E220 to ubsa o usb/122819 usb [usb] [patch] Patch to provide dynamic additions to th o usb/122813 usb [udbp] [request] udbp driver should be removed in favo o usb/122621 usb [new driver] [patch] New driver for Sierra Wireless 3G o usb/122547 usb [ehci] USB Printer not being recognized after reboot o usb/122539 usb [ohci] [panic] AnyDATA ADU-E1000D - kernel panic: ohci o usb/122483 usb [panic] [ulpt] Repeatable panic in 7.0-STABLE o usb/122119 usb [umass] umass device causes creation of daX but not da o usb/122025 usb [uscanner] [patch] uscanner does not attach to Epson R o usb/121755 usb [ohci] [patch] Fix panic after ohci/uhub cardbus devic o usb/121734 usb [ugen] ugen HP1022 printer device not working since up o usb/121708 usb [keyboard] nforce 650i mobo w/ usb keyboard infinite k o usb/121474 usb [cam] [patch] QUIRK: SAMSUNG HM250JI in LaCie usb hard o usb/121426 usb [patch] [uscanner] add HP ScanJet 3570C o usb/121275 usb [boot] [panic] FreeBSD fails to boot with usb legacy s o usb/121232 usb [usb] [panic] USB CardBus card removal causes reboot s p usb/121184 usb [uipaq] [patch] add ids from linux ipaq driver (plus a o usb/121169 usb [umass] Issues with usb mp3 player o usb/121045 usb [uftdi] [patch] Add support for PC-OP-RS1 and KURO-RS o usb/120786 usb [usb] [panic] Kernel panic when forced umount of a det o usb/120729 usb [panic] fault while in kernel mode with connecting USB o usb/120572 usb [umass] [patch] quirk to support ASUS P535 as umass (a o usb/120321 usb [hang] System hangs when transferring data to WD MyBoo o usb/120283 usb [panic] Automation reboot with wireless keyboard & mou o usb/120034 usb [hang] 6.2 & 6.3 hangs on boot at usb0: OHCI with 1.5 o usb/119981 usb [axe] [patch] add support for LOGITEC LAN-GTJ/U2 gigab o usb/119977 usb [ums] Mouse does not work in a Cherry-USB keyboard/mou o usb/119653 usb [cam] [patch] iriver s7 player sync cache error patch o usb/119633 usb [umass] umass0: BBB reset failed, IOERROR [regression] o usb/119513 usb [irq] inserting dlink dwl-g630 wireless card results i o usb/119509 usb [usb] USB flaky on Dell Optiplex 755 o usb/119481 usb [hang] FreeBSD not responding after connecting USB-Mas o usb/119389 usb [umass] Sony DSC-W1 CBI reset failed, STALLED [regress o usb/119227 usb [ubsa] [patch] ubsa buffer is too small; should be tun o usb/119201 usb [cam] [patch] Quirks for Olympus FE-210 camera, LG and o usb/118485 usb [usbdevs] [patch] Logitech Headset Workaround o usb/118480 usb [umass] Timeout in USB mass storage freezes vfs layer o usb/118353 usb [panic] [ppp] repeatable kernel panic during ppp(4) se o usb/118141 usb [ucom] usb serial and nokia phones ucomreadcb ucomread o usb/118140 usb [ucom] [patch] quick hack for ucom to get it behave wi o usb/118098 usb [umass] 6th gen iPod causes problems when disconnectin o usb/117955 usb [umass] [panic] inserting minolta dimage a2 crashes OS o usb/117946 usb [panic] D-Link DUB-E100 rev. B1 crashes FreeBSD 7.0-BE o usb/117938 usb [ums] [patch] Adding support for MS WL Natural and MS o usb/117911 usb [ums] [request] Mouse Gembird MUSWC not work o usb/117893 usb [umass] Lacie USB DVD writing failing o usb/117613 usb [uhci] [irq] uhci interrupt storm & USB leaked memory o usb/117598 usb [uaudio] [patch] Not possible to record with Plantroni o usb/117313 usb [umass] [panic] panic on usb camera insertion o usb/117200 usb [ugen] ugen0 prints strange string on attach if detach o usb/117183 usb [panic] USB/fusefs -- panic while transferring large a o usb/116947 usb [ukbd] [patch] [regression] enable boot protocol on th o usb/116699 usb [usbhid] USB HID devices do not initialize at system b o usb/116561 usb [umodem] [panic] RELENG_6 umodem panic "trying to slee o usb/116282 usb [ulpt] Cannot print on USB HP LJ1018 or LJ1300 o usb/115935 usb [usbdevs] [patch] kernel counterproductively attaches o usb/115933 usb [uftdi] [patch] RATOC REX-USB60F (usb serial converter o usb/115400 usb [ehci] Problem with EHCI on ASUS M2N4-SLI o usb/115298 usb [ulpt] [panic] Turning off USB printer panics kernel o usb/114916 usb [umass] [patch] USB Maxtor drive (L300RO) requires qui o kern/114780 usb [uplcom] [panic] Panics while stress testing the uplco o usb/114682 usb [umass] generic USB media-card reader unusable o usb/114310 usb [libusb] [patch] [panic] USB hub attachment panics ker o usb/114068 usb [usb67] [usb8] [umass] [patch] Problem with connection o conf/114013 usb [patch] WITHOUT_USB allow to compil a lot of USB stuff o usb/113060 usb [usb67] [ulpt] [patch] Samsung printer not working in o usb/110856 usb [usb67] [ugen] [patch] interrupt in msgs are truncated s usb/108344 usb [usb67] [atausb] [panic] kernel with atausb panics whe o usb/107827 usb [usb67] [ohci] [panic] ohci_add_done addr not found o usb/107388 usb [usb67] [usb8] [new driver] [patch] add utoppy device o usb/107243 usb [usb67] [cam] [quirk] [patch] Apacer USB Flash Drive q o usb/106041 usb [usb67] [usb8] [request] FreeBSD does not recognise Mu o usb/105361 usb [usb67] [panic] Kernel panic during unmounting mass st s usb/103917 usb [usb67] [uhub] USB driver reports "Addr 0 should never o usb/103418 usb [usb67] [usb8] [patch] [request] usbhidctl(8) add abil o usb/103046 usb [usb67] [ulpt] [patch] ulpt event driven I/O with sele o usb/101775 usb [usb67] [usb8] [libusbhid] [patch] possible error in r o usb/101761 usb [usb67] [patch] [request] usb.h: increase maximal size o usb/100746 usb [usb67] [ukbd] system does not boot due to USB keyboar o usb/99538 usb [keyboard] while using USB keyboard default params of o usb/99431 usb [keyboard] FreeBSD on MSI 6566E (Intel 845E motherboar o kern/99200 usb [bluetooth] SMP-Kernel crashes reliably when Bluetooth o usb/98343 usb [boot] BBB reset failed errors with Creative Muvo MP3 o usb/97472 usb [cam] [patch] add support for Olympus C150,D390 s usb/97286 usb [mouse] [request] MS Wireless Intellimouse Explorer 2. o usb/97175 usb [umass] [hang] USB cardreader hangs system o usb/96457 usb [umass] [panic] fatback on umass = reboot o usb/96381 usb [cam] [patch] add a quirk table entry for a flash ram o usb/96224 usb [usb] [msdosfs] mount_msdosfs cause page fault in sync s usb/96120 usb [ums] [request] USB mouse not always detected s usb/95636 usb [umass] [boot] 5 minute delay at boot when using VT620 o usb/95562 usb [umass] Write Stress in USB Mass drive causes "vinvalb s usb/95348 usb [keyboard] USB keyboard unplug causes noise on screen o usb/95037 usb [umass] USB disk not recognized on hot-plug. o usb/94897 usb [panic] Kernel Panic when cleanly unmounting USB disk o usb/94717 usb [ulpt] Reading from /dev/ulpt can break work of a UHCI o usb/94384 usb [panic] kernel panic with usb2 hardware o usb/93872 usb [cam] [patch] SCSI quirk required for ELTA 8061 OL USB o usb/93828 usb [ohci] [panic] ohci causes panic on boot (HP Pavillion o usb/93389 usb [umass] [patch] Digital Camera Pentax S60 don't work o usb/93155 usb [ulpt] /dev/ulpt0: device busy, USB printer does not w o usb/92852 usb [ums] [patch] Vertical scroll not working properly on o usb/92171 usb [panic] panic unplugging Vodafone Mobile Connect (UMTS o usb/92142 usb [uhub] SET_ADDR_FAILED and SHORT_XFER errors from usb o usb/92083 usb [ural] [panic] panic using WPA on ural NIC in 6.0-RELE o usb/92052 usb [ulpt] usbd causes defunct process with busy file-hand o usb/91906 usb [ehci] [hang] FreeBSD hangs while booting with USB leg o usb/91896 usb camcontrol(8): Serial Number of USB Memory Sticks is n o usb/91811 usb [umass] Compact Flash in HP Photosmart 2610 return " o usb/91629 usb [usb] usbd_abort_pipe() may result in infinite loop o usb/91546 usb [umodem] [patch] Nokia 6630 mobile phone does not work o usb/91538 usb [ulpt] [patch] Unable to print to EPSON CX3500 o usb/91283 usb [boot] [regression] booting very slow with usb devices o usb/91238 usb [umass] USB tape unit fails to write a second tape fil o usb/90700 usb [umass] [panic] Kernel panic on connect/mount/use umas o usb/89954 usb [umass] [panic] USB Disk driver race condition? s usb/89003 usb [request] LaCie Firewire drive not properly supported o usb/88743 usb [hang] [regression] USB makes kernel hang at boot (reg o usb/88408 usb [axe] axe0 read PHY failed o usb/87648 usb [mouse] Logitech USB-optical mouse problem. o usb/87224 usb [usb] Cannot mount USB Zip750 o usb/86767 usb [umass] [patch] bogus "slice starts beyond end of the o usb/86298 usb [mouse] Known good USB mouse won't work with correct s s usb/85067 usb [uscanner] Cannot attach ScanJet 4300C to usb device f usb/84750 usb [hang] 6-BETA2 reboot/shutdown with root_fs on externa s usb/84336 usb [usb] [reboot] instant system reboot when unmounting a o usb/83977 usb [ucom] [panic] ucom1: open bulk out error (addr 2): IN o usb/83863 usb [ugen] Communication problem between opensc/openct via o usb/83756 usb [ums] [patch] Microsoft Intellimouse Explorer 4.0A doe o usb/83563 usb [umass] [panic] Page Fault while detaching Mpman Usb d o usb/83504 usb [kernel] [patch] SpeedTouch USB stop working on recent o usb/82660 usb [ehci] [panic] EHCI: I/O stuck in state 'physrd'/panic s usb/82569 usb [umass] [panic] USB mass storage plug/unplug causes sy o usb/82520 usb [udbp] [reboot] Reboot when USL101 connected o usb/82350 usb [ucom] [panic] null pointer dereference in USB stack o usb/81621 usb [ehci] [hang] external hd hangs under load on ehci o usb/80935 usb [uvisor] [patch] uvisor.c is not work with CLIE TH55. o usb/80862 usb [patch] USB locking issues: missing some Giant calls o usb/80854 usb [patch] [request] suggestion for new iface-no-probe me o usb/80829 usb [modules] [panic] possible panic when loading USB-modu s usb/80777 usb [request] usb_rem_task() should wait for callback to c s usb/80776 usb [udav] [request] UDAV device driver shouldn't use usb_ o usb/80774 usb [patch] have "usbd_find_desc" in line with the other " o usb/80361 usb [umass] [patch] mounting of Dell usb-stick fails o usb/80040 usb [sound] [hang] Use of sound mixer causes system freeze o usb/79723 usb [usb] [request] prepare for high speed isochronous tra o usb/79722 usb [ehci] wrong alignments in ehci.h a usb/79656 usb [ehci] RHSC interrupts lost o usb/79524 usb [ulpt] printing to Minolta PagePro 1[23]xxW via USB fa o usb/79287 usb [uhci] [hang] UHCI hang after interrupt transfer o usb/79269 usb [ohci] USB ohci da0 plug/unplug causes crashes and loc o usb/78984 usb [umass] [patch] Creative MUVO umass failure o usb/77294 usb [ucom] [panic] ucom + ulpcom panic o usb/77184 usb [umass] [panic] kernel panic on USB device disconnect, o usb/76732 usb [ums] Mouse problems with USB KVM Switch o usb/76653 usb [umass] [patch] Problem with Asahi Optical usb device o usb/76461 usb [umass] disklabel of umass(4)-CAM(4)-da(4) not used by o usb/76395 usb [uhci] USB printer does not work, usbdevs says "addr 0 s usb/75928 usb [umass] [request] Cytronix SmartMedia card (SMC) reade o usb/75800 usb [ucom] ucom1: init failed STALLED error in time of syn o usb/75797 usb [sound] [regression] 5.3-STABLE(2005 1/4) detect USB h o usb/75764 usb [umass] [patch] "umass0: Phase Error" - no device for o usb/75705 usb [umass] [panic] da0 attach / Optio S4 (with backtrace) o usb/74771 usb [umass] [hang] mounting write-protected umass device a s usb/74453 usb [umass] [patch] Q-lity CD-RW USB ECW-043 (ScanLogic SL o usb/74211 usb [umass] USB flash drive causes CAM status 0x4 on 4.10R o usb/73307 usb [panic] Kernel panics on USB disconnect s usb/72733 usb [ucom] [request] Kyocera 7135 Palm OS connection probl o usb/71455 usb [umass] Slow USB umass performance of 5.3 o usb/71417 usb [ugen] Cryptoflex e-gate USB token (ugen0) communicati o usb/71416 usb [ugen] Cryptoflex e-gate USB token (ugen0) detach is n o usb/71280 usb [aue] aue0 device (linksys usb100tx) doesn't work in 1 o usb/71155 usb [ulpt] misbehaving usb-printer hangs processes, causes o usb/70523 usb [umct] [patch] umct sending/receiving wrong characters o usb/69006 usb [usbdevs] [patch] Apple Cinema Display hangs USB ports o usb/68232 usb [ugen] [patch] ugen(4) isochronous handling correction o usb/67301 usb [uftdi] [panic] RTS and system panic o usb/66547 usb [ucom] Palm Tungsten T USB does not initialize correct o usb/63621 usb [umass] [panic] USB MemoryStick Reader stalls/crashes s usb/62257 usb [umass] [request] card reader UCR-61S2B is only half-s o usb/59698 usb [keyboard] [patch] Rework of ukbd HID to AT code trans s bin/57255 usb [patch] usbd(8) and multi-function devices s usb/52026 usb [usb] [request] umass driver support for InSystem ISD2 s usb/51958 usb [urio] [patch] update for urio driver o i386/46371 usb USB controller cannot be initialized on IBM Netfinity o usb/40948 usb [umass] [request] USB HP CDW8200 does not work o usb/30929 usb [usb] [patch] use usbd to initialize USB ADSL modem 314 problems total. From owner-freebsd-usb@FreeBSD.ORG Mon Nov 16 22:56:10 2009 Return-Path: Delivered-To: freebsd-usb@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9FB8D106568B; Mon, 16 Nov 2009 22:56:10 +0000 (UTC) (envelope-from gavin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 76F198FC0C; Mon, 16 Nov 2009 22:56:10 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id nAGMuAnc026296; Mon, 16 Nov 2009 22:56:10 GMT (envelope-from gavin@freefall.freebsd.org) Received: (from gavin@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id nAGMu9jJ026292; Mon, 16 Nov 2009 22:56:09 GMT (envelope-from gavin) Date: Mon, 16 Nov 2009 22:56:09 GMT Message-Id: <200911162256.nAGMu9jJ026292@freefall.freebsd.org> To: freebsd.alex@spamfoodie.com, gavin@FreeBSD.org, freebsd-usb@FreeBSD.org From: gavin@FreeBSD.org Cc: Subject: Re: usb/127549: [umass] [usb67] [patch] Meizu MiniPlayer M6 (SL) requires some quirks X-BeenThere: freebsd-usb@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: FreeBSD support for USB List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 16 Nov 2009 22:56:10 -0000 Old Synopsis: [umass] [patch] Meizu MiniPlayer M6 (SL) requires some quirks New Synopsis: [umass] [usb67] [patch] Meizu MiniPlayer M6 (SL) requires some quirks State-Changed-From-To: suspended->patched State-Changed-By: gavin State-Changed-When: Mon Nov 16 22:53:28 UTC 2009 State-Changed-Why: This is fixed in 8 and 7, but not merged to 6. Mark patched in case somebody wants to do that. http://www.freebsd.org/cgi/query-pr.cgi?pr=127549 From owner-freebsd-usb@FreeBSD.ORG Mon Nov 16 23:19:51 2009 Return-Path: Delivered-To: freebsd-usb@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3BFB1106566C; Mon, 16 Nov 2009 23:19:51 +0000 (UTC) (envelope-from linimon@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 136148FC12; Mon, 16 Nov 2009 23:19:51 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id nAGNJoI2043736; Mon, 16 Nov 2009 23:19:50 GMT (envelope-from linimon@freefall.freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id nAGNJonq043732; Mon, 16 Nov 2009 23:19:50 GMT (envelope-from linimon) Date: Mon, 16 Nov 2009 23:19:50 GMT Message-Id: <200911162319.nAGNJonq043732@freefall.freebsd.org> To: linimon@FreeBSD.org, freebsd-bugs@FreeBSD.org, freebsd-usb@FreeBSD.org From: linimon@FreeBSD.org Cc: Subject: Re: kern/140614: [uplcom] [patch] adding support for Radio Shack Gigware USB to Serial cable (26-949) to uplcom X-BeenThere: freebsd-usb@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: FreeBSD support for USB List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 16 Nov 2009 23:19:51 -0000 Old Synopsis: adding support for Radio Shack Gigware USB to Serial cable (26-949) to uplcom New Synopsis: [uplcom] [patch] adding support for Radio Shack Gigware USB to Serial cable (26-949) to uplcom Responsible-Changed-From-To: freebsd-bugs->freebsd-usb Responsible-Changed-By: linimon Responsible-Changed-When: Mon Nov 16 23:19:21 UTC 2009 Responsible-Changed-Why: Over to maintainer(s). http://www.freebsd.org/cgi/query-pr.cgi?pr=140614 From owner-freebsd-usb@FreeBSD.ORG Mon Nov 16 23:24:44 2009 Return-Path: Delivered-To: freebsd-usb@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5C773106566C for ; Mon, 16 Nov 2009 23:24:44 +0000 (UTC) (envelope-from erleya@gmail.com) Received: from smtpfb1-g21.free.fr (smtpfb1-g21.free.fr [212.27.42.9]) by mx1.freebsd.org (Postfix) with ESMTP id E27838FC13 for ; Mon, 16 Nov 2009 23:24:42 +0000 (UTC) Received: from smtp3-g21.free.fr (smtp3-g21.free.fr [212.27.42.3]) by smtpfb1-g21.free.fr (Postfix) with ESMTP id 0F9072DA23 for ; Tue, 17 Nov 2009 00:07:46 +0100 (CET) Received: from smtp3-g21.free.fr (localhost [127.0.0.1]) by smtp3-g21.free.fr (Postfix) with ESMTP id 1E6608180BF; Tue, 17 Nov 2009 00:07:40 +0100 (CET) Received: from mail.erley.homeip.net (erley.homeip.net [78.224.123.171]) by smtp3-g21.free.fr (Postfix) with ESMTP id E92058180B0; Tue, 17 Nov 2009 00:07:37 +0100 (CET) Received: by mail.erley.homeip.net (Postfix, from userid 1001) id 75A45519C; Tue, 17 Nov 2009 00:07:41 +0100 (CET) Date: Tue, 17 Nov 2009 00:07:41 +0100 From: Alex Troussov To: freebsd-usb@freebsd.org Message-ID: <20091116230741.GA46228@erley.homeip.net> Mime-Version: 1.0 Content-Type: text/plain; charset=koi8-r Content-Disposition: inline Content-Transfer-Encoding: 8bit User-Agent: Mutt/1.4.2.3i Cc: Subject: usb printer rejects incoming data X-BeenThere: freebsd-usb@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: FreeBSD support for USB List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 16 Nov 2009 23:24:44 -0000 Hello all, Recently I upgraded to the latest RELENG_8 and rebuilt world. Now I'm having strange problems with my USB printer (Samsung CLP 315). Digging into it these last days, I found that it seems to refuse incoming data via USB port. I'm using foo2qpdl filter and it generates a standard QPDL stream for that printer, the problem occurs when I try to feed that data to the printer. Here is some details about my environment: >uname -a FreeBSD xxxx.yyyy.net 8.0-PRERELEASE FreeBSD 8.0-PRERELEASE #26: Sun Nov 15 15:44:11 CET 2009 root@xxxx.yyyy.net:/usr/obj/usr/src/sys/ERLEY i386 >sudo usbconfig ugen0.1: at usbus0, cfg=0 md=HOST spd=FULL (12Mbps) pwr=ON ugen1.1: at usbus1, cfg=0 md=HOST spd=FULL (12Mbps) pwr=ON ugen2.1: at usbus2, cfg=0 md=HOST spd=FULL (12Mbps) pwr=ON ugen3.1: at usbus3, cfg=0 md=HOST spd=FULL (12Mbps) pwr=ON ugen4.1: at usbus4, cfg=0 md=HOST spd=HIGH (480Mbps) pwr=ON ugen4.2: <802.11 bg WLAN Ralink> at usbus4, cfg=0 md=HOST spd=HIGH (480Mbps) pwr=ON ugen0.2: at usbus0, cfg=0 md=HOST spd=FULL (12Mbps) pwr=ON ugen4.3: at usbus4, cfg=0 md=HOST spd=HIGH (480Mbps) pwr=ON ugen1.2: at usbus1, cfg=0 md=HOST spd=LOW (1.5Mbps) pwr=ON >sudo ls -l /dev/u* | grep 4.3 lrw-rw-rw- 1 daemon daemon 9 16 ΞΟΡ 14:07 /dev/ugen4.3@ -> usb/4.3.0 crw-rw-rw- 1 daemon daemon 0, 140 16 ΞΟΡ 14:07 4.3.0 crw-rw-rw- 1 daemon daemon 0, 142 16 ΞΟΡ 14:07 4.3.1 crw-rw-rw- 1 daemon daemon 0, 143 16 ΞΟΡ 14:07 4.3.2 >sudo cat tiger.qpdl > /dev/usb/4.3.0 cat: stdout: Input/output error I'm sure this file tiger.qpdl contains the data needed, I created it from /usr/local/share/ghostscript/8.64/examples/tiger.eps using gs + foo2qpdl and tested on another PC. Any ideas? WBR, Alex From owner-freebsd-usb@FreeBSD.ORG Tue Nov 17 02:08:34 2009 Return-Path: Delivered-To: freebsd-usb@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D1D00106566B for ; Tue, 17 Nov 2009 02:08:34 +0000 (UTC) (envelope-from daichi@ongs.co.jp) Received: from natial.ongs.co.jp (natial.ongs.co.jp [202.216.246.90]) by mx1.freebsd.org (Postfix) with ESMTP id A2E4C8FC25 for ; Tue, 17 Nov 2009 02:08:34 +0000 (UTC) Received: from parancell.ongs.co.jp (dullmdaler.ongs.co.jp [202.216.246.94]) by natial.ongs.co.jp (Postfix) with ESMTPSA id F045812543B; Tue, 17 Nov 2009 10:50:25 +0900 (JST) Date: Tue, 17 Nov 2009 10:50:25 +0900 From: Daichi GOTO To: freebsd-usb@freebsd.org Message-Id: <20091117105025.55e8d003.daichi@ongs.co.jp> Organization: ONGS Inc. X-Mailer: Sylpheed 2.7.1 (GTK+ 2.16.6; amd64-portbld-freebsd9.0) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Cc: ozawa@ongs.co.jp Subject: some quirk issue around uhid operations X-BeenThere: freebsd-usb@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: FreeBSD support for USB List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 17 Nov 2009 02:08:34 -0000 Hi USB developers :) Our company's developer Ozawa-san has found some quirk issue around uhid device operations. For example, using uhid0 from processA and using uhid1 from processB at the same time, sometimes read(2) operation leads handup. In case useing those not at same time, there is no hangup. In this week he has been doing test and above issue happens all the time. At last he didn't find does which read(2) or write(2) operations have a bug. If you have some ideas or can resolve this issue, please help us! -- Daichi GOTO CEO | ONGS Inc. 81-42-316-7945 | daichi@ongs.co.jp | http://www.ongs.co.jp LinkedIn: http://linkedin.com/in/daichigoto From owner-freebsd-usb@FreeBSD.ORG Tue Nov 17 08:14:36 2009 Return-Path: Delivered-To: freebsd-usb@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id DAA92106566C for ; Tue, 17 Nov 2009 08:14:36 +0000 (UTC) (envelope-from hselasky@c2i.net) Received: from swip.net (mailfe14.swip.net [212.247.155.161]) by mx1.freebsd.org (Postfix) with ESMTP id 4397E8FC14 for ; Tue, 17 Nov 2009 08:14:35 +0000 (UTC) X-Cloudmark-Score: 0.000000 [] X-Cloudmark-Analysis: v=1.0 c=1 a=Oj1yR5vXg1IA:10 a=MnI1ikcADjEx7bvsp0jZvQ==:17 a=6AjnkdnuAAAA:8 a=RcznrSnQbRE4wHJaCrgA:9 a=jhRweydA5urPM4u9tEAA:7 a=y8fZDv7WMdYCRQowalTe5NVr2EIA:4 Received: from [188.126.201.140] (account mc467741@c2i.net HELO laptop.adsl.tele2.no) by mailfe14.swip.net (CommuniGate Pro SMTP 5.2.16) with ESMTPA id 579689233; Tue, 17 Nov 2009 09:14:33 +0100 From: Hans Petter Selasky To: freebsd-usb@freebsd.org Date: Tue, 17 Nov 2009 09:16:03 +0100 User-Agent: KMail/1.11.4 (FreeBSD/9.0-CURRENT; KDE/4.2.4; i386; ; ) References: <20091116230741.GA46228@erley.homeip.net> In-Reply-To: <20091116230741.GA46228@erley.homeip.net> X-Face: (%:6u[ldzJ`0qjD7sCkfdMmD*RxpO< =?utf-8?q?Q0yAl=7E=3F=60=27F=3FjDVb=5DE6TQ7=27=23h-VlLs=7Dk/=0A=09?=(yxg(p!IL.`#ng"%`BMrham7%UK,}VH\wUOm=^>wEEQ+KWt[{J#x6ow~JO:,zwp.(t; @ =?utf-8?q?Aq=0A=09=3A4=3A=26nFCgDb8=5B3oIeTb=5E=27?=",; u{5{}C9>"PuY\)!=#\u9SSM-nz8+SR~B\!qBv MIME-Version: 1.0 Content-Type: Text/Plain; charset="koi8-r" Content-Transfer-Encoding: quoted-printable Content-Disposition: inline Message-Id: <200911170916.04429.hselasky@c2i.net> Cc: Subject: Re: usb printer rejects incoming data X-BeenThere: freebsd-usb@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: FreeBSD support for USB List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 17 Nov 2009 08:14:36 -0000 On Tuesday 17 November 2009 00:07:41 Alex Troussov wrote: > Hello all, > > Recently I upgraded to the latest RELENG_8 and rebuilt world. > Now I'm having strange problems with my USB printer (Samsung CLP 315). > Digging into it these last days, I found that it seems to refuse > incoming data via USB port. > I'm using foo2qpdl filter and it generates a standard QPDL stream for that > printer, the problem occurs when I try to feed that data to the printer. > > Here is some details about my environment: > >uname -a > > FreeBSD xxxx.yyyy.net 8.0-PRERELEASE FreeBSD 8.0-PRERELEASE #26: Sun > Nov 15 15:44:11 CET 2009 root@xxxx.yyyy.net:/usr/obj/usr/src/sys/ERLEY=20 > i386 > > >sudo usbconfig > > ugen0.1: at usbus0, cfg=3D0 md=3DHOST spd=3DFULL (1= 2Mbps) > pwr=3DON ugen1.1: at usbus1, cfg=3D0 md=3DHOST spd= =3DFULL > (12Mbps) pwr=3DON ugen2.1: at usbus2, cfg=3D0 md=3D= HOST > spd=3DFULL (12Mbps) pwr=3DON ugen3.1: at usbus3, cf= g=3D0 > md=3DHOST spd=3DFULL (12Mbps) pwr=3DON ugen4.1: at = usbus4, > cfg=3D0 md=3DHOST spd=3DHIGH (480Mbps) pwr=3DON ugen4.2: <802.11 bg WLAN = Ralink> at > usbus4, cfg=3D0 md=3DHOST spd=3DHIGH (480Mbps) pwr=3DON ugen0.2: > at usbus0, cfg=3D0 md=3DHOST spd=3DFULL (12Mbps) pwr=3DON ugen4.3: Samsung Electronics Co., Ltd.> at usbus4, cfg=3D0 md=3DHOST spd=3DHIGH (4= 80Mbps) > pwr=3DON ugen1.2: at usbus1, cfg=3D0 md=3DHOST= spd=3DLOW > (1.5Mbps) pwr=3DON > > >sudo ls -l /dev/u* | grep 4.3 > > lrw-rw-rw- 1 daemon daemon 9 16 =CE=CF=D1 14:07 /dev/ugen4.3@= -> > usb/4.3.0 crw-rw-rw- 1 daemon daemon 0, 140 16 =CE=CF=D1 14:07 4.3= =2E0 > crw-rw-rw- 1 daemon daemon 0, 142 16 =CE=CF=D1 14:07 4.3.1 > crw-rw-rw- 1 daemon daemon 0, 143 16 =CE=CF=D1 14:07 4.3.2 > > >sudo cat tiger.qpdl > /dev/usb/4.3.0 > > cat: stdout: Input/output error > > I'm sure this file tiger.qpdl contains the data needed, I created it > from /usr/local/share/ghostscript/8.64/examples/tiger.eps using gs + > foo2qpdl and tested on another PC. Hi, =2E0 is the control endpoint. You won't get any data through there :-) See: usbconfig -u 4 -a 3 dump_curr_config_desc for the correct OUT endpoint. =2D-HPS From owner-freebsd-usb@FreeBSD.ORG Tue Nov 17 17:23:13 2009 Return-Path: Delivered-To: freebsd-usb@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 7B3461065693 for ; Tue, 17 Nov 2009 17:23:13 +0000 (UTC) (envelope-from erleya@gmail.com) Received: from smtp3-g21.free.fr (smtp3-g21.free.fr [212.27.42.3]) by mx1.freebsd.org (Postfix) with ESMTP id 11E9A8FC1E for ; Tue, 17 Nov 2009 17:23:11 +0000 (UTC) Received: from smtp3-g21.free.fr (localhost [127.0.0.1]) by smtp3-g21.free.fr (Postfix) with ESMTP id 361CE818178; Tue, 17 Nov 2009 18:23:06 +0100 (CET) Received: from mail.erley.homeip.net (erley.homeip.net [78.224.123.171]) by smtp3-g21.free.fr (Postfix) with ESMTP id 518B081821E; Tue, 17 Nov 2009 18:23:04 +0100 (CET) Received: by mail.erley.homeip.net (Postfix, from userid 1001) id AD72D519E; Tue, 17 Nov 2009 18:23:10 +0100 (CET) Date: Tue, 17 Nov 2009 18:23:10 +0100 From: Alex Troussov To: Hans Petter Selasky Message-ID: <20091117172310.GA54813@erley.homeip.net> References: <20091116230741.GA46228@erley.homeip.net> <200911170916.04429.hselasky@c2i.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200911170916.04429.hselasky@c2i.net> User-Agent: Mutt/1.4.2.3i Cc: freebsd-usb@freebsd.org Subject: Re: usb printer rejects incoming data [SOLVED] X-BeenThere: freebsd-usb@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: FreeBSD support for USB List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 17 Nov 2009 17:23:13 -0000 On Tue, Nov 17, 2009 at 09:16:03AM +0100, Hans Petter Selasky wrote: > > Recently I upgraded to the latest RELENG_8 and rebuilt world. > > Now I'm having strange problems with my USB printer (Samsung CLP 315). > > Digging into it these last days, I found that it seems to refuse > > incoming data via USB port. > > > > >sudo cat tiger.qpdl > /dev/usb/4.3.0 > > > > cat: stdout: Input/output error > > > > I'm sure this file tiger.qpdl contains the data needed, I created it > > from /usr/local/share/ghostscript/8.64/examples/tiger.eps using gs + > > foo2qpdl and tested on another PC. > > .0 is the control endpoint. You won't get any data through there :-) > > See: > > usbconfig -u 4 -a 3 dump_curr_config_desc > > for the correct OUT endpoint. OK, here is what it gives: >sudo usbconfig -u 4 -a 3 dump_curr_config_desc ugen4.3: at usbus4, cfg=0 md=HOST spd=HIGH (480Mbps) pwr=ON Configuration index 0 bLength = 0x0009 bDescriptorType = 0x0002 wTotalLength = 0x0020 bNumInterfaces = 0x0001 bConfigurationValue = 0x0001 iConfiguration = 0x0000 bmAttributes = 0x00c0 bMaxPower = 0x0001 Interface 0 bLength = 0x0009 bDescriptorType = 0x0004 bInterfaceNumber = 0x0000 bAlternateSetting = 0x0000 bNumEndpoints = 0x0002 bInterfaceClass = 0x0007 bInterfaceSubClass = 0x0001 bInterfaceProtocol = 0x0002 iInterface = 0x0000 Endpoint 0 bLength = 0x0007 bDescriptorType = 0x0005 bEndpointAddress = 0x0002 bmAttributes = 0x0002 wMaxPacketSize = 0x0200 bInterval = 0x000a bRefresh = 0x0000 bSynchAddress = 0x0000 Endpoint 1 bLength = 0x0007 bDescriptorType = 0x0005 bEndpointAddress = 0x0081 bmAttributes = 0x0002 wMaxPacketSize = 0x0200 bInterval = 0x000a bRefresh = 0x0000 bSynchAddress = 0x0000 I don't know where to look for the right endpoint here... But I tried every endpoint - /dev/usb/4.3.0, /dev/usb/4.3.1 and /dev/usb/4.3.2 - and the last one worked. So, the problem is solved for me. Just for my curiosity, where can I read more about USB endpoints? WBR, Alex From owner-freebsd-usb@FreeBSD.ORG Wed Nov 18 07:46:29 2009 Return-Path: Delivered-To: freebsd-usb@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 28C1B1065670; Wed, 18 Nov 2009 07:46:29 +0000 (UTC) (envelope-from gjin@ubicom.com) Received: from server70.appriver.com (server70.appriver.com [69.20.119.203]) by mx1.freebsd.org (Postfix) with ESMTP id AB3438FC19; Wed, 18 Nov 2009 07:46:28 +0000 (UTC) X-Policy: GLOBAL - ubicom.com X-Policy: GLOBAL - ubicom.com X-Policy: GLOBAL - ubicom.com X-Primary: gjin@ubicom.com X-Note: This Email was scanned by AppRiver SecureTide X-Virus-Scan: V- X-Note: TCH-CT/SI:0-315/SG:5 11/18/2009 2:46:04 AM X-GBUdb-Analysis: 0, 216.112.109.98, Ugly c=0.730377 p=-0.916458 Source White X-Signature-Violations: 0-0-0-12577-c X-Note: Spam Tests Failed: X-Country-Path: UNITED STATES->UNITED STATES X-Note-Sending-IP: 216.112.109.98 X-Note-Reverse-DNS: 216.112.109.98.ptr.us.xo.net X-Note-WHTLIST: gjin@ubicom.com X-Note: User Rule Hits: X-Note: Global Rule Hits: 115 116 117 118 122 123 220 X-Note: Mail Class: VALID X-Note: Headers Injected Received: from [216.112.109.98] (HELO stork.scenix.com) by server70.appriver.com (CommuniGate Pro SMTP 5.3c2) with ESMTP id 107486304; Wed, 18 Nov 2009 02:46:28 -0500 X-MimeOLE: Produced By Microsoft Exchange V6.5 Content-class: urn:content-classes:message MIME-Version: 1.0 Date: Tue, 17 Nov 2009 23:33:07 -0800 Message-ID: X-MS-Has-Attach: X-MS-TNEF-Correlator: Thread-Topic: 8.0-RC3 USB lock up on mounting two partitions from one USB drive Thread-Index: AcpoHXlt4yGeiBLfQTudmr8mdClCPgAAwBna References: From: "Guojun Jin" To: "Guojun Jin" , Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: questions@freebsd.org, freebsd-usb@freebsd.org Subject: RE: 8.0-RC3 USB lock up on mounting two partitions from one USB drive X-BeenThere: freebsd-usb@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: FreeBSD support for USB List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 18 Nov 2009 07:46:29 -0000 Did newfs on those partition and made things worsen -- restore = completely fails: (I had experienced another similar problem on an IDE, which works well = for 6.4 and 7.2, but 8.0.) This dirve works fine under FreeBSD 6.4. Is something new in 8.0 making disk partition schema changed? g_vfs_done():da0s3d[READ(offset=3D98304, length=3D16384)]error =3D 6 g_vfs_done():da0s3d[WRITE(offset=3D192806912, length=3D16384)]error =3D = 6 fopen: Device not configured cannot create save file ./restoresymtable for symbol table abort? [yn] (da0:umass-sim0:0:0:0): Synchronize cache failed, status = =3D=3D 0xa, scs i status =3D=3D 0x0 (da0:umass-sim0:0:0:0): removing device entry ugen1.2: at usbus1 umass0: on usbus1 umass0: SCSI over Bulk-Only; quirks =3D 0x0000 umass0:0:0:-1: Attached to scbus0 da0 at umass-sim0 bus 0 target 0 lun 0 da0: Fixed Direct Access SCSI-0 device da0: 40.000MB/s transfers da0: 114473MB (234441648 512 byte sectors: 255H 63S/T 14593C) Device da0s3d went missing before all of the data could be written to = it; expect data loss. 99 23:19 sysinstall 100 23:20 newfs /dev/da0s3d 101 23:20 newfs /dev/da0s3e 102 23:21 mount /dev/da0s3d /mnt 103 23:21 cd /mnt 104 23:21 dump -0f - /home | restore -rf - 105 23:27 history 15 -----Original Message----- From: Guojun Jin Sent: Tue 11/17/2009 11:05 PM To: freebsd-stable@freebsd.org Cc: questions@freebsd.org; freebsd-usb@freebsd.org Subject: 8.0-RC3 USB lock up on mounting two partitions from one USB = drive =20 When mounting two partitions from a USB dirve, it can cause the drive = access lock up for a long time. Details: Terminal 1 -- term1# mount /dev/da0s3d /mnt term1# cd /mnt ; rm -fr * when rm starts, go to terminal 2 and do: term2# mount /dev/da0s3e /dist ### this will hanging for a long time and = USB hard drive activity light is off. After more than 1-2 minutes, mount returns, and the drive activity light = is blinking, thus removing is going on. term2# ls /dist ### this will cause dUSB dirve hanging again -- no = avtivity. Similarly, ls will finish in a couple of miniutes or longer, the rm = command continues; but for a while, the drive activity will stop again. Reboot machine, repeat the above steps, and result will be the same. = Reboot machine again, and just mount one partition, then doing "rm -rf *" without involve the second partition, = rm will finish quickly. Has anyone obseved this behave on 8.0-RC? -Jin From owner-freebsd-usb@FreeBSD.ORG Wed Nov 18 08:23:25 2009 Return-Path: Delivered-To: freebsd-usb@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5C0FA106566C; Wed, 18 Nov 2009 08:23:25 +0000 (UTC) (envelope-from gjin@ubicom.com) Received: from server70.appriver.com (server70.appriver.com [69.20.119.203]) by mx1.freebsd.org (Postfix) with ESMTP id E1F898FC16; Wed, 18 Nov 2009 08:23:24 +0000 (UTC) X-Policy: GLOBAL - ubicom.com X-Policy: GLOBAL - ubicom.com X-Policy: GLOBAL - ubicom.com X-Primary: gjin@ubicom.com X-Note: This Email was scanned by AppRiver SecureTide X-Virus-Scan: V- X-Note: TCH-CT/SI:0-125/SG:5 11/18/2009 2:23:04 AM X-GBUdb-Analysis: 0, 216.112.109.98, Ugly c=0.730204 p=-0.916318 Source White X-Signature-Violations: 0-0-0-5974-c X-Note: Spam Tests Failed: X-Country-Path: UNITED STATES->UNITED STATES X-Note-Sending-IP: 216.112.109.98 X-Note-Reverse-DNS: 216.112.109.98.ptr.us.xo.net X-Note-WHTLIST: gjin@ubicom.com X-Note: User Rule Hits: X-Note: Global Rule Hits: 115 116 117 118 122 123 220 X-Note: Mail Class: VALID X-Note: Headers Injected Received: from [216.112.109.98] (HELO stork.scenix.com) by server70.appriver.com (CommuniGate Pro SMTP 5.3c2) with ESMTP id 107485680; Wed, 18 Nov 2009 02:23:24 -0500 X-MimeOLE: Produced By Microsoft Exchange V6.5 Content-class: urn:content-classes:message MIME-Version: 1.0 Date: Tue, 17 Nov 2009 23:05:13 -0800 Message-ID: X-MS-Has-Attach: X-MS-TNEF-Correlator: Thread-Topic: 8.0-RC3 USB lock up on mounting two partitions from one USB drive Thread-Index: AcpoHXlt4yGeiBLfQTudmr8mdClCPg== From: "Guojun Jin" To: Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: questions@freebsd.org, freebsd-usb@freebsd.org Subject: 8.0-RC3 USB lock up on mounting two partitions from one USB drive X-BeenThere: freebsd-usb@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: FreeBSD support for USB List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 18 Nov 2009 08:23:25 -0000 When mounting two partitions from a USB dirve, it can cause the drive = access lock up for a long time. Details: Terminal 1 -- term1# mount /dev/da0s3d /mnt term1# cd /mnt ; rm -fr * when rm starts, go to terminal 2 and do: term2# mount /dev/da0s3e /dist ### this will hanging for a long time and = USB hard drive activity light is off. After more than 1-2 minutes, mount returns, and the drive activity light = is blinking, thus removing is going on. term2# ls /dist ### this will cause dUSB dirve hanging again -- no = avtivity. Similarly, ls will finish in a couple of miniutes or longer, the rm = command continues; but for a while, the drive activity will stop again. Reboot machine, repeat the above steps, and result will be the same. = Reboot machine again, and just mount one partition, then doing "rm -rf *" without involve the second partition, = rm will finish quickly. Has anyone obseved this behave on 8.0-RC? -Jin From owner-freebsd-usb@FreeBSD.ORG Wed Nov 18 08:40:14 2009 Return-Path: Delivered-To: freebsd-usb@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id DC8D0106568B for ; Wed, 18 Nov 2009 08:40:14 +0000 (UTC) (envelope-from hselasky@c2i.net) Received: from swip.net (mailfe03.swip.net [212.247.154.65]) by mx1.freebsd.org (Postfix) with ESMTP id 40D108FC23 for ; Wed, 18 Nov 2009 08:40:13 +0000 (UTC) X-Cloudmark-Score: 0.000000 [] X-Cloudmark-Analysis: v=1.0 c=1 a=v-gVKjtnu_kA:10 a=MnI1ikcADjEx7bvsp0jZvQ==:17 a=2nFX9Wvc9_UQQZHfSCQA:9 a=SlFBTSeQXY_I25Dx0RYA:7 a=NAeEpGEGbMQbFca7egfp-Tk7nlcA:4 Received: from [188.126.201.140] (account mc467741@c2i.net HELO laptop.adsl.tele2.no) by mailfe03.swip.net (CommuniGate Pro SMTP 5.2.16) with ESMTPA id 1347088968; Wed, 18 Nov 2009 09:40:10 +0100 From: Hans Petter Selasky To: Alex Troussov Date: Wed, 18 Nov 2009 09:41:43 +0100 User-Agent: KMail/1.11.4 (FreeBSD/9.0-CURRENT; KDE/4.2.4; i386; ; ) References: <20091116230741.GA46228@erley.homeip.net> <200911170916.04429.hselasky@c2i.net> <20091117172310.GA54813@erley.homeip.net> In-Reply-To: <20091117172310.GA54813@erley.homeip.net> X-Face: (%:6u[ldzJ`0qjD7sCkfdMmD*RxpOwEEQ+KWt[{J#x6ow~JO:,zwp.(t; @Aq :4:&nFCgDb8[3oIeTb^'",;u{5{}C9>"PuY\)!=#\u9SSM-nz8+SR~B\!qBv MIME-Version: 1.0 Content-Type: Text/Plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200911180941.43970.hselasky@c2i.net> Cc: freebsd-usb@freebsd.org Subject: Re: usb printer rejects incoming data [SOLVED] X-BeenThere: freebsd-usb@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: FreeBSD support for USB List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 18 Nov 2009 08:40:14 -0000 On Tuesday 17 November 2009 18:23:10 Alex Troussov wrote: > On Tue, Nov 17, 2009 at 09:16:03AM +0100, Hans Petter Selasky wrote: > > > Recently I upgraded to the latest RELENG_8 and rebuilt world. > > > Now I'm having strange problems with my USB printer (Samsung CLP 315). > > > Digging into it these last days, I found that it seems to refuse > > > incoming data via USB port. > > > > > > >sudo cat tiger.qpdl > /dev/usb/4.3.0 > > > > > > cat: stdout: Input/output error > > > > > > I'm sure this file tiger.qpdl contains the data needed, I created it > > > from /usr/local/share/ghostscript/8.64/examples/tiger.eps using gs + > > > foo2qpdl and tested on another PC. > > > > .0 is the control endpoint. You won't get any data through there :-) > > > > See: > > > > usbconfig -u 4 -a 3 dump_curr_config_desc > > > > for the correct OUT endpoint. > > OK, here is what it gives: > >sudo usbconfig -u 4 -a 3 dump_curr_config_desc > > ugen4.3: at usbus4, cfg=0 > md=HOST spd=HIGH (480Mbps) pwr=ON > > Configuration index 0 > > bLength = 0x0009 > bDescriptorType = 0x0002 > wTotalLength = 0x0020 > bNumInterfaces = 0x0001 > bConfigurationValue = 0x0001 > iConfiguration = 0x0000 > bmAttributes = 0x00c0 > bMaxPower = 0x0001 > > Interface 0 > bLength = 0x0009 > bDescriptorType = 0x0004 > bInterfaceNumber = 0x0000 > bAlternateSetting = 0x0000 > bNumEndpoints = 0x0002 > bInterfaceClass = 0x0007 > bInterfaceSubClass = 0x0001 > bInterfaceProtocol = 0x0002 > iInterface = 0x0000 > > Endpoint 0 > bLength = 0x0007 > bDescriptorType = 0x0005 > bEndpointAddress = 0x0002 > bmAttributes = 0x0002 > wMaxPacketSize = 0x0200 > bInterval = 0x000a > bRefresh = 0x0000 > bSynchAddress = 0x0000 > > Endpoint 1 > bLength = 0x0007 > bDescriptorType = 0x0005 > bEndpointAddress = 0x0081 > bmAttributes = 0x0002 > wMaxPacketSize = 0x0200 > bInterval = 0x000a > bRefresh = 0x0000 > bSynchAddress = 0x0000 > > I don't know where to look for the right endpoint here... > > But I tried every endpoint - /dev/usb/4.3.0, /dev/usb/4.3.1 and > /dev/usb/4.3.2 - and the last one worked. > So, the problem is solved for me. > > Just for my curiosity, where can I read more about USB endpoints? Try google. I don't have any links at hand. --HPS From owner-freebsd-usb@FreeBSD.ORG Wed Nov 18 11:12:04 2009 Return-Path: Delivered-To: freebsd-usb@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 470C3106566B; Wed, 18 Nov 2009 11:12:04 +0000 (UTC) (envelope-from hselasky@c2i.net) Received: from swip.net (mailfe01.swip.net [212.247.154.1]) by mx1.freebsd.org (Postfix) with ESMTP id 45CD48FC0C; Wed, 18 Nov 2009 11:12:02 +0000 (UTC) X-Cloudmark-Score: 0.000000 [] X-Cloudmark-Analysis: v=1.0 c=1 a=Qg9icxBjAUgA:10 a=MnI1ikcADjEx7bvsp0jZvQ==:17 a=6I5d2MoRAAAA:8 a=caBVQQNvtF_xMuiLE10A:9 a=slJwAA-skHbgy6KL22EA:7 a=DB2JNVcK8m7HY3EDof92nkJLRfMA:4 a=SV7veod9ZcQA:10 a=87M9vB3w3L_mK0ZG:21 a=VZFYkrE5KeSxy1Y2:21 Received: from [188.126.201.140] (account mc467741@c2i.net HELO laptop.adsl.tele2.no) by mailfe01.swip.net (CommuniGate Pro SMTP 5.2.16) with ESMTPA id 278029068; Wed, 18 Nov 2009 12:12:01 +0100 From: Hans Petter Selasky To: freebsd-usb@freebsd.org Date: Wed, 18 Nov 2009 12:13:32 +0100 User-Agent: KMail/1.11.4 (FreeBSD/9.0-CURRENT; KDE/4.2.4; i386; ; ) References: In-Reply-To: X-Face: (%:6u[ldzJ`0qjD7sCkfdMmD*RxpOwEEQ+KWt[{J#x6ow~JO:,zwp.(t; @Aq :4:&nFCgDb8[3oIeTb^'",;u{5{}C9>"PuY\)!=#\u9SSM-nz8+SR~B\!qBv MIME-Version: 1.0 Content-Type: Text/Plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200911181213.34112.hselasky@c2i.net> Cc: questions@freebsd.org, freebsd-stable@freebsd.org, Guojun Jin Subject: Re: 8.0-RC3 USB lock up on mounting two partitions from one USB drive X-BeenThere: freebsd-usb@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: FreeBSD support for USB List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 18 Nov 2009 11:12:04 -0000 Hi, I'm not sure if this is an USB issue or not. If you get READ/WRITE errors and the drive simply dies then it might be the case. Else it is a system issue. There are quirks for mass storage which you can add to sys/dev/usb/storage/umass.c . --HPS On Wednesday 18 November 2009 08:33:07 Guojun Jin wrote: > Did newfs on those partition and made things worsen -- restore completely > fails: (I had experienced another similar problem on an IDE, which works > well for 6.4 and 7.2, but 8.0.) This dirve works fine under FreeBSD 6.4. > > Is something new in 8.0 making disk partition schema changed? > > g_vfs_done():da0s3d[READ(offset=98304, length=16384)]error = 6 > g_vfs_done():da0s3d[WRITE(offset=192806912, length=16384)]error = 6 > fopen: Device not configured > cannot create save file ./restoresymtable for symbol table > abort? [yn] (da0:umass-sim0:0:0:0): Synchronize cache failed, status == > 0xa, scs i status == 0x0 > (da0:umass-sim0:0:0:0): removing device entry > ugen1.2: at usbus1 > umass0: on usbus1 > umass0: SCSI over Bulk-Only; quirks = 0x0000 > umass0:0:0:-1: Attached to scbus0 > da0 at umass-sim0 bus 0 target 0 lun 0 > da0: Fixed Direct Access SCSI-0 device > da0: 40.000MB/s transfers > da0: 114473MB (234441648 512 byte sectors: 255H 63S/T 14593C) > Device da0s3d went missing before all of the data could be written to it; > expect data loss. > > 99 23:19 sysinstall > 100 23:20 newfs /dev/da0s3d > 101 23:20 newfs /dev/da0s3e > 102 23:21 mount /dev/da0s3d /mnt > 103 23:21 cd /mnt > 104 23:21 dump -0f - /home | restore -rf - > 105 23:27 history 15 > > > > -----Original Message----- > From: Guojun Jin > Sent: Tue 11/17/2009 11:05 PM > To: freebsd-stable@freebsd.org > Cc: questions@freebsd.org; freebsd-usb@freebsd.org > Subject: 8.0-RC3 USB lock up on mounting two partitions from one USB drive > > When mounting two partitions from a USB dirve, it can cause the drive > access lock up for a long time. Details: > > Terminal 1 -- > term1# mount /dev/da0s3d /mnt > term1# cd /mnt ; rm -fr * > > when rm starts, go to terminal 2 and do: > > term2# mount /dev/da0s3e /dist ### this will hanging for a long time and > USB hard drive activity light is off. After more than 1-2 minutes, mount > returns, and the drive activity light is blinking, thus removing is going > on. > > term2# ls /dist ### this will cause dUSB dirve hanging again -- no > avtivity. Similarly, ls will finish in a couple of miniutes or longer, the > rm command continues; but for a while, the drive activity will stop again. > > Reboot machine, repeat the above steps, and result will be the same. Reboot > machine again, and just mount one partition, then doing "rm -rf *" without > involve the second partition, rm will finish quickly. > > Has anyone obseved this behave on 8.0-RC? > > -Jin From owner-freebsd-usb@FreeBSD.ORG Wed Nov 18 12:51:11 2009 Return-Path: Delivered-To: freebsd-usb@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id F33AE106568F for ; Wed, 18 Nov 2009 12:51:10 +0000 (UTC) (envelope-from 166162@gmail.com) Received: from mail-vw0-f173.google.com (mail-vw0-f173.google.com [209.85.212.173]) by mx1.freebsd.org (Postfix) with ESMTP id A78168FC0A for ; Wed, 18 Nov 2009 12:51:10 +0000 (UTC) Received: by vws3 with SMTP id 3so281964vws.3 for ; Wed, 18 Nov 2009 04:51:09 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:date:message-id:subject :from:to:content-type; bh=9ASZWBk1pa4Qi073cIU6YaUDGcuv0tcZN4tNlRxPuQA=; b=rxhVJN2ifX9mTuHz1r1pA4MaJnyxjyroUbDK0IWk6wzjGKBqtv+05H9XaGG1Y/dZtD KRGg1p8sEepsXJ6J3x9kVnAzCn67UXnrVgV0OmyZTjwlHAHls5tIWb8FjcfOsuPhi+7D Gls7W6wrz0UQbPqAQhMYsT9Yc4Z5BdqOIzndw= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:date:message-id:subject:from:to:content-type; b=ka/dGVhxv4MW22w3OiSbtDJMO4165zv09Vf2d3YpVSZ7d++LEN2aTeRdGHViYSkluu JANW/UmXeiwIl7uauy0yLB0VYpGWN+WZMiWG7+lqvTcqkEHiTHWTAEQ3SFLnKzmimSvp p4Cptxv9cL5tUUXXvJAEWHKCrY6eaMqU2M8NI= MIME-Version: 1.0 Received: by 10.220.123.32 with SMTP id n32mr4790866vcr.48.1258547133616; Wed, 18 Nov 2009 04:25:33 -0800 (PST) Date: Wed, 18 Nov 2009 15:25:33 +0300 Message-ID: From: Travelling Particle <166162@gmail.com> To: freebsd-usb@freebsd.org Content-Type: text/plain; charset=UTF-8 X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: [keyboard] ukbd stops working after filesystems mount at boot time X-BeenThere: freebsd-usb@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: FreeBSD support for USB List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 18 Nov 2009 12:51:11 -0000 Hello, I am not sure if the problem is with USB, because the same hardware works fine with LiveCD. I will seek help here first, please feel free to redirect me to a better place for advice. The system is 8.0-RC3. I am booting off USB stick because I have to attach root partition on HDD with GELI. It all works fine, I am able to enter passphrase on the keyboard (there's only ukbd keyboard in the kernel at this moment, but I had tried with atkbd as well; I have also experimented with or without TEKEN with no difference). After root partition is mounted, system mounts other geli partitions on the same hard disk. It is right after the filesystems were mounted that the problem starts. The output on console at that moment starts to be interleaved with new lines symbols. After late boot stage completes, I see login prompt on console, but system acts *as if* I had just pressed Enter and presents login prompt again and again. The keyboard itself appears to be dead. If I choose to boot single-mode, behavior is the same -- I see multiple shell prompts as if I were hitting Enter repeatedly. I had been trying various configurations in the kernel for over 5 days now, and still couldn't make the console work on the system (I can login via network though). The hardware is Nvidea ION-based Acer nettop. It does not come with PS/2 keyboard connector and I cannot test it with any keyboard but USB. The keyboard itself I am using is Acer's standard one, and it works fine with LiveCD. I wonder if GELI might mess the things up, but the geli attachment process goes well, and all filesystems are attached just fine. Thanks a lot for help, Vassiliy From owner-freebsd-usb@FreeBSD.ORG Wed Nov 18 13:49:24 2009 Return-Path: Delivered-To: freebsd-usb@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C0EBC1065693 for ; Wed, 18 Nov 2009 13:49:24 +0000 (UTC) (envelope-from avg@icyb.net.ua) Received: from citadel.icyb.net.ua (citadel.icyb.net.ua [212.40.38.140]) by mx1.freebsd.org (Postfix) with ESMTP id F2D8A8FC25 for ; Wed, 18 Nov 2009 13:49:23 +0000 (UTC) Received: from odyssey.starpoint.kiev.ua (alpha-e.starpoint.kiev.ua [212.40.38.101]) by citadel.icyb.net.ua (8.8.8p3/ICyb-2.3exp) with ESMTP id PAA08564; Wed, 18 Nov 2009 15:49:19 +0200 (EET) (envelope-from avg@icyb.net.ua) Message-ID: <4B03FB5E.5070308@icyb.net.ua> Date: Wed, 18 Nov 2009 15:49:18 +0200 From: Andriy Gapon User-Agent: Thunderbird 2.0.0.23 (X11/20090825) MIME-Version: 1.0 To: Travelling Particle <166162@gmail.com> References: In-Reply-To: X-Enigmail-Version: 0.95.7 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit Cc: freebsd-usb@freebsd.org Subject: Re: [keyboard] ukbd stops working after filesystems mount at boot time X-BeenThere: freebsd-usb@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: FreeBSD support for USB List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 18 Nov 2009 13:49:24 -0000 on 18/11/2009 14:25 Travelling Particle said the following: > Hello, > > I am not sure if the problem is with USB, because the same hardware works > fine with LiveCD. I will seek help here first, please feel free to redirect > me to a better place for advice. > > The system is 8.0-RC3. > > I am booting off USB stick because I have to attach root partition on HDD > with GELI. It all works fine, I am able to enter passphrase on the keyboard > (there's only ukbd keyboard in the kernel at this moment, but I had tried > with atkbd as well; I have also experimented with or without TEKEN with no > difference). After root partition is mounted, system mounts other geli > partitions on the same hard disk. It is right after the filesystems were > mounted that the problem starts. The output on console at that moment starts > to be interleaved with new lines symbols. After late boot stage completes, I > see login prompt on console, but system acts *as if* I had just pressed > Enter and presents login prompt again and again. The keyboard itself appears > to be dead. If I choose to boot single-mode, behavior is the same -- I see > multiple shell prompts as if I were hitting Enter repeatedly. I had been > trying various configurations in the kernel for over 5 days now, and still > couldn't make the console work on the system (I can login via network > though). > > The hardware is Nvidea ION-based Acer nettop. It does not come with PS/2 > keyboard connector and I cannot test it with any keyboard but USB. The > keyboard itself I am using is Acer's standard one, and it works fine with > LiveCD. I wonder if GELI might mess the things up, but the geli attachment > process goes well, and all filesystems are attached just fine. LiveCD is also 8.0-RC3? -- Andriy Gapon From owner-freebsd-usb@FreeBSD.ORG Wed Nov 18 20:11:32 2009 Return-Path: Delivered-To: freebsd-usb@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 4614B106566C; Wed, 18 Nov 2009 20:11:32 +0000 (UTC) (envelope-from gjin@ubicom.com) Received: from server70.appriver.com (server70.appriver.com [69.20.119.203]) by mx1.freebsd.org (Postfix) with ESMTP id CC3448FC21; Wed, 18 Nov 2009 20:11:31 +0000 (UTC) X-Policy: GLOBAL - ubicom.com X-Policy: GLOBAL - ubicom.com X-Policy: GLOBAL - ubicom.com X-Policy: GLOBAL - ubicom.com X-Primary: gjin@ubicom.com X-Note: This Email was scanned by AppRiver SecureTide X-Virus-Scan: V- X-Note: TCH-CT/SI:0-58/SG:2 11/18/2009 3:11:10 PM X-GBUdb-Analysis: 0, 216.112.109.98, Ugly c=0.747107 p=-0.913352 Source White X-Signature-Violations: 0-0-0-8170-c X-Note: Spam Tests Failed: X-Country-Path: UNITED STATES->UNITED STATES X-Note-Sending-IP: 216.112.109.98 X-Note-Reverse-DNS: 216.112.109.98.ptr.us.xo.net X-Note-WHTLIST: gjin@ubicom.com X-Note: User Rule Hits: X-Note: Global Rule Hits: 115 116 117 118 122 123 221 X-Note: Mail Class: VALID X-Note: Headers Injected Received: from [216.112.109.98] (HELO stork.scenix.com) by server70.appriver.com (CommuniGate Pro SMTP 5.3c2) with ESMTP id 107546105; Wed, 18 Nov 2009 15:11:31 -0500 X-MimeOLE: Produced By Microsoft Exchange V6.5 Content-class: urn:content-classes:message MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable Date: Wed, 18 Nov 2009 12:03:54 -0800 Message-ID: In-Reply-To: <200911181213.34112.hselasky@c2i.net> X-MS-Has-Attach: X-MS-TNEF-Correlator: Thread-Topic: 8.0-RC3 USB lock up on mounting two partitions from one USB drive Thread-Index: AcpoP3z6JZv+wKUaR6W88hemmQS/OQASgtOA References: <200911181213.34112.hselasky@c2i.net> From: "Guojun Jin" To: "Hans Petter Selasky" , Cc: questions@freebsd.org, freebsd-stable@freebsd.org Subject: RE: 8.0-RC3 USB lock up on mounting two partitions from one USB drive X-BeenThere: freebsd-usb@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: FreeBSD support for USB List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 18 Nov 2009 20:11:32 -0000 It looks like a system issue since it also happens to the SATA drive.=20 The USB drive seems having more difficulty. I will back up rest partitions, Then redo the slice and partition to see if problem goes away. If so, then 8.0-R has a backward compatibility issue on the partition table or format to older FreeBSD release. -----Original Message----- From: Hans Petter Selasky [mailto:hselasky@c2i.net]=20 Sent: Wednesday, November 18, 2009 3:14 AM To: freebsd-usb@freebsd.org Cc: Guojun Jin; freebsd-stable@freebsd.org; questions@freebsd.org Subject: Re: 8.0-RC3 USB lock up on mounting two partitions from one USB drive Hi, I'm not sure if this is an USB issue or not. If you get READ/WRITE errors and=20 the drive simply dies then it might be the case. Else it is a system issue. There are quirks for mass storage which you can add to=20 sys/dev/usb/storage/umass.c . --HPS On Wednesday 18 November 2009 08:33:07 Guojun Jin wrote: > Did newfs on those partition and made things worsen -- restore completely > fails: (I had experienced another similar problem on an IDE, which works > well for 6.4 and 7.2, but 8.0.) This dirve works fine under FreeBSD 6.4. > > Is something new in 8.0 making disk partition schema changed? > > g_vfs_done():da0s3d[READ(offset=3D98304, length=3D16384)]error =3D 6 > g_vfs_done():da0s3d[WRITE(offset=3D192806912, length=3D16384)]error = =3D 6 > fopen: Device not configured > cannot create save file ./restoresymtable for symbol table > abort? [yn] (da0:umass-sim0:0:0:0): Synchronize cache failed, status =3D=3D > 0xa, scs i status =3D=3D 0x0 > (da0:umass-sim0:0:0:0): removing device entry > ugen1.2: at usbus1 > umass0: on usbus1 > umass0: SCSI over Bulk-Only; quirks =3D 0x0000 > umass0:0:0:-1: Attached to scbus0 > da0 at umass-sim0 bus 0 target 0 lun 0 > da0: Fixed Direct Access SCSI-0 device > da0: 40.000MB/s transfers > da0: 114473MB (234441648 512 byte sectors: 255H 63S/T 14593C) > Device da0s3d went missing before all of the data could be written to it; > expect data loss. > > 99 23:19 sysinstall > 100 23:20 newfs /dev/da0s3d > 101 23:20 newfs /dev/da0s3e > 102 23:21 mount /dev/da0s3d /mnt > 103 23:21 cd /mnt > 104 23:21 dump -0f - /home | restore -rf - > 105 23:27 history 15 > > > > -----Original Message----- > From: Guojun Jin > Sent: Tue 11/17/2009 11:05 PM > To: freebsd-stable@freebsd.org > Cc: questions@freebsd.org; freebsd-usb@freebsd.org > Subject: 8.0-RC3 USB lock up on mounting two partitions from one USB drive > > When mounting two partitions from a USB dirve, it can cause the drive > access lock up for a long time. Details: > > Terminal 1 -- > term1# mount /dev/da0s3d /mnt > term1# cd /mnt ; rm -fr * > > when rm starts, go to terminal 2 and do: > > term2# mount /dev/da0s3e /dist ### this will hanging for a long time and > USB hard drive activity light is off. After more than 1-2 minutes, mount > returns, and the drive activity light is blinking, thus removing is going > on. > > term2# ls /dist ### this will cause dUSB dirve hanging again -- no > avtivity. Similarly, ls will finish in a couple of miniutes or longer, the > rm command continues; but for a while, the drive activity will stop again. > > Reboot machine, repeat the above steps, and result will be the same. Reboot > machine again, and just mount one partition, then doing "rm -rf *" without > involve the second partition, rm will finish quickly. > > Has anyone obseved this behave on 8.0-RC? > > -Jin From owner-freebsd-usb@FreeBSD.ORG Wed Nov 18 21:32:50 2009 Return-Path: Delivered-To: freebsd-usb@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 55651106566B for ; Wed, 18 Nov 2009 21:32:50 +0000 (UTC) (envelope-from torfinn.ingolfsen@broadpark.no) Received: from bgo1smout1.broadpark.no (bgo1smout1.broadpark.no [217.13.4.94]) by mx1.freebsd.org (Postfix) with ESMTP id 127598FC12 for ; Wed, 18 Nov 2009 21:32:50 +0000 (UTC) MIME-version: 1.0 Content-transfer-encoding: 7BIT Content-type: text/plain; charset=US-ASCII Received: from bgo1sminn1.broadpark.no ([217.13.4.93]) by bgo1smout1.broadpark.no (Sun Java(tm) System Messaging Server 6.3-3.01 (built Jul 12 2007; 32bit)) with ESMTP id <0KTB00L7HQHZAVF0@bgo1smout1.broadpark.no> for freebsd-usb@freebsd.org; Wed, 18 Nov 2009 22:32:23 +0100 (CET) Received: from kg-v2.kg4.no ([80.203.92.186]) by bgo1sminn1.broadpark.no (Sun Java(tm) System Messaging Server 6.3-3.01 (built Jul 12 2007; 32bit)) with SMTP id <0KTB008H1QHZOIW0@bgo1sminn1.broadpark.no> for freebsd-usb@freebsd.org; Wed, 18 Nov 2009 22:32:23 +0100 (CET) Date: Wed, 18 Nov 2009 22:32:23 +0100 From: Torfinn Ingolfsen To: freebsd-usb@freebsd.org Message-id: <20091118223223.8223a2c6.torfinn.ingolfsen@broadpark.no> X-Mailer: Sylpheed 2.7.1 (GTK+ 2.16.6; amd64-portbld-freebsd7.2) X-Face: "t9w2,-X@O^I`jVW\sonI3.,36KBLZE*AL[y9lL[PyFD*r_S:dIL9c[8Y>V42R0"!"yb_zN,f#%.[PYYNq; m"_0v; ~rUM2Yy!zmkh)3&U|u!=T(zyv,MHJv"nDH>OJ`t(@mil461d_B'Uo|'nMwlKe0Mv=kvV?Nh@>Hb<3s_z2jYgZhPb@?Wi^x1a~Hplz1.zH Subject: FreeBSD - support for DisplayLink devices? X-BeenThere: freebsd-usb@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: FreeBSD support for USB List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 18 Nov 2009 21:32:50 -0000 Hi, Do we have support for DisplayLink devices in FreeBSD? Like libdlo[2,3] or udl[4]? Today I got a UM-70[5] monitor made by Lilliput, this is what /var/log/messages says when I connectd it to my 7.2-stable machine: Nov 18 22:18:13 kg-v2 root: Unknown USB device: vendor 0x17e9 product 0x02a9 bus uhub1 Nov 18 22:18:13 kg-v2 kernel: ugen2: on uhub1 Output from 'usbdevs -v': port 5 addr 4: high speed, power 500 mA, config 1, LILLIPUT USB Monitor(0x02a9), DisplayLink(0x17e9), rev 1.23 (No, I can't stop buying gadgets) Refernces: 1) http://en.wikipedia.org/wiki/Displaylink 2) http://displaylink.org/ 3) http://libdlo.freedesktop.org/ 4) http://libdlo.freedesktop.org/wiki/udl 5) http://www.lilliputlcd.com/lilliput-um70-7-usb-monitor-only-one-cable-does-all_p592.html -- Regards, Torfinn Ingolfsen From owner-freebsd-usb@FreeBSD.ORG Wed Nov 18 21:44:06 2009 Return-Path: Delivered-To: freebsd-usb@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 18340106566B for ; Wed, 18 Nov 2009 21:44:06 +0000 (UTC) (envelope-from torfinn.ingolfsen@broadpark.no) Received: from bgo1smout1.broadpark.no (bgo1smout1.broadpark.no [217.13.4.94]) by mx1.freebsd.org (Postfix) with ESMTP id C7ADC8FC19 for ; Wed, 18 Nov 2009 21:44:05 +0000 (UTC) MIME-version: 1.0 Content-transfer-encoding: 7BIT Content-type: text/plain; charset=US-ASCII Received: from bgo1sminn1.broadpark.no ([217.13.4.93]) by bgo1smout1.broadpark.no (Sun Java(tm) System Messaging Server 6.3-3.01 (built Jul 12 2007; 32bit)) with ESMTP id <0KTB00LWER1GZJ20@bgo1smout1.broadpark.no> for freebsd-usb@freebsd.org; Wed, 18 Nov 2009 22:44:04 +0100 (CET) Received: from kg-v2.kg4.no ([80.203.92.186]) by bgo1sminn1.broadpark.no (Sun Java(tm) System Messaging Server 6.3-3.01 (built Jul 12 2007; 32bit)) with SMTP id <0KTB00AYWR1G0HN0@bgo1sminn1.broadpark.no> for freebsd-usb@freebsd.org; Wed, 18 Nov 2009 22:44:04 +0100 (CET) Date: Wed, 18 Nov 2009 22:44:04 +0100 From: Torfinn Ingolfsen To: freebsd-usb@freebsd.org Message-id: <20091118224404.da498629.torfinn.ingolfsen@broadpark.no> In-reply-to: <20091118223223.8223a2c6.torfinn.ingolfsen@broadpark.no> References: <20091118223223.8223a2c6.torfinn.ingolfsen@broadpark.no> X-Mailer: Sylpheed 2.7.1 (GTK+ 2.16.6; amd64-portbld-freebsd7.2) X-Face: "t9w2,-X@O^I`jVW\sonI3.,36KBLZE*AL[y9lL[PyFD*r_S:dIL9c[8Y>V42R0"!"yb_zN,f#%.[PYYNq; m"_0v; ~rUM2Yy!zmkh)3&U|u!=T(zyv,MHJv"nDH>OJ`t(@mil461d_B'Uo|'nMwlKe0Mv=kvV?Nh@>Hb<3s_z2jYgZhPb@?Wi^x1a~Hplz1.zH Subject: Re: FreeBSD - support for DisplayLink devices? X-BeenThere: freebsd-usb@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: FreeBSD support for USB List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 18 Nov 2009 21:44:06 -0000 On Wed, 18 Nov 2009 22:32:23 +0100 Torfinn Ingolfsen wrote: > Today I got a UM-70[5] monitor made by Lilliput, this is > what /var/log/messages says when I connectd it to my 7.2-stable > machine: Oh, I forgot to tell the age of this -stable: tingo@kg-v2$ uname -a FreeBSD kg-v2.kg4.no 7.2-STABLE FreeBSD 7.2-STABLE #1: Fri Oct 30 19:46:58 CET 2009 root@kg-v2.kg4.no:/usr/obj/usr/src/sys/V2 amd64 -- Regards, Torfinn Ingolfsen From owner-freebsd-usb@FreeBSD.ORG Wed Nov 18 21:45:50 2009 Return-Path: Delivered-To: freebsd-usb@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id F1BF71065670 for ; Wed, 18 Nov 2009 21:45:50 +0000 (UTC) (envelope-from hselasky@c2i.net) Received: from swip.net (mailfe05.swip.net [212.247.154.129]) by mx1.freebsd.org (Postfix) with ESMTP id 827BB8FC16 for ; Wed, 18 Nov 2009 21:45:50 +0000 (UTC) X-Cloudmark-Score: 0.000000 [] X-Cloudmark-Analysis: v=1.0 c=1 a=1fyFnJbOUa4A:10 a=MnI1ikcADjEx7bvsp0jZvQ==:17 a=IPdlfScJVg0iD7WYlXoA:9 a=iV8ZcSj1DUTJ-MxQufsA:7 a=x1f-YlAFHQkIzcmK8lne9_MQOu4A:4 Received: from [188.126.201.140] (account mc467741@c2i.net HELO laptop.adsl.tele2.no) by mailfe05.swip.net (CommuniGate Pro SMTP 5.2.16) with ESMTPA id 1237007336; Wed, 18 Nov 2009 22:45:48 +0100 From: Hans Petter Selasky To: freebsd-usb@freebsd.org Date: Wed, 18 Nov 2009 22:47:19 +0100 User-Agent: KMail/1.11.4 (FreeBSD/9.0-CURRENT; KDE/4.2.4; i386; ; ) References: <20091118223223.8223a2c6.torfinn.ingolfsen@broadpark.no> <20091118224404.da498629.torfinn.ingolfsen@broadpark.no> In-Reply-To: <20091118224404.da498629.torfinn.ingolfsen@broadpark.no> X-Face: (%:6u[ldzJ`0qjD7sCkfdMmD*RxpOwEEQ+KWt[{J#x6ow~JO:,zwp.(t; @Aq :4:&nFCgDb8[3oIeTb^'",;u{5{}C9>"PuY\)!=#\u9SSM-nz8+SR~B\!qBv MIME-Version: 1.0 Content-Type: Text/Plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200911182247.21035.hselasky@c2i.net> Cc: Subject: Re: FreeBSD - support for DisplayLink devices? X-BeenThere: freebsd-usb@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: FreeBSD support for USB List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 18 Nov 2009 21:45:51 -0000 On Wednesday 18 November 2009 22:44:04 Torfinn Ingolfsen wrote: > On Wed, 18 Nov 2009 22:32:23 +0100 > > Torfinn Ingolfsen wrote: > > Today I got a UM-70[5] monitor made by Lilliput, this is > > what /var/log/messages says when I connectd it to my 7.2-stable > > machine: > > Oh, I forgot to tell the age of this -stable: > tingo@kg-v2$ uname -a > FreeBSD kg-v2.kg4.no 7.2-STABLE FreeBSD 7.2-STABLE #1: Fri Oct 30 > 19:46:58 CET 2009 root@kg-v2.kg4.no:/usr/obj/usr/src/sys/V2 amd64 Is there are userland driver using libusb for your device? --HPS From owner-freebsd-usb@FreeBSD.ORG Wed Nov 18 22:04:39 2009 Return-Path: Delivered-To: freebsd-usb@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3C41B106568D for ; Wed, 18 Nov 2009 22:04:39 +0000 (UTC) (envelope-from torfinn.ingolfsen@broadpark.no) Received: from bgo1smout1.broadpark.no (bgo1smout1.broadpark.no [217.13.4.94]) by mx1.freebsd.org (Postfix) with ESMTP id EA14A8FC0A for ; Wed, 18 Nov 2009 22:04:38 +0000 (UTC) MIME-version: 1.0 Content-transfer-encoding: 7BIT Content-type: text/plain; charset=US-ASCII Received: from bgo1sminn1.broadpark.no ([217.13.4.93]) by bgo1smout1.broadpark.no (Sun Java(tm) System Messaging Server 6.3-3.01 (built Jul 12 2007; 32bit)) with ESMTP id <0KTB00LVGRZJZJ90@bgo1smout1.broadpark.no> for freebsd-usb@freebsd.org; Wed, 18 Nov 2009 23:04:31 +0100 (CET) Received: from kg-v2.kg4.no ([80.203.92.186]) by bgo1sminn1.broadpark.no (Sun Java(tm) System Messaging Server 6.3-3.01 (built Jul 12 2007; 32bit)) with SMTP id <0KTB008T4RZJOI01@bgo1sminn1.broadpark.no> for freebsd-usb@freebsd.org; Wed, 18 Nov 2009 23:04:31 +0100 (CET) Date: Wed, 18 Nov 2009 23:04:31 +0100 From: Torfinn Ingolfsen To: freebsd-usb@freebsd.org Message-id: <20091118230431.4191fb1c.torfinn.ingolfsen@broadpark.no> In-reply-to: <200911182247.21035.hselasky@c2i.net> References: <20091118223223.8223a2c6.torfinn.ingolfsen@broadpark.no> <20091118224404.da498629.torfinn.ingolfsen@broadpark.no> <200911182247.21035.hselasky@c2i.net> X-Mailer: Sylpheed 2.7.1 (GTK+ 2.16.6; amd64-portbld-freebsd7.2) X-Face: "t9w2,-X@O^I`jVW\sonI3.,36KBLZE*AL[y9lL[PyFD*r_S:dIL9c[8Y>V42R0"!"yb_zN,f#%.[PYYNq; m"_0v; ~rUM2Yy!zmkh)3&U|u!=T(zyv,MHJv"nDH>OJ`t(@mil461d_B'Uo|'nMwlKe0Mv=kvV?Nh@>Hb<3s_z2jYgZhPb@?Wi^x1a~Hplz1.zH Subject: Re: FreeBSD - support for DisplayLink devices? X-BeenThere: freebsd-usb@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: FreeBSD support for USB List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 18 Nov 2009 22:04:39 -0000 On Wed, 18 Nov 2009 22:47:19 +0100 Hans Petter Selasky wrote: > Is there are userland driver using libusb for your device? I don't know, really. I haven't finished googling yet. :-) So far I've got this: http://libdlo.freedesktop.org/wiki/ http://mulchman.org/blog/?tag=displaylink -- Rgds, Torfinn Ingolfsen From owner-freebsd-usb@FreeBSD.ORG Wed Nov 18 22:09:02 2009 Return-Path: Delivered-To: freebsd-usb@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 073F9106566C for ; Wed, 18 Nov 2009 22:09:02 +0000 (UTC) (envelope-from thompsa@FreeBSD.org) Received: from pele.citylink.co.nz (pele.citylink.co.nz [202.8.44.226]) by mx1.freebsd.org (Postfix) with ESMTP id B828F8FC0C for ; Wed, 18 Nov 2009 22:09:01 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by pele.citylink.co.nz (Postfix) with ESMTP id 5959C7CBFC; Thu, 19 Nov 2009 11:09:00 +1300 (NZDT) X-Virus-Scanned: Debian amavisd-new at citylink.co.nz Received: from pele.citylink.co.nz ([127.0.0.1]) by localhost (pele.citylink.co.nz [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id JsQKgmAolXiM; Thu, 19 Nov 2009 11:08:55 +1300 (NZDT) Received: from citylink.fud.org.nz (unknown [202.8.44.45]) by pele.citylink.co.nz (Postfix) with ESMTP; Thu, 19 Nov 2009 11:08:55 +1300 (NZDT) Received: by citylink.fud.org.nz (Postfix, from userid 1001) id 3D7AC11475; Thu, 19 Nov 2009 11:08:55 +1300 (NZDT) Date: Thu, 19 Nov 2009 11:08:55 +1300 From: Andrew Thompson To: Hans Petter Selasky , Torfinn Ingolfsen Message-ID: <20091118220855.GA91753@citylink.fud.org.nz> References: <20091118223223.8223a2c6.torfinn.ingolfsen@broadpark.no> <20091118224404.da498629.torfinn.ingolfsen@broadpark.no> <200911182247.21035.hselasky@c2i.net> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200911182247.21035.hselasky@c2i.net> User-Agent: Mutt/1.5.17 (2007-11-01) Cc: freebsd-usb@freebsd.org Subject: Re: FreeBSD - support for DisplayLink devices? X-BeenThere: freebsd-usb@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: FreeBSD support for USB List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 18 Nov 2009 22:09:02 -0000 On Wed, Nov 18, 2009 at 10:47:19PM +0100, Hans Petter Selasky wrote: > On Wednesday 18 November 2009 22:44:04 Torfinn Ingolfsen wrote: > > On Wed, 18 Nov 2009 22:32:23 +0100 > > > > Torfinn Ingolfsen wrote: > > > Today I got a UM-70[5] monitor made by Lilliput, this is > > > what /var/log/messages says when I connectd it to my 7.2-stable > > > machine: > > > > Oh, I forgot to tell the age of this -stable: > > tingo@kg-v2$ uname -a > > FreeBSD kg-v2.kg4.no 7.2-STABLE FreeBSD 7.2-STABLE #1: Fri Oct 30 > > 19:46:58 CET 2009 root@kg-v2.kg4.no:/usr/obj/usr/src/sys/V2 amd64 > > Is there are userland driver using libusb for your device? libdlo mentioned in the original email is a userland driver using libusb. It should just work. Note for FreeBSD 7 and below you will need to install the devel/libusb port. Andrew From owner-freebsd-usb@FreeBSD.ORG Thu Nov 19 14:22:08 2009 Return-Path: Delivered-To: freebsd-usb@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 22F6B1065679 for ; Thu, 19 Nov 2009 14:22:08 +0000 (UTC) (envelope-from 166162@gmail.com) Received: from mail-vw0-f173.google.com (mail-vw0-f173.google.com [209.85.212.173]) by mx1.freebsd.org (Postfix) with ESMTP id CD3DA8FC0A for ; Thu, 19 Nov 2009 14:22:07 +0000 (UTC) Received: by vws3 with SMTP id 3so595149vws.3 for ; Thu, 19 Nov 2009 06:22:07 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:in-reply-to:references :date:message-id:subject:from:to:content-type; bh=n7Mj5ti4S7JL+ibusfkFL+4U9D/CcvZU1MMgvPiexoU=; b=Mx96f5XrXemIW2UPafWfLGquYsXH1KyGv+2Z6EMhAYAsCNLc9WiRCtNRXGN7RvouQg uteW0B4G1UyrRfVYAMaakEvflILWbBUl0srmHW2qu9LBUmWj0E1Li7wRPXcxF+8uS2ac p/du1/9bvFLzcwUgOnpYz5rG4loSxnDrSBBwY= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :content-type; b=Cwg/yUArWUaSxGdhjbUL6rY1imN7l2KEdhTstjPe6xYAZSTrH6NBLAg0R0wZ/UETGi OT5jL2QW/zxgxB8s4gW4HIYo8kmMZHgAJjK5cEC401mNG6BCzrNJQ/WOclHX0SLtxebe l/hojXUTeB+s9c0DjUaIig+t1/bSFbvjFlT98= MIME-Version: 1.0 Received: by 10.220.123.16 with SMTP id n16mr5874428vcr.111.1258640526944; Thu, 19 Nov 2009 06:22:06 -0800 (PST) In-Reply-To: References: <4B03FB5E.5070308@icyb.net.ua> Date: Thu, 19 Nov 2009 17:22:06 +0300 Message-ID: From: Travelling Particle <166162@gmail.com> To: freebsd-usb@freebsd.org Content-Type: text/plain; charset=UTF-8 X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: [keyboard] ukbd stops working after filesystems mount at boot time X-BeenThere: freebsd-usb@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: FreeBSD support for USB List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 19 Nov 2009 14:22:08 -0000 Thanks for your interest! LiveCD is also 8.0-RC3? > Yes, and the kernel is freshly built from the very same sources (and no, it did not work when i booted GENERIC off the USB card + mounted geli partitions, symptoms were the same). Vassiliy From owner-freebsd-usb@FreeBSD.ORG Fri Nov 20 05:20:29 2009 Return-Path: Delivered-To: freebsd-usb@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 522CC106566B for ; Fri, 20 Nov 2009 05:20:29 +0000 (UTC) (envelope-from sarumont@sigil.org) Received: from mail.sigil.org (mail.sigil.org [208.86.227.164]) by mx1.freebsd.org (Postfix) with ESMTP id DF3D48FC12 for ; Fri, 20 Nov 2009 05:20:28 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.sigil.org (Postfix) with ESMTP id B2BCCC0E0B for ; Thu, 19 Nov 2009 23:11:46 -0600 (CST) X-Virus-Scanned: amavisd-new at sigil.org Received: from mail.sigil.org ([127.0.0.1]) by localhost (mail.sigil.org [127.0.0.1]) (amavisd-new, port 10024) with LMTP id zuJ49NHU5sRd for ; Thu, 19 Nov 2009 23:11:36 -0600 (CST) Received: from illusion.portal.sigil.org (ip72-202-157-83.ks.ks.cox.net [72.202.157.83]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mail.sigil.org (Postfix) with ESMTPSA id EC37AC0E09 for ; Thu, 19 Nov 2009 23:11:34 -0600 (CST) Received: by illusion.portal.sigil.org (sSMTP sendmail emulation); Thu, 19 Nov 2009 23:21:01 -0600 From: "Richard Kolkovich" Date: Thu, 19 Nov 2009 23:21:01 -0600 To: freebsd-usb@freebsd.org Message-ID: <20091120052059.GE36142@magus.portal.sigil.org> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="pY3vCvL1qV+PayAL" Content-Disposition: inline X-OS: FreeBSD magus 8.0-RC1 amd64 X-Mailer: Mutt 1.5.20 (2009-06-14) X-Composed-With: vim X-PGP-Key: http://sarumont.sigil.org/pubkey.asc User-Agent: Mutt/1.5.20 (2009-06-14) Subject: uaudio recording problem X-BeenThere: freebsd-usb@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: FreeBSD support for USB List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 20 Nov 2009 05:20:29 -0000 --pY3vCvL1qV+PayAL Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable I'm trying to get my Logitech Quickcam microphone working. When I try to r= ecord, I get nothing but the following in dmesg: pcm5: chn_read(): pcm5:virtual:dsp5.vr0: record interrupt timeout, channel = dead Here's dmesg after adding/kldloading: ugen3.9: at usbus3 uaudio0: = on usbus3 uaudio0: No playback! uaudio0: Record: 16000 Hz, 1 ch, 16-bit S-LE PCM format uaudio0: No midi sequencer pcm5: on uaudio0 Running 8.0-RC1 on amd64. This also occurs on my laptop running 8.0-BETA3 = on i386. Any clues? Thanks, --=20 Richard Kolkovich sarumont@sigil.org PGP Key: 0x9E54EF59 (http://pgp.mit.edu) --pY3vCvL1qV+PayAL Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.13 (FreeBSD) iEYEARECAAYFAksGJzsACgkQfXtD1KVAIbBRUQCgvHLQOOZIShxVjGWXtexvvn1e pO4AoLfL8tHETsb6sVtv6dYlLMG9+BHZ =S5hC -----END PGP SIGNATURE----- --pY3vCvL1qV+PayAL-- From owner-freebsd-usb@FreeBSD.ORG Fri Nov 20 06:56:40 2009 Return-Path: Delivered-To: freebsd-usb@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 6FBFA1065672; Fri, 20 Nov 2009 06:56:40 +0000 (UTC) (envelope-from remko@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 4809E8FC13; Fri, 20 Nov 2009 06:56:40 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id nAK6uefF088680; Fri, 20 Nov 2009 06:56:40 GMT (envelope-from remko@freefall.freebsd.org) Received: (from remko@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id nAK6ueDJ088676; Fri, 20 Nov 2009 06:56:40 GMT (envelope-from remko) Date: Fri, 20 Nov 2009 06:56:40 GMT Message-Id: <200911200656.nAK6ueDJ088676@freefall.freebsd.org> To: remko@FreeBSD.org, freebsd-bugs@FreeBSD.org, freebsd-usb@FreeBSD.org From: remko@FreeBSD.org Cc: Subject: Re: kern/140714: system freeze when disconect my flash usb X-BeenThere: freebsd-usb@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: FreeBSD support for USB List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 20 Nov 2009 06:56:40 -0000 Synopsis: system freeze when disconect my flash usb Responsible-Changed-From-To: freebsd-bugs->freebsd-usb Responsible-Changed-By: remko Responsible-Changed-When: Fri Nov 20 06:55:49 UTC 2009 Responsible-Changed-Why: Reassign to USB. Submitter: please provide more information on your system, like a verbose boot, pciconf -vl and any possible information that HPS might need to get this going. Your information is -very- limited http://www.freebsd.org/cgi/query-pr.cgi?pr=140714 From owner-freebsd-usb@FreeBSD.ORG Fri Nov 20 06:56:48 2009 Return-Path: Delivered-To: freebsd-usb@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9269F106568B; Fri, 20 Nov 2009 06:56:48 +0000 (UTC) (envelope-from remko@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 6AEAE8FC2B; Fri, 20 Nov 2009 06:56:48 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id nAK6umoT088726; Fri, 20 Nov 2009 06:56:48 GMT (envelope-from remko@freefall.freebsd.org) Received: (from remko@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id nAK6umAX088722; Fri, 20 Nov 2009 06:56:48 GMT (envelope-from remko) Date: Fri, 20 Nov 2009 06:56:48 GMT Message-Id: <200911200656.nAK6umAX088722@freefall.freebsd.org> To: waffenpanda@gmail.com, remko@FreeBSD.org, freebsd-usb@FreeBSD.org From: remko@FreeBSD.org Cc: Subject: Re: kern/140714: system freeze when disconect my flash usb X-BeenThere: freebsd-usb@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: FreeBSD support for USB List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 20 Nov 2009 06:56:48 -0000 Synopsis: system freeze when disconect my flash usb State-Changed-From-To: open->feedback State-Changed-By: remko State-Changed-When: Fri Nov 20 06:56:42 UTC 2009 State-Changed-Why: Submitter: please provide more information on your system, like a verbose boot, pciconf -vl and any possible information that HPS might need to get this going. Your information is -very- limited. http://www.freebsd.org/cgi/query-pr.cgi?pr=140714 From owner-freebsd-usb@FreeBSD.ORG Fri Nov 20 07:57:35 2009 Return-Path: Delivered-To: freebsd-usb@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 88E8E106566B; Fri, 20 Nov 2009 07:57:35 +0000 (UTC) (envelope-from hselasky@c2i.net) Received: from swip.net (mailfe02.swip.net [212.247.154.33]) by mx1.freebsd.org (Postfix) with ESMTP id E0DFD8FC12; Fri, 20 Nov 2009 07:57:34 +0000 (UTC) X-Cloudmark-Score: 0.000000 [] X-Cloudmark-Analysis: v=1.0 c=1 a=RERtC8nhXGhYvIZhK0yWrQ==:17 a=D6vttyiutRLohbYLh60A:9 a=S8s5VBqkxFb5ddkUUkUJQ2zMjrgA:4 Received: from [90.149.203.35] (account mc467741@c2i.net HELO laptop.adsl.tele2.no) by mailfe02.swip.net (CommuniGate Pro SMTP 5.2.16) with ESMTPA id 1333813656; Fri, 20 Nov 2009 08:57:32 +0100 From: Hans Petter Selasky To: freebsd-usb@freebsd.org, Andrew Thompson Date: Fri, 20 Nov 2009 08:59:04 +0100 User-Agent: KMail/1.11.4 (FreeBSD/9.0-CURRENT; KDE/4.2.4; i386; ; ) References: <20091120052059.GE36142@magus.portal.sigil.org> In-Reply-To: <20091120052059.GE36142@magus.portal.sigil.org> X-Face: (%:6u[ldzJ`0qjD7sCkfdMmD*RxpOwEEQ+KWt[{J#x6ow~JO:,zwp.(t; @Aq :4:&nFCgDb8[3oIeTb^'",;u{5{}C9>"PuY\)!=#\u9SSM-nz8+SR~B\!qBv MIME-Version: 1.0 Content-Type: Text/Plain; charset="iso-8859-15" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200911200859.05532.hselasky@c2i.net> Cc: Subject: Re: uaudio recording problem X-BeenThere: freebsd-usb@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: FreeBSD support for USB List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 20 Nov 2009 07:57:35 -0000 On Friday 20 November 2009 06:21:01 Richard Kolkovich wrote: > I'm trying to get my Logitech Quickcam microphone working. When I try to > record, I get nothing but the following in dmesg: > > pcm5: chn_read(): pcm5:virtual:dsp5.vr0: record interrupt timeout, channel > dead > > Here's dmesg after adding/kldloading: > > ugen3.9: at usbus3 > uaudio0: > on usbus3 uaudio0: No playback! > uaudio0: Record: 16000 Hz, 1 ch, 16-bit S-LE PCM format > uaudio0: No midi sequencer > pcm5: on uaudio0 > > Running 8.0-RC1 on amd64. This also occurs on my laptop running 8.0-BETA3 > on i386. Any clues? Hi, This issue has been fixed in USB P4, but the changes have not been committed to FreeBSD yet. --HPS From owner-freebsd-usb@FreeBSD.ORG Fri Nov 20 08:37:01 2009 Return-Path: Delivered-To: freebsd-usb@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 25E431065694 for ; Fri, 20 Nov 2009 08:37:01 +0000 (UTC) (envelope-from gem@parallels.com) Received: from relay.sw.ru (mailhub.sw.ru [195.214.232.25]) by mx1.freebsd.org (Postfix) with ESMTP id 6544E8FC0C for ; Fri, 20 Nov 2009 08:36:59 +0000 (UTC) Received: from [10.30.16.50] ([10.30.16.50]) (authenticated bits=0) by relay.sw.ru (8.13.4/8.13.4) with ESMTP id nAK8BlZG022213 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Fri, 20 Nov 2009 11:11:48 +0300 (MSK) Message-ID: <4B064F48.50506@parallels.com> Date: Fri, 20 Nov 2009 11:11:52 +0300 From: Maxim Giryaev User-Agent: Thunderbird 2.0.0.23 (Windows/20090812) MIME-Version: 1.0 To: Alexander Samarin , freebsd-usb Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit Cc: Subject: Re: [madwimax] madwimax-0.1.1 patch for FreeBSD 8 (very buggy) X-BeenThere: freebsd-usb@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: FreeBSD support for USB List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 20 Nov 2009 08:37:01 -0000 I create similar patch, you can see it here: http://code.google.com/p/madwimax/issues/detail?id=39 Periodical crashes in libusb triggered by sigchild handler in madwimax. I check to way to fix it: 1. remove sigchild handler and call wait3() in scan_loop() 2. check for NULL result of libusb20_tr_get_priv_sc1() inside lubusb. Second way fixes crashes but periodically libusb_submit_trasfer() returns error 99. There are no disconnects from Internet on my router during last week. -- Maxim Giryaev From owner-freebsd-usb@FreeBSD.ORG Fri Nov 20 09:06:59 2009 Return-Path: Delivered-To: freebsd-usb@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E48C4106566B for ; Fri, 20 Nov 2009 09:06:58 +0000 (UTC) (envelope-from 166162@gmail.com) Received: from mail-vw0-f173.google.com (mail-vw0-f173.google.com [209.85.212.173]) by mx1.freebsd.org (Postfix) with ESMTP id 649918FC19 for ; Fri, 20 Nov 2009 09:06:57 +0000 (UTC) Received: by vws3 with SMTP id 3so855147vws.3 for ; Fri, 20 Nov 2009 01:06:56 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:in-reply-to:references :date:message-id:subject:from:to:content-type; bh=FjxkMdoEYNNX0Wesrk010IVumo8mzvll384fpoVQOWQ=; b=KJDkR2R+R+8hK4dQWrwtkTpZeZ8XX8/z1EqjhsTqfBTmYq/I1YUTDiRWyZp6OlJiSz VrFBHc1pGT9n7e2SXx6mTJIYgaa/obA9x/ggR8dhHVAXct+Wg22/kRemB/X2GUzEGExq c4RIGtc6BaY/cFI4jsbjiRHkXu3Iv1weSxOJg= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :content-type; b=RK+t+dVxLZtjuppAtLbeY6FVZdHFdmEPHQ5d4GM0Hwv7AoN51oYEQ4O2jIlvTDmNHG R2UBxDkmUOCjFZioynmda/zkIDAstEHklHzQSB6k3RBkYmb0Gtl2D4ymsMfIIrcn00kA /SDHP2ZNVghvdLv+mqQQF+9Q3CFfe84VfiaGo= MIME-Version: 1.0 Received: by 10.220.65.200 with SMTP id k8mr1513544vci.56.1258708016699; Fri, 20 Nov 2009 01:06:56 -0800 (PST) In-Reply-To: <4B03FB5E.5070308@icyb.net.ua> References: <4B03FB5E.5070308@icyb.net.ua> Date: Fri, 20 Nov 2009 12:06:56 +0300 Message-ID: From: Travelling Particle <166162@gmail.com> To: freebsd-usb@freebsd.org Content-Type: text/plain; charset=UTF-8 X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: Re: [keyboard] ukbd stops working after filesystems mount at boot time X-BeenThere: freebsd-usb@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: FreeBSD support for USB List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 20 Nov 2009 09:06:59 -0000 New symptom, as Greg House would say. It appears that keyboard is not as dead as it looks. If I do shutdown -h, the keyboard suddenly becomes usable: I can hit any key to reboot. However, between the start of the late boot stage and the end of halt the system behaves exactly as if somebody pressed Enter and stick some gum to it to stay that way. > I am booting off USB stick because I have to attach root partition on HDD > > with GELI. It all works fine, I am able to enter passphrase on the > keyboard > > (there's only ukbd keyboard in the kernel at this moment, but I had tried > > with atkbd as well; I have also experimented with or without TEKEN with > no > > difference). After root partition is mounted, system mounts other geli > > partitions on the same hard disk. It is right after the filesystems were > > mounted that the problem starts. The output on console at that moment > starts > > to be interleaved with new lines symbols. After late boot stage > completes, I > > see login prompt on console, but system acts *as if* I had just pressed > > Enter and presents login prompt again and again. The keyboard itself > appears > > to be dead. If I choose to boot single-mode, behavior is the same -- I > see > > multiple shell prompts as if I were hitting Enter repeatedly. I had been > > trying various configurations in the kernel for over 5 days now, and > still > > couldn't make the console work on the system (I can login via network > > though). > From owner-freebsd-usb@FreeBSD.ORG Fri Nov 20 11:22:36 2009 Return-Path: Delivered-To: freebsd-usb@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5BAB5106568B; Fri, 20 Nov 2009 11:22:36 +0000 (UTC) (envelope-from hselasky@c2i.net) Received: from swip.net (mailfe12.tele2.se [212.247.155.97]) by mx1.freebsd.org (Postfix) with ESMTP id 867598FC16; Fri, 20 Nov 2009 11:22:35 +0000 (UTC) X-Cloudmark-Score: 0.000000 [] X-Cloudmark-Analysis: v=1.0 c=1 a=9dZ5St_m-RsA:10 a=Qa35spukGxu/rmuNTmr4yg==:17 a=I_4bdOnyZPBF-CD-pNEA:9 a=e1bq7c-f9fAet-WSFHK_HZ0vxLsA:4 Received: from [85.19.72.137] (account mc467741@c2i.net HELO laptop.adsl.tele2.no) by mailfe12.swip.net (CommuniGate Pro SMTP 5.2.16) with ESMTPA id 1148502407; Fri, 20 Nov 2009 12:22:33 +0100 From: Hans Petter Selasky To: freebsd-usb@freebsd.org, Andrew Thompson Date: Fri, 20 Nov 2009 12:24:07 +0100 User-Agent: KMail/1.11.4 (FreeBSD/9.0-CURRENT; KDE/4.2.4; i386; ; ) References: <4B03FB5E.5070308@icyb.net.ua> In-Reply-To: X-Face: (%:6u[ldzJ`0qjD7sCkfdMmD*RxpOwEEQ+KWt[{J#x6ow~JO:,zwp.(t; @Aq :4:&nFCgDb8[3oIeTb^'",;u{5{}C9>"PuY\)!=#\u9SSM-nz8+SR~B\!qBv MIME-Version: 1.0 Content-Type: Text/Plain; charset="utf-8" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200911201224.08313.hselasky@c2i.net> Cc: Subject: Re: [keyboard] ukbd stops working after filesystems mount at boot time X-BeenThere: freebsd-usb@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: FreeBSD support for USB List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 20 Nov 2009 11:22:36 -0000 On Friday 20 November 2009 10:06:56 Travelling Particle wrote: > New symptom, as Greg House would say. It appears that keyboard is not as > dead as it looks. If I do shutdown -h, the keyboard suddenly becomes > usable: I can hit any key to reboot. However, between the start of the late > boot stage and the end of halt the system behaves exactly as if somebody > pressed Enter and stick some gum to it to stay that way. > > > I am booting off USB stick because I have to attach root partition on HDD > > > > > with GELI. It all works fine, I am able to enter passphrase on the > > > > keyboard > > > > > (there's only ukbd keyboard in the kernel at this moment, but I had > > > tried with atkbd as well; I have also experimented with or without > > > TEKEN with > > > > no > > > > > difference). After root partition is mounted, system mounts other geli > > > partitions on the same hard disk. It is right after the filesystems > > > were mounted that the problem starts. The output on console at that > > > moment > > > > starts > > > > > to be interleaved with new lines symbols. After late boot stage > > > > completes, I > > > > > see login prompt on console, but system acts *as if* I had just pressed > > > Enter and presents login prompt again and again. The keyboard itself > > > > appears > > > > > to be dead. If I choose to boot single-mode, behavior is the same -- I > > > > see > > > > > multiple shell prompts as if I were hitting Enter repeatedly. I had > > > been trying various configurations in the kernel for over 5 days now, > > > and > > > > still > > > > > couldn't make the console work on the system (I can login via network > > > though). There was a recent EHCI interrupt patch. I'm not sure if it is committed to 9- current yet. --HPS From owner-freebsd-usb@FreeBSD.ORG Fri Nov 20 15:41:14 2009 Return-Path: Delivered-To: freebsd-usb@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B96C31065696 for ; Fri, 20 Nov 2009 15:41:14 +0000 (UTC) (envelope-from sasha.devel@gmail.com) Received: from ey-out-2122.google.com (ey-out-2122.google.com [74.125.78.27]) by mx1.freebsd.org (Postfix) with ESMTP id 4FAA08FC08 for ; Fri, 20 Nov 2009 15:41:13 +0000 (UTC) Received: by ey-out-2122.google.com with SMTP id 22so821915eye.9 for ; Fri, 20 Nov 2009 07:41:13 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:in-reply-to:references :date:message-id:subject:from:to:content-type :content-transfer-encoding; bh=HD+YsxnGpbZpy7DbRejWkNT8s9ui++x41ahf4DIKXgM=; b=LjfvOnTdhk8PLQeulitX300981plqpDScxq6OZAARFjNJGkFQzw8uw92HlCoIqGKq0 Q5g565xJfgYFEh+r6AmK5ESoHS7Ma/0cXSq7FD8TbkmTYY/z1kDJ5j1Gm0KweDpT5Iqb 2RBVDGSlaruaXkyYoMKnj7juzq5OTOicK2dsY= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :content-type:content-transfer-encoding; b=HAtMnLiKjUH4Y5gVwg5TO6qg/GCh56tRYU2PgcL+pmew72IfC2dhi0BWB+Co1ScUCH o3RxsnqXJhChsC4wX371+8S07PNfX4NrkG1AQmuZJ2L/zr5Hs4T8e2lsN++E4uvvDBIG hQBAsoqI/DALHaxg/4YxMaU1Q5z4QhlJN1qAg= MIME-Version: 1.0 Received: by 10.213.68.143 with SMTP id v15mr332725ebi.45.1258731672629; Fri, 20 Nov 2009 07:41:12 -0800 (PST) In-Reply-To: <4B064F48.50506@parallels.com> References: <4B064F48.50506@parallels.com> Date: Fri, 20 Nov 2009 18:41:12 +0300 Message-ID: <7dcca81d0911200741q2eb22c20ge2718be32dff0045@mail.gmail.com> From: Alexander Samarin To: Maxim Giryaev , freebsd-usb@freebsd.org Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Cc: Subject: Re: [madwimax] madwimax-0.1.1 patch for FreeBSD 8 (very buggy) X-BeenThere: freebsd-usb@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: FreeBSD support for USB List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 20 Nov 2009 15:41:14 -0000 Maxim Giryaev =D0=BF=D0=B8=D1=88=D0=B5=D1=82: > I create similar patch, you can see it here: http://code.google.com/p/mad= wimax/issues/detail?id=3D39 > Periodical crashes in libusb triggered by sigchild handler in madwimax. > I check to way to fix it: > 1. remove sigchild handler and call wait3() in scan_loop() > 2. check for NULL result of libusb20_tr_get_priv_sc1() inside lubusb. > > Second way fixes crashes but periodically libusb_submit_trasfer() return= s error 99. > > There are no disconnects from Internet on my router during last week. > sighandler_wait_child does not work with any of libusb functions and structures, so I can't understand how it can crash.. And libusb protected inside by mutex. PS: To destroy interface on exit: -int tap_close(int fd, char *dev) { return close(fd); } +int tap_close(int fd, char *dev) { + int res =3D close(fd); + +#if defined(__FreeBSD__) + // We need to destroy tun/tap interface like `ifconfig tunN destroy` + struct ifreq ifr; + + memset(&ifr, 0, sizeof(ifr)); + strncpy(ifr.ifr_name, dev, IFNAMSIZ); + + if ((fd =3D socket(PF_INET, SOCK_DGRAM, 0)) < 0) { + res =3D fd; + perror("socket"); + } else { + if ((res =3D ioctl(fd, SIOCIFDESTROY, &ifr)) < 0) { + perror("ioctl(SIOCIFDESTROY)"); + } + close(fd); + } +#endif + return res; +} --=20 Best regards, Alexander Samarin mailto:sasha at enikasoft.ru https://www.fsora.ru (waits for FreeBSD 8.0-RELEASE) From owner-freebsd-usb@FreeBSD.ORG Fri Nov 20 18:36:56 2009 Return-Path: Delivered-To: freebsd-usb@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9C9911065672 for ; Fri, 20 Nov 2009 18:36:56 +0000 (UTC) (envelope-from sarumont@sigil.org) Received: from mail.sigil.org (mail.sigil.org [208.86.227.164]) by mx1.freebsd.org (Postfix) with ESMTP id 4811A8FC1A for ; Fri, 20 Nov 2009 18:36:56 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.sigil.org (Postfix) with ESMTP id 66A22C0E36; Fri, 20 Nov 2009 12:27:57 -0600 (CST) X-Virus-Scanned: amavisd-new at sigil.org Received: from mail.sigil.org ([127.0.0.1]) by localhost (mail.sigil.org [127.0.0.1]) (amavisd-new, port 10024) with LMTP id 1slIljgVHv80; Fri, 20 Nov 2009 12:27:55 -0600 (CST) Received: from illusion.portal.sigil.org (ip72-202-157-83.ks.ks.cox.net [72.202.157.83]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mail.sigil.org (Postfix) with ESMTPSA id 39ED4C0E33; Fri, 20 Nov 2009 12:27:55 -0600 (CST) Received: by illusion.portal.sigil.org (sSMTP sendmail emulation); Fri, 20 Nov 2009 12:37:40 -0600 From: "Richard Kolkovich" Date: Fri, 20 Nov 2009 12:37:40 -0600 To: Hans Petter Selasky Message-ID: <20091120183738.GF36142@magus.portal.sigil.org> References: <20091120052059.GE36142@magus.portal.sigil.org> <200911200859.05532.hselasky@c2i.net> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="NQTVMVnDVuULnIzU" Content-Disposition: inline In-Reply-To: <200911200859.05532.hselasky@c2i.net> X-OS: FreeBSD magus 8.0-RC1 amd64 X-Mailer: Mutt 1.5.20 (2009-06-14) X-Composed-With: vim X-PGP-Key: http://sarumont.sigil.org/pubkey.asc User-Agent: Mutt/1.5.20 (2009-06-14) Cc: Andrew Thompson , freebsd-usb@freebsd.org Subject: Re: uaudio recording problem X-BeenThere: freebsd-usb@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: FreeBSD support for USB List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 20 Nov 2009 18:36:56 -0000 --NQTVMVnDVuULnIzU Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Fri, Nov 20, 2009 at 08:59:04AM +0100, Hans Petter Selasky wrote: > Hi, >=20 > This issue has been fixed in USB P4, but the changes have not been commit= ted=20 > to FreeBSD yet. >=20 > --HPS Thanks! In case anyone else runs into this before the fix is MFC'd, I csup'd src-sy= s from HEAD and copied everything from sys/dev/usb/* and sys/dev/sound/usb/* into my source tree, = rebuild my kernel and rebooted to resolve. --=20 Richard Kolkovich sarumont@sigil.org PGP Key: 0x9E54EF59 (http://pgp.mit.edu) --NQTVMVnDVuULnIzU Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.13 (FreeBSD) iEYEARECAAYFAksG4fIACgkQfXtD1KVAIbBk7gCgyK8NgeWl3VLKLaJv4Q9NJmoO /fwAoKVrk+OUcJl5L9YgGPmTW7dPguvS =/KER -----END PGP SIGNATURE----- --NQTVMVnDVuULnIzU-- From owner-freebsd-usb@FreeBSD.ORG Fri Nov 20 23:03:30 2009 Return-Path: Delivered-To: freebsd-usb@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8B29C106568B for ; Fri, 20 Nov 2009 23:03:30 +0000 (UTC) (envelope-from torfinn.ingolfsen@broadpark.no) Received: from bgo1smout1.broadpark.no (bgo1smout1.broadpark.no [217.13.4.94]) by mx1.freebsd.org (Postfix) with ESMTP id 42FAE8FC15 for ; Fri, 20 Nov 2009 23:03:30 +0000 (UTC) MIME-version: 1.0 Content-transfer-encoding: 7BIT Content-type: text/plain; charset=US-ASCII Received: from bgo1sminn1.broadpark.no ([217.13.4.93]) by bgo1smout1.broadpark.no (Sun Java(tm) System Messaging Server 6.3-3.01 (built Jul 12 2007; 32bit)) with ESMTP id <0KTF000YQK1823C0@bgo1smout1.broadpark.no> for freebsd-usb@freebsd.org; Sat, 21 Nov 2009 00:03:08 +0100 (CET) Received: from kg-v2.kg4.no ([80.203.92.186]) by bgo1sminn1.broadpark.no (Sun Java(tm) System Messaging Server 6.3-3.01 (built Jul 12 2007; 32bit)) with SMTP id <0KTF00563K183870@bgo1sminn1.broadpark.no> for freebsd-usb@freebsd.org; Sat, 21 Nov 2009 00:03:08 +0100 (CET) Date: Sat, 21 Nov 2009 00:03:08 +0100 From: Torfinn Ingolfsen To: freebsd-usb@freebsd.org Message-id: <20091121000308.89b83d5e.torfinn.ingolfsen@broadpark.no> In-reply-to: <20091118220855.GA91753@citylink.fud.org.nz> References: <20091118223223.8223a2c6.torfinn.ingolfsen@broadpark.no> <20091118224404.da498629.torfinn.ingolfsen@broadpark.no> <200911182247.21035.hselasky@c2i.net> <20091118220855.GA91753@citylink.fud.org.nz> X-Mailer: Sylpheed 2.7.1 (GTK+ 2.16.6; amd64-portbld-freebsd7.2) X-Face: "t9w2,-X@O^I`jVW\sonI3.,36KBLZE*AL[y9lL[PyFD*r_S:dIL9c[8Y>V42R0"!"yb_zN,f#%.[PYYNq; m"_0v; ~rUM2Yy!zmkh)3&U|u!=T(zyv,MHJv"nDH>OJ`t(@mil461d_B'Uo|'nMwlKe0Mv=kvV?Nh@>Hb<3s_z2jYgZhPb@?Wi^x1a~Hplz1.zH Subject: Re: FreeBSD - support for DisplayLink devices? X-BeenThere: freebsd-usb@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: FreeBSD support for USB List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 20 Nov 2009 23:03:30 -0000 On Thu, 19 Nov 2009 11:08:55 +1300 Andrew Thompson wrote: > libdlo mentioned in the original email is a userland driver using > libusb. It should just work. I've tried with just './configure' and ./configure --includedir=/usr/local/include ./configure --includedir=/usr/local/include --libdir=/usr/local/lib but all bombs out with this: checking for usb_open in -lusb... no checking for usb_get_driver_np... no configure: error: Can't find libusb. On ubuntu, try sudo apt-get install libusb-dev > Note for FreeBSD 7 and below you will need to install the devel/libusb > port. libusb in ports is currently at version 0.1.12_4, I don't know if that affects anything, but the libdlo page says "libusb (0.13)". -- Regards, Torfinn Ingolfsen From owner-freebsd-usb@FreeBSD.ORG Sat Nov 21 18:12:47 2009 Return-Path: Delivered-To: freebsd-usb@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 50FC1106566B for ; Sat, 21 Nov 2009 18:12:47 +0000 (UTC) (envelope-from 166162@gmail.com) Received: from mail-vw0-f173.google.com (mail-vw0-f173.google.com [209.85.212.173]) by mx1.freebsd.org (Postfix) with ESMTP id 03A1A8FC0A for ; Sat, 21 Nov 2009 18:12:46 +0000 (UTC) Received: by vws3 with SMTP id 3so1185144vws.3 for ; Sat, 21 Nov 2009 10:12:45 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:in-reply-to:references :date:message-id:subject:from:to:content-type; bh=QCN072h+A7Vk7uE+otQW9ahU6dM7ajRLfXZFcfuL7KM=; b=byno7PhiLJOJvBQLUCKnv+CYN17tNN8MA/KS+GB/QxxsV9kXLTt8LAzQGXpyHrix58 ZT1aAPpDOM7Tc3sc7ZrT+Uz804b1FEgDgIBYf+auY8vQ85s3Ln1FaqASaJw6U/5zV6YL wDjrHqQOrpQHrdxkdVrErgr9dDbKAcLLpm4mQ= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :content-type; b=TbsLvzgcceo11tnuWln8FC5Hr4K46bd3/uXKxcYOECtNDDLV1SfBodHVo1+hWXTNy7 Bss/8UetpDfi5m9ggH5rvHF7wEHBlT9n7mvVNjDxhtp3q8AYLw1qFpGhbTVMFZ0/Jet/ 06EMVkM/6U95DexRMkLPqeqcJyt9oOEJIXzBE= MIME-Version: 1.0 Received: by 10.220.65.200 with SMTP id k8mr3644654vci.56.1258827165840; Sat, 21 Nov 2009 10:12:45 -0800 (PST) In-Reply-To: <200911201224.08313.hselasky@c2i.net> References: <4B03FB5E.5070308@icyb.net.ua> <200911201224.08313.hselasky@c2i.net> Date: Sat, 21 Nov 2009 21:12:45 +0300 Message-ID: From: Travelling Particle <166162@gmail.com> To: freebsd-usb@freebsd.org Content-Type: text/plain; charset=UTF-8 X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: Re: [keyboard] ukbd stops working after filesystems mount at boot time X-BeenThere: freebsd-usb@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: FreeBSD support for USB List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 21 Nov 2009 18:12:47 -0000 On Fri, Nov 20, 2009 at 2:24 PM, Hans Petter Selasky wrote: There was a recent EHCI interrupt patch. I'm not sure if it is committed to > 9- > current yet. > Do you mean there was a patch that might have caused this problem, or the patch fixing this problem? Also, I'm on 8-RC3, not 9-CURRENT Vassiliy From owner-freebsd-usb@FreeBSD.ORG Sat Nov 21 21:58:48 2009 Return-Path: Delivered-To: freebsd-usb@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1F60A1065672 for ; Sat, 21 Nov 2009 21:58:48 +0000 (UTC) (envelope-from hselasky@c2i.net) Received: from swip.net (mailfe12.swipnet.se [212.247.155.97]) by mx1.freebsd.org (Postfix) with ESMTP id 9FE598FC13 for ; Sat, 21 Nov 2009 21:58:47 +0000 (UTC) X-Cloudmark-Score: 0.000000 [] X-Cloudmark-Analysis: v=1.0 c=1 a=9dZ5St_m-RsA:10 a=RERtC8nhXGhYvIZhK0yWrQ==:17 a=8kQB0OdkAAAA:8 a=LgVPdN9-ui5ASoFTMKcA:9 a=LiuVS5rRXnhHP6aXkjSFvqHFjFYA:4 a=9aOQ2cSd83gA:10 Received: from [90.149.203.35] (account mc467741@c2i.net HELO laptop.adsl.tele2.no) by mailfe12.swip.net (CommuniGate Pro SMTP 5.2.16) with ESMTPA id 1148761449; Sat, 21 Nov 2009 22:58:45 +0100 From: Hans Petter Selasky To: freebsd-usb@freebsd.org Date: Sat, 21 Nov 2009 23:00:18 +0100 User-Agent: KMail/1.11.4 (FreeBSD/9.0-CURRENT; KDE/4.2.4; i386; ; ) References: <200911201224.08313.hselasky@c2i.net> In-Reply-To: X-Face: (%:6u[ldzJ`0qjD7sCkfdMmD*RxpOwEEQ+KWt[{J#x6ow~JO:,zwp.(t; @Aq :4:&nFCgDb8[3oIeTb^'",;u{5{}C9>"PuY\)!=#\u9SSM-nz8+SR~B\!qBv MIME-Version: 1.0 Content-Type: Text/Plain; charset="utf-8" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200911212300.20154.hselasky@c2i.net> Cc: Subject: Re: [keyboard] ukbd stops working after filesystems mount at boot time X-BeenThere: freebsd-usb@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: FreeBSD support for USB List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 21 Nov 2009 21:58:48 -0000 On Saturday 21 November 2009 19:12:45 Travelling Particle wrote: > On Fri, Nov 20, 2009 at 2:24 PM, Hans Petter Selasky > wrote: > > > There was a recent EHCI interrupt patch. I'm not sure if it is committed to > > > 9- > > current yet. > > Do you mean there was a patch that might have caused this problem, or the > patch fixing this problem? Also, I'm on 8-RC3, not 9-CURRENT > I mean fixing. --HPS