Re: CVS commit: src/sys/dev/usb

2025-04-06 Thread Hans Rosenfeld
Hi, On Tue, Mar 25, 2025 at 08:28:10PM +, Taylor R Campbell wrote: > Thanks for taking a look at this! This change is not quite enough, > though. There are two issues: > > 1. `#ifdef DIAGNOSTIC printf(...)' is almost always wrong. Generally, >either: > >(a) the condition should be

CVS commit: src/sys/dev/usb

2025-04-05 Thread Hans Rosenfeld
Module Name:src Committed By: hans Date: Sun Mar 23 12:07:24 UTC 2025 Modified Files: src/sys/dev/usb: uts.c Log Message: uts(4): make sure the device is enabled before calling uhidev_close() This check was already there, but only enabled for DIAGNOSTIC kernels. The check

CVS commit: src/sys/dev/usb

2025-04-01 Thread Taylor R Campbell
Module Name:src Committed By: riastradh Date: Mon Mar 31 14:45:14 UTC 2025 Modified Files: src/sys/dev/usb: usbdivar.h Log Message: usbdivar.h: Add missing usbdi.h include for usbd_status &c. Sort includes while here. Prompted by: PR port-amd64/59180: System reboots ins

CVS commit: src/sys/dev/usb

2025-03-31 Thread Taylor R Campbell
Module Name:src Committed By: riastradh Date: Mon Mar 31 14:45:14 UTC 2025 Modified Files: src/sys/dev/usb: usbdivar.h Log Message: usbdivar.h: Add missing usbdi.h include for usbd_status &c. Sort includes while here. Prompted by: PR port-amd64/59180: System reboots ins

CVS commit: src/sys/dev/usb

2025-03-25 Thread Taylor R Campbell
Module Name:src Committed By: riastradh Date: Tue Mar 25 20:38:27 UTC 2025 Modified Files: src/sys/dev/usb: umcpmio.c umcpmio_subr.c Log Message: umcpmio(4): Linearize error branch structure. This dramatically reduces the unnecessary indentation of success cases and puts

CVS commit: src/sys/dev/usb

2025-03-25 Thread Taylor R Campbell
Module Name:src Committed By: riastradh Date: Tue Mar 25 20:38:54 UTC 2025 Modified Files: src/sys/dev/usb: umcpmio.c Log Message: umcpmio(4): Omit needless boolean `takemutex' parameter. This is generally a questionable pattern and it's wholly unnecessary here. To gene

CVS commit: src/sys/dev/usb

2025-03-25 Thread Taylor R Campbell
Module Name:src Committed By: riastradh Date: Tue Mar 25 20:38:27 UTC 2025 Modified Files: src/sys/dev/usb: umcpmio.c umcpmio_subr.c Log Message: umcpmio(4): Linearize error branch structure. This dramatically reduces the unnecessary indentation of success cases and puts

CVS commit: src/sys/dev/usb

2025-03-25 Thread Taylor R Campbell
Module Name:src Committed By: riastradh Date: Tue Mar 25 20:38:54 UTC 2025 Modified Files: src/sys/dev/usb: umcpmio.c Log Message: umcpmio(4): Omit needless boolean `takemutex' parameter. This is generally a questionable pattern and it's wholly unnecessary here. To gene

Re: CVS commit: src/sys/dev/usb

2025-03-25 Thread Taylor R Campbell
> Module Name:src > Committed By: hans > Date: Sun Mar 23 12:07:24 UTC 2025 > > Modified Files: > src/sys/dev/usb: uts.c > > Log Message: > uts(4): make sure the device is enabled before calling uhidev_close() > > This check was already there, but only enabled for DIAGNOS

CVS commit: src/sys/dev/usb

2025-03-25 Thread Hans Rosenfeld
Module Name:src Committed By: hans Date: Tue Mar 25 10:37:39 UTC 2025 Modified Files: src/sys/dev/usb: ums.c Log Message: ums(4): remove redundant check for sc_enabled To generate a diff of this commit: cvs rdiff -u -r1.107 -r1.108 src/sys/dev/usb/ums.c Please note that

CVS commit: src/sys/dev/usb

2025-03-25 Thread Hans Rosenfeld
Module Name:src Committed By: hans Date: Tue Mar 25 10:37:39 UTC 2025 Modified Files: src/sys/dev/usb: ums.c Log Message: ums(4): remove redundant check for sc_enabled To generate a diff of this commit: cvs rdiff -u -r1.107 -r1.108 src/sys/dev/usb/ums.c Please note that

Re: CVS commit: src/sys/dev/usb

2025-03-25 Thread Hans Rosenfeld
On Tue, Mar 25, 2025 at 06:42:38PM +1100, matthew green wrote: > hm. does this really change anything? You're right. I missed that the ums.c code is a bit different from uts.c and doesn't suffer from the same panic-inducing problem. > i've had a couple of crashes near here recently and i haven't

re: CVS commit: src/sys/dev/usb

2025-03-25 Thread matthew green
"Hans Rosenfeld" writes: > Module Name: src > Committed By: hans > Date: Sun Mar 23 12:08:13 UTC 2025 > > Modified Files: > src/sys/dev/usb: ums.c > > Log Message: > ums(4): make sure the device is enabled before calling uhidev_close() > > Same issue as in uts(4), his check was alrea

CVS commit: src/sys/dev/usb

2025-03-23 Thread Hans Rosenfeld
Module Name:src Committed By: hans Date: Sun Mar 23 12:08:13 UTC 2025 Modified Files: src/sys/dev/usb: ums.c Log Message: ums(4): make sure the device is enabled before calling uhidev_close() Same issue as in uts(4), his check was already there, but only enabled for DIAGN

CVS commit: src/sys/dev/usb

2025-03-23 Thread Hans Rosenfeld
Module Name:src Committed By: hans Date: Sun Mar 23 12:08:13 UTC 2025 Modified Files: src/sys/dev/usb: ums.c Log Message: ums(4): make sure the device is enabled before calling uhidev_close() Same issue as in uts(4), his check was already there, but only enabled for DIAGN

CVS commit: src/sys/dev/usb

2025-03-23 Thread Hans Rosenfeld
Module Name:src Committed By: hans Date: Sun Mar 23 12:07:24 UTC 2025 Modified Files: src/sys/dev/usb: uts.c Log Message: uts(4): make sure the device is enabled before calling uhidev_close() This check was already there, but only enabled for DIAGNOSTIC kernels. The check

CVS commit: src/sys/dev/usb

2025-03-17 Thread Taylor R Campbell
Module Name:src Committed By: riastradh Date: Mon Mar 17 18:24:08 UTC 2025 Modified Files: src/sys/dev/usb: umcpmio.c umcpmio.h umcpmio_hid_reports.h umcpmio_io.h umcpmio_subr.c umcpmio_subr.h Log Message: umcpmio(4): Fix a lot of KNF issues. - Space after com

CVS commit: src/sys/dev/usb

2025-03-17 Thread Taylor R Campbell
Module Name:src Committed By: riastradh Date: Mon Mar 17 18:24:08 UTC 2025 Modified Files: src/sys/dev/usb: umcpmio.c umcpmio.h umcpmio_hid_reports.h umcpmio_io.h umcpmio_subr.c umcpmio_subr.h Log Message: umcpmio(4): Fix a lot of KNF issues. - Space after com

CVS commit: src/sys/dev/usb

2025-02-16 Thread Jonathan A. Kollasch
Module Name:src Committed By: jakllsch Date: Sun Feb 16 18:31:37 UTC 2025 Modified Files: src/sys/dev/usb: uslsareg.h Log Message: uslsa: add additional request IDs from datasheet To generate a diff of this commit: cvs rdiff -u -r1.1 -r1.2 src/sys/dev/usb/uslsareg.h Ple

CVS commit: src/sys/dev/usb

2025-02-16 Thread Jonathan A. Kollasch
Module Name:src Committed By: jakllsch Date: Sun Feb 16 18:31:37 UTC 2025 Modified Files: src/sys/dev/usb: uslsareg.h Log Message: uslsa: add additional request IDs from datasheet To generate a diff of this commit: cvs rdiff -u -r1.1 -r1.2 src/sys/dev/usb/uslsareg.h Ple

CVS commit: src/sys/dev/usb

2025-02-16 Thread Jonathan A. Kollasch
Module Name:src Committed By: jakllsch Date: Sun Feb 16 18:30:28 UTC 2025 Modified Files: src/sys/dev/usb: uslsa.c Log Message: uslsa: match another SiLabs device ID To generate a diff of this commit: cvs rdiff -u -r1.32 -r1.33 src/sys/dev/usb/uslsa.c Please note that d

CVS commit: src/sys/dev/usb

2025-02-16 Thread Jonathan A. Kollasch
Module Name:src Committed By: jakllsch Date: Sun Feb 16 18:30:28 UTC 2025 Modified Files: src/sys/dev/usb: uslsa.c Log Message: uslsa: match another SiLabs device ID To generate a diff of this commit: cvs rdiff -u -r1.32 -r1.33 src/sys/dev/usb/uslsa.c Please note that d

CVS commit: src/sys/dev/usb

2025-02-16 Thread Jonathan A. Kollasch
Module Name:src Committed By: jakllsch Date: Sun Feb 16 18:29:54 UTC 2025 Modified Files: src/sys/dev/usb: usbdevs.h usbdevs_data.h Log Message: re-generate To generate a diff of this commit: cvs rdiff -u -r1.811 -r1.812 src/sys/dev/usb/usbdevs.h \ src/sys/dev/usb/us

CVS commit: src/sys/dev/usb

2025-02-16 Thread Jonathan A. Kollasch
Module Name:src Committed By: jakllsch Date: Sun Feb 16 18:29:54 UTC 2025 Modified Files: src/sys/dev/usb: usbdevs.h usbdevs_data.h Log Message: re-generate To generate a diff of this commit: cvs rdiff -u -r1.811 -r1.812 src/sys/dev/usb/usbdevs.h \ src/sys/dev/usb/us

CVS commit: src/sys/dev/usb

2025-02-16 Thread Jonathan A. Kollasch
Module Name:src Committed By: jakllsch Date: Sun Feb 16 18:28:29 UTC 2025 Modified Files: src/sys/dev/usb: usbdevs Log Message: usbdevs: add another SiLabs serial adapter ID To generate a diff of this commit: cvs rdiff -u -r1.819 -r1.820 src/sys/dev/usb/usbdevs Please n

CVS commit: src/sys/dev/usb

2025-02-16 Thread Jonathan A. Kollasch
Module Name:src Committed By: jakllsch Date: Sun Feb 16 18:28:29 UTC 2025 Modified Files: src/sys/dev/usb: usbdevs Log Message: usbdevs: add another SiLabs serial adapter ID To generate a diff of this commit: cvs rdiff -u -r1.819 -r1.820 src/sys/dev/usb/usbdevs Please n

CVS commit: src/sys/dev/usb

2025-02-16 Thread Jonathan A. Kollasch
Module Name:src Committed By: jakllsch Date: Sun Feb 16 18:24:41 UTC 2025 Modified Files: src/sys/dev/usb: ehci.c Log Message: ehci: wrap long line, add whitespace line to match other similar functions To generate a diff of this commit: cvs rdiff -u -r1.330 -r1.331 src/s

CVS commit: src/sys/dev/usb

2025-02-16 Thread Jonathan A. Kollasch
Module Name:src Committed By: jakllsch Date: Sun Feb 16 18:24:41 UTC 2025 Modified Files: src/sys/dev/usb: ehci.c Log Message: ehci: wrap long line, add whitespace line to match other similar functions To generate a diff of this commit: cvs rdiff -u -r1.330 -r1.331 src/s

CVS commit: src/sys/dev/usb

2025-02-16 Thread Jonathan A. Kollasch
Module Name:src Committed By: jakllsch Date: Sun Feb 16 18:21:19 UTC 2025 Modified Files: src/sys/dev/usb: ehci.c Log Message: ehci(4): only sync isochronous DMA in the necessary direction To generate a diff of this commit: cvs rdiff -u -r1.329 -r1.330 src/sys/dev/usb/eh

CVS commit: src/sys/dev/usb

2025-02-16 Thread Jonathan A. Kollasch
Module Name:src Committed By: jakllsch Date: Sun Feb 16 18:21:19 UTC 2025 Modified Files: src/sys/dev/usb: ehci.c Log Message: ehci(4): only sync isochronous DMA in the necessary direction To generate a diff of this commit: cvs rdiff -u -r1.329 -r1.330 src/sys/dev/usb/eh

CVS commit: src/sys/dev/usb

2025-01-30 Thread Jared D. McNeill
Module Name:src Committed By: jmcneill Date: Thu Jan 30 10:51:39 UTC 2025 Modified Files: src/sys/dev/usb: xhci.c Log Message: xhci: Do not clobber existing state in xhci_update_ep0_mps When updating the MPS field, make sure to preserve existing configuration. Without thi

CVS commit: src/sys/dev/usb

2025-01-30 Thread Jared D. McNeill
Module Name:src Committed By: jmcneill Date: Thu Jan 30 10:51:39 UTC 2025 Modified Files: src/sys/dev/usb: xhci.c Log Message: xhci: Do not clobber existing state in xhci_update_ep0_mps When updating the MPS field, make sure to preserve existing configuration. Without thi

CVS commit: src/sys/dev/usb

2025-01-22 Thread matthew green
Module Name:src Committed By: mrg Date: Thu Jan 23 07:12:12 UTC 2025 Modified Files: src/sys/dev/usb: usbdevs.h usbdevs_data.h Log Message: regen. To generate a diff of this commit: cvs rdiff -u -r1.810 -r1.811 src/sys/dev/usb/usbdevs.h \ src/sys/dev/usb/usbdevs_data

CVS commit: src/sys/dev/usb

2025-01-22 Thread matthew green
Module Name:src Committed By: mrg Date: Thu Jan 23 07:11:27 UTC 2025 Modified Files: src/sys/dev/usb: usbdevs Log Message: add intel gale peak bluetooth 5.4 controller To generate a diff of this commit: cvs rdiff -u -r1.818 -r1.819 src/sys/dev/usb/usbdevs Please note th

CVS commit: src/sys/dev/usb

2025-01-22 Thread matthew green
Module Name:src Committed By: mrg Date: Thu Jan 23 07:11:27 UTC 2025 Modified Files: src/sys/dev/usb: usbdevs Log Message: add intel gale peak bluetooth 5.4 controller To generate a diff of this commit: cvs rdiff -u -r1.818 -r1.819 src/sys/dev/usb/usbdevs Please note th

CVS commit: src/sys/dev/usb

2025-01-18 Thread Taylor R Campbell
Module Name:src Committed By: riastradh Date: Sat Jan 18 18:35:47 UTC 2025 Modified Files: src/sys/dev/usb: if_cdce.c Log Message: cdce(4): Update links to spec in comments. To generate a diff of this commit: cvs rdiff -u -r1.82 -r1.83 src/sys/dev/usb/if_cdce.c Please n

CVS commit: src/sys/dev/usb

2025-01-18 Thread Taylor R Campbell
Module Name:src Committed By: riastradh Date: Sat Jan 18 18:35:47 UTC 2025 Modified Files: src/sys/dev/usb: if_cdce.c Log Message: cdce(4): Update links to spec in comments. To generate a diff of this commit: cvs rdiff -u -r1.82 -r1.83 src/sys/dev/usb/if_cdce.c Please n

CVS commit: src/sys/dev/usb

2025-01-09 Thread Jared D. McNeill
Module Name:src Committed By: jmcneill Date: Thu Jan 9 10:17:23 UTC 2025 Modified Files: src/sys/dev/usb: xhci.c Log Message: xhci: Don't use USBMALLOC_COHERENT Use normal WB mappings with non-cache coherent tags, will improve performance and seems to avoid stalling tran

CVS commit: src/sys/dev/usb

2025-01-09 Thread Jared D. McNeill
Module Name:src Committed By: jmcneill Date: Thu Jan 9 10:17:23 UTC 2025 Modified Files: src/sys/dev/usb: xhci.c Log Message: xhci: Don't use USBMALLOC_COHERENT Use normal WB mappings with non-cache coherent tags, will improve performance and seems to avoid stalling tran

CVS commit: src/sys/dev/usb

2024-12-20 Thread Nick Hudson
Module Name:src Committed By: skrll Date: Sat Dec 21 07:31:23 UTC 2024 Modified Files: src/sys/dev/usb: xhci.c Log Message: Relax the KASSERT in xhci_event_cmd to allow xhci_polling_p To generate a diff of this commit: cvs rdiff -u -r1.184 -r1.185 src/sys/dev/usb/xhci.c

CVS commit: src/sys/dev/usb

2024-12-20 Thread Nick Hudson
Module Name:src Committed By: skrll Date: Sat Dec 21 07:31:23 UTC 2024 Modified Files: src/sys/dev/usb: xhci.c Log Message: Relax the KASSERT in xhci_event_cmd to allow xhci_polling_p To generate a diff of this commit: cvs rdiff -u -r1.184 -r1.185 src/sys/dev/usb/xhci.c

CVS commit: src/sys/dev/usb

2024-12-10 Thread Michael van Elst
Module Name:src Committed By: mlelstv Date: Tue Dec 10 11:21:31 UTC 2024 Modified Files: src/sys/dev/usb: ukbd.c Log Message: We track ENABLED changes, always call uhidev_open/close as necessary. To generate a diff of this commit: cvs rdiff -u -r1.164 -r1.165 src/sys/dev

CVS commit: src/sys/dev/usb

2024-12-10 Thread Michael van Elst
Module Name:src Committed By: mlelstv Date: Tue Dec 10 11:21:31 UTC 2024 Modified Files: src/sys/dev/usb: ukbd.c Log Message: We track ENABLED changes, always call uhidev_open/close as necessary. To generate a diff of this commit: cvs rdiff -u -r1.164 -r1.165 src/sys/dev

CVS commit: src/sys/dev/usb

2024-12-05 Thread Andrius Varanavicius
Module Name:src Committed By: andvar Date: Thu Dec 5 21:59:11 UTC 2024 Modified Files: src/sys/dev/usb: xhcireg.h Log Message: s/Foce/Force/ in comment. To generate a diff of this commit: cvs rdiff -u -r1.24 -r1.25 src/sys/dev/usb/xhcireg.h Please note that diffs are n

CVS commit: src/sys/dev/usb

2024-12-05 Thread Andrius Varanavicius
Module Name:src Committed By: andvar Date: Thu Dec 5 21:59:11 UTC 2024 Modified Files: src/sys/dev/usb: xhcireg.h Log Message: s/Foce/Force/ in comment. To generate a diff of this commit: cvs rdiff -u -r1.24 -r1.25 src/sys/dev/usb/xhcireg.h Please note that diffs are n

CVS commit: src/sys/dev/usb

2024-11-27 Thread Brad Spencer
Module Name:src Committed By: brad Date: Wed Nov 27 12:47:05 UTC 2024 Modified Files: src/sys/dev/usb: usbdevs.h usbdevs_data.h Log Message: Regen To generate a diff of this commit: cvs rdiff -u -r1.809 -r1.810 src/sys/dev/usb/usbdevs.h \ src/sys/dev/usb/usbdevs_data

CVS commit: src/sys/dev/usb

2024-11-27 Thread Brad Spencer
Module Name:src Committed By: brad Date: Wed Nov 27 12:46:37 UTC 2024 Modified Files: src/sys/dev/usb: usbdevs Log Message: Add the MCP2221 / MCP2221A multi-io chip To generate a diff of this commit: cvs rdiff -u -r1.817 -r1.818 src/sys/dev/usb/usbdevs Please note that

CVS commit: src/sys/dev/usb

2024-11-27 Thread Brad Spencer
Module Name:src Committed By: brad Date: Wed Nov 27 12:46:37 UTC 2024 Modified Files: src/sys/dev/usb: usbdevs Log Message: Add the MCP2221 / MCP2221A multi-io chip To generate a diff of this commit: cvs rdiff -u -r1.817 -r1.818 src/sys/dev/usb/usbdevs Please note that

CVS commit: src/sys/dev/usb

2024-11-10 Thread Taylor R Campbell
Module Name:src Committed By: riastradh Date: Sun Nov 10 19:01:25 UTC 2024 Modified Files: src/sys/dev/usb: if_urtwn.c Log Message: if_urtwn.c: Indentation fixes. No functional change intended. To generate a diff of this commit: cvs rdiff -u -r1.110 -r1.111 src/sys/dev/

CVS commit: src/sys/dev/usb

2024-11-10 Thread Taylor R Campbell
Module Name:src Committed By: riastradh Date: Sun Nov 10 19:01:25 UTC 2024 Modified Files: src/sys/dev/usb: if_urtwn.c Log Message: if_urtwn.c: Indentation fixes. No functional change intended. To generate a diff of this commit: cvs rdiff -u -r1.110 -r1.111 src/sys/dev/

CVS commit: src/sys/dev/usb

2024-11-10 Thread Michael van Elst
Module Name:src Committed By: mlelstv Date: Sun Nov 10 11:53:04 UTC 2024 Modified Files: src/sys/dev/usb: usbnet.c Log Message: Add MBUFTRACE To generate a diff of this commit: cvs rdiff -u -r1.120 -r1.121 src/sys/dev/usb/usbnet.c Please note that diffs are not public d

CVS commit: src/sys/dev/usb

2024-11-10 Thread Michael van Elst
Module Name:src Committed By: mlelstv Date: Sun Nov 10 11:53:04 UTC 2024 Modified Files: src/sys/dev/usb: usbnet.c Log Message: Add MBUFTRACE To generate a diff of this commit: cvs rdiff -u -r1.120 -r1.121 src/sys/dev/usb/usbnet.c Please note that diffs are not public d

CVS commit: src/sys/dev/usb

2024-11-10 Thread Michael van Elst
Module Name:src Committed By: mlelstv Date: Sun Nov 10 11:52:32 UTC 2024 Modified Files: src/sys/dev/usb: if_urtwn.c Log Message: Add MBUFTRACE To generate a diff of this commit: cvs rdiff -u -r1.109 -r1.110 src/sys/dev/usb/if_urtwn.c Please note that diffs are not publ

CVS commit: src/sys/dev/usb

2024-11-10 Thread Michael van Elst
Module Name:src Committed By: mlelstv Date: Sun Nov 10 11:52:32 UTC 2024 Modified Files: src/sys/dev/usb: if_urtwn.c Log Message: Add MBUFTRACE To generate a diff of this commit: cvs rdiff -u -r1.109 -r1.110 src/sys/dev/usb/if_urtwn.c Please note that diffs are not publ

CVS commit: src/sys/dev/usb

2024-10-08 Thread Lloyd Parkes
Module Name:src Committed By: lloyd Date: Tue Oct 8 20:40:10 UTC 2024 Modified Files: src/sys/dev/usb: uftdi.c usbdevices.config Log Message: Add a match quirk matching interface 0 on an iCEBreaker FPGA board This board has an FTDI 2232C with port A (USB interface 0) con

CVS commit: src/sys/dev/usb

2024-10-08 Thread Lloyd Parkes
Module Name:src Committed By: lloyd Date: Tue Oct 8 20:40:10 UTC 2024 Modified Files: src/sys/dev/usb: uftdi.c usbdevices.config Log Message: Add a match quirk matching interface 0 on an iCEBreaker FPGA board This board has an FTDI 2232C with port A (USB interface 0) con

CVS commit: src/sys/dev/usb

2024-10-06 Thread Jonathan A. Kollasch
Module Name:src Committed By: jakllsch Date: Sun Oct 6 14:08:58 UTC 2024 Modified Files: src/sys/dev/usb: uhci.c Log Message: Simplify/optimize usb_syncmem() in uhci_device_isoc_done() Matches ohci(4) To generate a diff of this commit: cvs rdiff -u -r1.318 -r1.319 src/

CVS commit: src/sys/dev/usb

2024-10-06 Thread Jonathan A. Kollasch
Module Name:src Committed By: jakllsch Date: Sun Oct 6 14:08:58 UTC 2024 Modified Files: src/sys/dev/usb: uhci.c Log Message: Simplify/optimize usb_syncmem() in uhci_device_isoc_done() Matches ohci(4) To generate a diff of this commit: cvs rdiff -u -r1.318 -r1.319 src/

CVS commit: src/sys/dev/usb

2024-10-04 Thread Nick Hudson
Module Name:src Committed By: skrll Date: Fri Oct 4 10:25:51 UTC 2024 Modified Files: src/sys/dev/usb: ehci.c Log Message: G/C ehci_dump_qh_qtd To generate a diff of this commit: cvs rdiff -u -r1.328 -r1.329 src/sys/dev/usb/ehci.c Please note that diffs are not public

CVS commit: src/sys/dev/usb

2024-10-04 Thread Nick Hudson
Module Name:src Committed By: skrll Date: Fri Oct 4 10:25:51 UTC 2024 Modified Files: src/sys/dev/usb: ehci.c Log Message: G/C ehci_dump_qh_qtd To generate a diff of this commit: cvs rdiff -u -r1.328 -r1.329 src/sys/dev/usb/ehci.c Please note that diffs are not public

CVS commit: src/sys/dev/usb

2024-10-03 Thread Juergen Hannken-Illjes
Module Name:src Committed By: hannken Date: Thu Oct 3 12:58:10 UTC 2024 Modified Files: src/sys/dev/usb: ehci.c Log Message: Fix fallout from "struct ehci_qh_qtd_t" -> "ehci_qtd_t" conversion. Kernels ALL/i386 and ALL/amd64 compile again. To generate a diff of this com

CVS commit: src/sys/dev/usb

2024-10-03 Thread Juergen Hannken-Illjes
Module Name:src Committed By: hannken Date: Thu Oct 3 12:58:10 UTC 2024 Modified Files: src/sys/dev/usb: ehci.c Log Message: Fix fallout from "struct ehci_qh_qtd_t" -> "ehci_qtd_t" conversion. Kernels ALL/i386 and ALL/amd64 compile again. To generate a diff of this com

CVS commit: src/sys/dev/usb

2024-10-02 Thread Izumi Tsutsui
Module Name:src Committed By: tsutsui Date: Wed Oct 2 17:22:45 UTC 2024 Modified Files: src/sys/dev/usb: udl.c Log Message: Add support for SANWA SUPPLY 500-KC002N USB to VGA Adapter. To generate a diff of this commit: cvs rdiff -u -r1.34 -r1.35 src/sys/dev/usb/udl.c P

CVS commit: src/sys/dev/usb

2024-10-02 Thread Izumi Tsutsui
Module Name:src Committed By: tsutsui Date: Wed Oct 2 17:22:45 UTC 2024 Modified Files: src/sys/dev/usb: udl.c Log Message: Add support for SANWA SUPPLY 500-KC002N USB to VGA Adapter. To generate a diff of this commit: cvs rdiff -u -r1.34 -r1.35 src/sys/dev/usb/udl.c P

CVS commit: src/sys/dev/usb

2024-10-02 Thread Izumi Tsutsui
Module Name:src Committed By: tsutsui Date: Wed Oct 2 17:17:26 UTC 2024 Modified Files: src/sys/dev/usb: usbdevs.h usbdevs_data.h Log Message: Regen from usbdevs rev 1.817: > Add SANWA SUPPLY 500-KC002N USB to VGA Adapter. To generate a diff of this commit: cvs rdiff -

CVS commit: src/sys/dev/usb

2024-10-02 Thread Izumi Tsutsui
Module Name:src Committed By: tsutsui Date: Wed Oct 2 17:15:10 UTC 2024 Modified Files: src/sys/dev/usb: usbdevs Log Message: Add SANWA SUPPLY 500-KC002N USB to VGA Adapter. To generate a diff of this commit: cvs rdiff -u -r1.816 -r1.817 src/sys/dev/usb/usbdevs Please

CVS commit: src/sys/dev/usb

2024-10-02 Thread Izumi Tsutsui
Module Name:src Committed By: tsutsui Date: Wed Oct 2 17:15:10 UTC 2024 Modified Files: src/sys/dev/usb: usbdevs Log Message: Add SANWA SUPPLY 500-KC002N USB to VGA Adapter. To generate a diff of this commit: cvs rdiff -u -r1.816 -r1.817 src/sys/dev/usb/usbdevs Please

CVS commit: src/sys/dev/usb

2024-09-23 Thread Nick Hudson
Module Name:src Committed By: skrll Date: Mon Sep 23 16:28:06 UTC 2024 Modified Files: src/sys/dev/usb: ehci.c Log Message: Ensure the overlay qtd_buffer{,_hi} fields are zeroised when QHs are allocated/set. The allocation zeroisation was lost in my last commit. Minor whi

CVS commit: src/sys/dev/usb

2024-09-23 Thread Nick Hudson
Module Name:src Committed By: skrll Date: Mon Sep 23 16:28:06 UTC 2024 Modified Files: src/sys/dev/usb: ehci.c Log Message: Ensure the overlay qtd_buffer{,_hi} fields are zeroised when QHs are allocated/set. The allocation zeroisation was lost in my last commit. Minor whi

CVS commit: src/sys/dev/usb

2024-09-23 Thread Nick Hudson
Module Name:src Committed By: skrll Date: Mon Sep 23 10:07:27 UTC 2024 Modified Files: src/sys/dev/usb: ehci.c ehcireg.h ehcivar.h Log Message: Allocate a whole cacheline for all the descriptor types used by ehci so that i) they can be alloc'ed without USBMALLOC_COHERENT

CVS commit: src/sys/dev/usb

2024-09-22 Thread Jared D. McNeill
Module Name:src Committed By: jmcneill Date: Sun Sep 22 14:05:47 UTC 2024 Modified Files: src/sys/dev/usb: ohci.c ohcireg.h ohcivar.h Log Message: ohci: Allocate a whole cacheline for all descriptors Allocate a whole cacheline for all descriptor types such that: i) they

CVS commit: src/sys/dev/usb

2024-07-06 Thread Michael van Elst
Module Name:src Committed By: mlelstv Date: Sat Jul 6 07:09:22 UTC 2024 Modified Files: src/sys/dev/usb: if_cdce.c Log Message: There is no link state for CDCE. Pretend that the link is always up so that programs like dhcpcd will handle the interface. To generate a diff

CVS commit: src/sys/dev/usb

2024-07-06 Thread Michael van Elst
Module Name:src Committed By: mlelstv Date: Sat Jul 6 07:09:22 UTC 2024 Modified Files: src/sys/dev/usb: if_cdce.c Log Message: There is no link state for CDCE. Pretend that the link is always up so that programs like dhcpcd will handle the interface. To generate a diff

CVS commit: src/sys/dev/usb

2024-07-03 Thread Christos Zoulas
Module Name:src Committed By: christos Date: Thu Jul 4 00:23:48 UTC 2024 Modified Files: src/sys/dev/usb: u3g.c Log Message: PR/58396: Reinhard Speyerer: u3g(4): add support for Sierra Wireless MC7304 devices To generate a diff of this commit: cvs rdiff -u -r1.44 -r1.45

CVS commit: src/sys/dev/usb

2024-07-03 Thread Christos Zoulas
Module Name:src Committed By: christos Date: Thu Jul 4 00:23:48 UTC 2024 Modified Files: src/sys/dev/usb: u3g.c Log Message: PR/58396: Reinhard Speyerer: u3g(4): add support for Sierra Wireless MC7304 devices To generate a diff of this commit: cvs rdiff -u -r1.44 -r1.45

Re: CVS commit: src/sys/dev/usb

2024-06-30 Thread Taylor R Campbell
> Module Name:src > Committed By: riastradh > Date: Sun Jun 30 16:35:19 UTC 2024 > > Modified Files: > src/sys/dev/usb: if_url.c > > Log Message: > url(4): uint32_t for 32-bit hash so h>>31 becomes 0/1, not +1/-1. That was supposed to read: url(4): uint32_t for 32-bit ha

CVS commit: src/sys/dev/usb

2024-06-30 Thread Taylor R Campbell
Module Name:src Committed By: riastradh Date: Sun Jun 30 16:35:19 UTC 2024 Modified Files: src/sys/dev/usb: if_url.c Log Message: url(4): uint32_t for 32-bit hash so h>>31 becomes 0/1, not +1/-1. Should avoid buffer overrun in PR 58382. To generate a diff of this commit

CVS commit: src/sys/dev/usb

2024-06-30 Thread Taylor R Campbell
Module Name:src Committed By: riastradh Date: Sun Jun 30 16:35:19 UTC 2024 Modified Files: src/sys/dev/usb: if_url.c Log Message: url(4): uint32_t for 32-bit hash so h>>31 becomes 0/1, not +1/-1. Should avoid buffer overrun in PR 58382. To generate a diff of this commit

CVS commit: src/sys/dev/usb

2024-05-20 Thread Taylor R Campbell
Module Name:src Committed By: riastradh Date: Mon May 20 11:36:21 UTC 2024 Modified Files: src/sys/dev/usb: xhci.c Log Message: xhci(4): Narrow some more variable scopes in xhci_device_isoc_enter. No functional change intended. To generate a diff of this commit: cvs rdi

CVS commit: src/sys/dev/usb

2024-05-20 Thread Taylor R Campbell
Module Name:src Committed By: riastradh Date: Mon May 20 11:36:21 UTC 2024 Modified Files: src/sys/dev/usb: xhci.c Log Message: xhci(4): Narrow some more variable scopes in xhci_device_isoc_enter. No functional change intended. To generate a diff of this commit: cvs rdi

CVS commit: src/sys/dev/usb

2024-05-20 Thread Taylor R Campbell
Module Name:src Committed By: riastradh Date: Mon May 20 11:35:55 UTC 2024 Modified Files: src/sys/dev/usb: xhci.c Log Message: xhci(4): Narrow scope of variable. Nix spurious initialization in wider scope. No functional change intended. To generate a diff of this comm

CVS commit: src/sys/dev/usb

2024-05-20 Thread Taylor R Campbell
Module Name:src Committed By: riastradh Date: Mon May 20 11:35:55 UTC 2024 Modified Files: src/sys/dev/usb: xhci.c Log Message: xhci(4): Narrow scope of variable. Nix spurious initialization in wider scope. No functional change intended. To generate a diff of this comm

CVS commit: src/sys/dev/usb

2024-05-20 Thread Taylor R Campbell
Module Name:src Committed By: riastradh Date: Mon May 20 11:35:37 UTC 2024 Modified Files: src/sys/dev/usb: xhci.c Log Message: xhci.c: Fix confusing line break. No functionanl change intended. To generate a diff of this commit: cvs rdiff -u -r1.181 -r1.182 src/sys/dev/

CVS commit: src/sys/dev/usb

2024-05-20 Thread Taylor R Campbell
Module Name:src Committed By: riastradh Date: Mon May 20 11:35:37 UTC 2024 Modified Files: src/sys/dev/usb: xhci.c Log Message: xhci.c: Fix confusing line break. No functionanl change intended. To generate a diff of this commit: cvs rdiff -u -r1.181 -r1.182 src/sys/dev/

CVS commit: src/sys/dev/usb

2024-05-12 Thread Christos Zoulas
Module Name:src Committed By: christos Date: Sun May 12 17:18:34 UTC 2024 Modified Files: src/sys/dev/usb: usbdevs.h usbdevs_data.h Log Message: Regen To generate a diff of this commit: cvs rdiff -u -r1.807 -r1.808 src/sys/dev/usb/usbdevs.h \ src/sys/dev/usb/usbdevs_

CVS commit: src/sys/dev/usb

2024-05-12 Thread Christos Zoulas
Module Name:src Committed By: christos Date: Sun May 12 17:18:34 UTC 2024 Modified Files: src/sys/dev/usb: usbdevs.h usbdevs_data.h Log Message: Regen To generate a diff of this commit: cvs rdiff -u -r1.807 -r1.808 src/sys/dev/usb/usbdevs.h \ src/sys/dev/usb/usbdevs_

CVS commit: src/sys/dev/usb

2024-05-12 Thread Christos Zoulas
Module Name:src Committed By: christos Date: Sun May 12 17:17:56 UTC 2024 Modified Files: src/sys/dev/usb: if_ure.c usbdevs Log Message: PR/58250: RVP: Add TP-Link UE300 USB LAN adapter To generate a diff of this commit: cvs rdiff -u -r1.59 -r1.60 src/sys/dev/usb/if_ure.

CVS commit: src/sys/dev/usb

2024-05-12 Thread Christos Zoulas
Module Name:src Committed By: christos Date: Sun May 12 17:17:56 UTC 2024 Modified Files: src/sys/dev/usb: if_ure.c usbdevs Log Message: PR/58250: RVP: Add TP-Link UE300 USB LAN adapter To generate a diff of this commit: cvs rdiff -u -r1.59 -r1.60 src/sys/dev/usb/if_ure.

CVS commit: src/sys/dev/usb

2024-05-04 Thread Michael van Elst
Module Name:src Committed By: mlelstv Date: Sat May 4 12:49:16 UTC 2024 Modified Files: src/sys/dev/usb: uhub.c Log Message: Use device_printf instead of autoconf messages for errors. To generate a diff of this commit: cvs rdiff -u -r1.161 -r1.162 src/sys/dev/usb/uhub.c

CVS commit: src/sys/dev/usb

2024-05-04 Thread Michael van Elst
Module Name:src Committed By: mlelstv Date: Sat May 4 12:49:16 UTC 2024 Modified Files: src/sys/dev/usb: uhub.c Log Message: Use device_printf instead of autoconf messages for errors. To generate a diff of this commit: cvs rdiff -u -r1.161 -r1.162 src/sys/dev/usb/uhub.c

CVS commit: src/sys/dev/usb

2024-05-04 Thread Michael van Elst
Module Name:src Committed By: mlelstv Date: Sat May 4 12:45:14 UTC 2024 Modified Files: src/sys/dev/usb: usb_subr.c Log Message: Make usb address and hub topology available to drvctl. To generate a diff of this commit: cvs rdiff -u -r1.278 -r1.279 src/sys/dev/usb/usb_su

CVS commit: src/sys/dev/usb

2024-05-04 Thread Michael van Elst
Module Name:src Committed By: mlelstv Date: Sat May 4 12:45:14 UTC 2024 Modified Files: src/sys/dev/usb: usb_subr.c Log Message: Make usb address and hub topology available to drvctl. To generate a diff of this commit: cvs rdiff -u -r1.278 -r1.279 src/sys/dev/usb/usb_su

CVS commit: src/sys/dev/usb

2024-05-04 Thread Michael van Elst
Module Name:src Committed By: mlelstv Date: Sat May 4 12:41:03 UTC 2024 Modified Files: src/sys/dev/usb: usbnet.c Log Message: Use device_printf instead of autoconf messages for errors. To generate a diff of this commit: cvs rdiff -u -r1.119 -r1.120 src/sys/dev/usb/usbn

CVS commit: src/sys/dev/usb

2024-05-04 Thread Michael van Elst
Module Name:src Committed By: mlelstv Date: Sat May 4 12:41:03 UTC 2024 Modified Files: src/sys/dev/usb: usbnet.c Log Message: Use device_printf instead of autoconf messages for errors. To generate a diff of this commit: cvs rdiff -u -r1.119 -r1.120 src/sys/dev/usb/usbn

CVS commit: src/sys/dev/usb

2024-04-28 Thread Nick Hudson
Module Name:src Committed By: skrll Date: Sun Apr 28 08:55:03 UTC 2024 Modified Files: src/sys/dev/usb: ohci.c Log Message: Fix some usb_syncmem calls and add some missing ones. To generate a diff of this commit: cvs rdiff -u -r1.327 -r1.328 src/sys/dev/usb/ohci.c Pleas

CVS commit: src/sys/dev/usb

2024-04-28 Thread Nick Hudson
Module Name:src Committed By: skrll Date: Sun Apr 28 08:55:03 UTC 2024 Modified Files: src/sys/dev/usb: ohci.c Log Message: Fix some usb_syncmem calls and add some missing ones. To generate a diff of this commit: cvs rdiff -u -r1.327 -r1.328 src/sys/dev/usb/ohci.c Pleas

CVS commit: src/sys/dev/usb

2024-04-28 Thread Nick Hudson
Module Name:src Committed By: skrll Date: Sun Apr 28 07:52:52 UTC 2024 Modified Files: src/sys/dev/usb: ohci.c Log Message: Whitespace. To generate a diff of this commit: cvs rdiff -u -r1.326 -r1.327 src/sys/dev/usb/ohci.c Please note that diffs are not public domain; t

CVS commit: src/sys/dev/usb

2024-04-28 Thread Nick Hudson
Module Name:src Committed By: skrll Date: Sun Apr 28 07:52:52 UTC 2024 Modified Files: src/sys/dev/usb: ohci.c Log Message: Whitespace. To generate a diff of this commit: cvs rdiff -u -r1.326 -r1.327 src/sys/dev/usb/ohci.c Please note that diffs are not public domain; t

CVS commit: src/sys/dev/usb

2024-04-24 Thread Jason R Thorpe
Module Name:src Committed By: thorpej Date: Thu Apr 25 01:33:04 UTC 2024 Modified Files: src/sys/dev/usb: uftdi.c Log Message: Add a match quirk to prevent matching any interface on SiPEED FPGA development boards (e.g. Tang Nano 9K). The FT2232s on these boards are wired

CVS commit: src/sys/dev/usb

2024-04-24 Thread Jason R Thorpe
Module Name:src Committed By: thorpej Date: Thu Apr 25 01:33:04 UTC 2024 Modified Files: src/sys/dev/usb: uftdi.c Log Message: Add a match quirk to prevent matching any interface on SiPEED FPGA development boards (e.g. Tang Nano 9K). The FT2232s on these boards are wired

  1   2   3   4   5   6   7   8   9   10   >