| Commit message (Expand) | Author | Age | Files | Lines |
* | Nuke all occurrences of usbd_abort_pipe() if it gets called right |  mglocker | 2020-07-31 | 1 | -5/+1 |
* | Rework ucom(4) a bit. The logic of RTS follows DTR should only be done |  claudio | 2020-03-08 | 1 | -6/+16 |
* | Convert tsleep(9) that wait for a multiple of `hz' to tsleep_nsec(9). |  mpi | 2019-11-12 | 1 | -2/+2 |
* | ttysleep(): drop unused timeout parameter |  cheloha | 2019-07-19 | 1 | -2/+2 |
* | Remove almost unused `flags' argument of suser(). |  mpi | 2018-02-19 | 1 | -3/+3 |
* | Don't pull in <sys/file.h> just to get fcntl.h |  guenther | 2017-12-30 | 1 | -2/+2 |
* | Remove some includes include-what-you-use claims don't |  jsg | 2015-03-14 | 1 | -2/+1 |
* | Plug two xfer leaks and a buffer one. |  mpi | 2014-05-06 | 1 | -8/+17 |
* | Check if the device is being detached when returning from tsleep() and |  mpi | 2014-02-03 | 1 | -1/+7 |
* | Sort-out activate functionality for ucom(4) and it's parents. |  pirofti | 2013-11-15 | 1 | -32/+14 |
* | When a ucom(4) device is detached do not only abort its pipes but also |  mpi | 2013-07-15 | 1 | -5/+30 |
* | Do not dereference sc before checking if it exists, pointed by otto@. |  mpi | 2013-06-25 | 1 | -2/+2 |
* | Correctly increment the refcounter when trying to open a non connected |  mpi | 2013-06-03 | 1 | -20/+51 |
* | Get rid of various 'typedef struct' definitions and use plain structure |  mglocker | 2013-04-15 | 1 | -16/+16 |
* | proc.h is way too much header for usb to handle. |  tedu | 2013-03-28 | 1 | -2/+1 |
* | Declare ucom as a DV_TTY class device, not DV_DULL; Alexander Polakov |  miod | 2012-12-31 | 1 | -2/+2 |
* | the code for managing tty vs cua usage collision was free'ing all sorts |  deraadt | 2011-11-29 | 1 | -16/+10 |
* | ucom(4) did not understand the last-close semantics. repair that, and |  deraadt | 2011-07-03 | 1 | -35/+31 |
* | Remove config_activate() and DVACT_ACTIVATE. PCMCIA's the only thing |  matthew | 2011-07-03 | 1 | -4/+1 |
* | ansify a few files. ok deraadt dlg krw matthew |  tedu | 2011-06-23 | 1 | -4/+2 |
* | remove dying flag in detach() function. |  yuo | 2010-09-24 | 1 | -3/+1 |
* | Move common code for waking up writers on a tty into a function. |  nicm | 2010-07-02 | 1 | -10/+4 |
* | Instead of failing immediately , check for ENOTTY from the parent (umodem) |  nicm | 2010-06-30 | 1 | -2/+2 |
* | Allow tty drivers to request larger buffers at attach time using a |  deraadt | 2010-06-28 | 1 | -2/+2 |
* | Some of the line disciplines want to check for suser. Better to pass them |  tedu | 2010-04-12 | 1 | -4/+4 |
* | Every selwakeup() should have a matching KNOTE() (even if kqueue isn't |  nicm | 2009-11-09 | 1 | -2/+1 |
* | Use suser when possible. Suggested by miod@. |  fgsch | 2009-10-31 | 1 | -2/+2 |
* | Add missing KNOTE() calls after selwakeup(), until we decide if the KNOTE() |  deraadt | 2009-10-31 | 1 | -1/+2 |
* | Get rid of devact enum, substitute it with an int and coresponding defines. |  pirofti | 2009-10-13 | 1 | -3/+3 |
* | First pass at removing clauses 3 and 4 from NetBSD licenses. |  ray | 2008-06-26 | 1 | -8/+1 |
* | Remove the definition and usage of the USB_DECLARE_DRIVER_CLASS and |  mbalmer | 2007-06-14 | 1 | -2/+17 |
* | Remove the definition and use of the device_ptr_t which was a struct device *. |  mbalmer | 2007-06-12 | 1 | -2/+2 |
* | Remove the usb_proc_ptr type definition, which was really a 'struct proc *' |  mbalmer | 2007-06-11 | 1 | -6/+6 |
* | Remove the definition and use of the USBDEVNAME macro. |  mbalmer | 2007-06-10 | 1 | -5/+5 |
* | Remove the definition and use of the USBDEV macro. It only created confusion |  mbalmer | 2007-06-10 | 1 | -6/+6 |
* | Mechanical removal of USBBASEDEVICE. No binary change. |  mk | 2007-06-06 | 1 | -2/+2 |
* | Remove the "Static" declaration of many functions. It was defined to be empty |  mbalmer | 2007-06-05 | 1 | -32/+32 |
* | Farewell USB_{ATTACH,MATCH,DETACH}* you will not be missed. |  jsg | 2007-05-27 | 1 | -6/+7 |
* | Convert ehci and ucom to rwlock. |  jsg | 2007-05-20 | 1 | -5/+7 |
* | Fix a possible kernel panic in ucom(4) that is caused by ttyclose() using data |  mbalmer | 2006-08-29 | 1 | -3/+3 |
* | support for ucycom: |  jason | 2006-08-18 | 1 | -75/+125 |
* | In a drivers activate() entry point, if on DVACT_DEACTIVATE it does |  miod | 2006-06-23 | 1 | -2/+2 |
* | 2 lines of code in most drivers, to do the timestamping; ok miod kettenis |  deraadt | 2006-04-27 | 1 | -1/+5 |
* | shrink by removing some unneeded ifdefs |  dlg | 2006-03-27 | 1 | -20/+1 |
* | Move contents of sys/select.h to sys/selinfo.h in preparation for a |  millert | 2005-11-21 | 1 | -2/+2 |
* | no need to spit out portno twice |  deraadt | 2005-04-08 | 1 | -3/+1 |
* | make RTS follow DTS when CRTSCTS is off, like com(4) and pccom(4); tested |  djm | 2005-01-28 | 1 | -2/+6 |
* | Restore asserting DTR by default, lost when cuaU* support was added; |  djm | 2005-01-28 | 1 | -1/+10 |
* | make sure only one set of xfers are set up for any number of opens of the |  dlg | 2005-01-19 | 1 | -115/+110 |
* | add support for calling units (cuaU*) |  dlg | 2005-01-10 | 1 | -121/+77 |