freebsd-dev/sys/dev
Jean-Sébastien Pédron 547e74a8be teken, vt(4): New callbacks to lock the terminal once
... to process input, instead of inside each smaller operations such as
appending a character or moving the cursor forward.

In other words, before we were doing (oversimplified):

  teken_input()
    <for each input character>
      vtterm_putchar()
        VTBUF_LOCK()
        VTBUF_UNLOCK()
      vtterm_cursor_position()
        VTBUF_LOCK()
        VTBUF_UNLOCK()

Now, we are doing:

  vtterm_pre_input()
    VTBUF_LOCK()
  teken_input()
    <for each input character>
      vtterm_putchar()
      vtterm_cursor_position()
  vtterm_post_input()
    VTBUF_UNLOCK()

The situation was even worse when the vtterm_copy() and vtterm_fill()
callbacks were involved.

The new callbacks are:
  * struct terminal_class->tc_pre_input()
  * struct terminal_class->tc_post_input()

They are called in teken_input(), surrounding the while() loop.

The goal is to improve input processing speed of vt(4). As a benchmark,
here is the time taken to write a text file of 360 000 lines (26 MiB) on
`ttyv0`:

  * vt(4), unmodified:      1500 ms
  * vt(4), with this patch: 1200 ms
  * syscons(4):              700 ms

This is on a Haswell laptop with a GENERIC-NODEBUG kernel.

At the same time, the locking is changed in the vt_flush() function
which is responsible to draw the text on screen. So instead of
(indirectly) using VTBUF_LOCK() just to read and reset the dirty area
of the internal buffer, the lock is held for about the entire function,
including the drawing part.

The change is mostly visible while content is scrolling fast: before,
lines could appear garbled while scrolling because the internal buffer
was accessed without locks (once the scrolling was finished, the output
was correct). Now, the scrolling appears correct.

In the end, the locking model is closer to what syscons(4) does.

Differential Revision:	https://reviews.freebsd.org/D15302
2018-05-16 09:01:02 +00:00
..
aac Move most of the contents of opt_compat.h to opt_global.h. 2018-04-06 17:35:35 +00:00
aacraid Move most of the contents of opt_compat.h to opt_global.h. 2018-04-06 17:35:35 +00:00
acpi_support
acpica Use device_quiet_children to silence verbose CPU probe messages. 2018-05-07 21:09:17 +00:00
adb sys/dev: further adoption of SPDX licensing ID tags. 2017-11-27 14:52:40 +00:00
adlink Convert the PCI ID selection from a simple if into a table. 2018-03-23 15:35:19 +00:00
advansys Fix kernel build after r328523, correct variable names 2018-01-29 04:04:52 +00:00
ae sys/dev: further adoption of SPDX licensing ID tags. 2017-11-27 14:52:40 +00:00
age sys/dev: further adoption of SPDX licensing ID tags. 2017-11-27 14:52:40 +00:00
agp sys/dev: further adoption of SPDX licensing ID tags. 2017-11-27 14:52:40 +00:00
aha Tag the current round of deprecated drivers. 2018-01-29 00:14:46 +00:00
ahci Fix kernel modules names for Marvell armv7 2018-04-03 23:49:35 +00:00
aic Tag the current round of deprecated drivers. 2018-01-29 00:14:46 +00:00
aic7xxx Correct pseudo misspelling in sys/ comments 2018-02-23 18:15:50 +00:00
al_eth Do pass removing some write-only variables from the kernel. 2017-12-25 04:48:39 +00:00
alc Add netdump hooks to alc(4). 2018-05-06 00:43:46 +00:00
ale sys/dev: further adoption of SPDX licensing ID tags. 2017-11-27 14:52:40 +00:00
alpm
altera Convert atse(4) driver for Altera Triple-Speed Ethernet MegaCore to use 2018-04-13 15:59:24 +00:00
amd_ecc_inject
amdpm
amdsbwd amdsbwd: fix reboot status reporting 2018-05-05 05:22:11 +00:00
amdsmb
amdsmn Add PNP metadata to a few drivers 2017-09-14 15:34:45 +00:00
amdtemp sys/dev: further adoption of SPDX licensing ID tags. 2017-11-27 14:52:40 +00:00
amr sys/dev: further adoption of SPDX licensing ID tags. 2017-11-27 14:52:40 +00:00
an Use an accessor function to access ifr_data. 2018-03-30 18:50:13 +00:00
arcmsr sys/dev: further adoption of SPDX licensing ID tags. 2017-11-27 14:52:40 +00:00
asmc asmc: update temperature sensor name/description 2018-03-08 18:52:47 +00:00
ata Add ISA PNP tables to ISA drivers. Fix a few incidental comments. 2018-01-29 00:22:30 +00:00
ath Use an accessor function to access ifr_data. 2018-03-30 18:50:13 +00:00
atkbdc Clean up OF_getprop_alloc API 2018-04-08 22:59:34 +00:00
auxio sys/dev: further adoption of SPDX licensing ID tags. 2017-11-27 14:52:40 +00:00
axgbe Do pass removing some write-only variables from the kernel. 2017-12-25 04:48:39 +00:00
bce Add PNP info to the bce driver. 2018-04-17 16:46:01 +00:00
beri Revert r327828, r327949, r327953, r328016-r328026, r328041: 2018-01-21 15:42:36 +00:00
bfe sys/dev: further adoption of SPDX licensing ID tags. 2017-11-27 14:52:40 +00:00
bge Add netdump hooks to bge(4). 2018-05-06 00:45:41 +00:00
bhnd bhnd(4): Use the new BHND_CAP_BP64 capability flag to exclude DMA 2018-03-29 19:48:50 +00:00
bktr Remove unused definition bl_dfp; fix build with bktr compiled into kernel 2018-04-21 18:43:09 +00:00
bm sys/dev: further adoption of SPDX licensing ID tags. 2017-11-27 14:52:40 +00:00
bnxt Use C99 initializers for iflib function tables. 2018-04-11 15:15:34 +00:00
buslogic Tag the current round of deprecated drivers. 2018-01-29 00:14:46 +00:00
bvm sys/dev: further adoption of SPDX licensing ID tags. 2017-11-27 14:52:40 +00:00
bwi sys/dev: further adoption of SPDX licensing ID tags. 2017-11-27 14:52:40 +00:00
bwn net80211: wrap protection frame allocation into ieee80211_alloc_prot() 2018-03-09 11:33:56 +00:00
bxe Fix bxe(4) netdump rx polling. 2018-05-09 19:54:34 +00:00
cadence kernel: Fix several typos and minor errors 2017-12-27 03:23:21 +00:00
cardbus Push down Giant one layer. In the days of yore, back when Penitums 2018-03-20 22:01:18 +00:00
cas sys/dev: further adoption of SPDX licensing ID tags. 2017-11-27 14:52:40 +00:00
ce
cesa Enable cesa driver to work with Linux DT binding 2018-04-09 23:36:52 +00:00
cfe sys/dev: further adoption of SPDX licensing ID tags. 2017-11-27 14:52:40 +00:00
cfi sys/dev: further adoption of SPDX licensing ID tags. 2017-11-27 14:52:40 +00:00
chromebook_platform
ciss Update a TBD string with a real model number 2018-03-25 06:08:18 +00:00
cmx sys/dev: further adoption of SPDX licensing ID tags. 2017-11-27 14:52:40 +00:00
coretemp sys/dev: further adoption of SPDX licensing ID tags. 2017-11-27 14:52:40 +00:00
cp
cpuctl IBRS support, AKA Spectre hardware mitigation. 2018-01-31 14:36:27 +00:00
cpufreq Align OF_getencprop_alloc API with OF_getencprop and OF_getprop_alloc 2018-04-09 22:06:16 +00:00
cs Create a new ISA_PNP_INFO macro. Use this macro every where we have 2017-12-23 06:49:27 +00:00
ctau
cx
cxgb Add netdump support to cxgb(4). 2018-05-06 00:48:43 +00:00
cxgbe cxgbe(4): Add support for two more flash parts. 2018-05-15 22:26:09 +00:00
cy Move most of the contents of opt_compat.h to opt_global.h. 2018-04-06 17:35:35 +00:00
cyapa Fix typo in cyapa out of bounds check. 2017-08-08 13:27:32 +00:00
dc spdx: initial adoption of licensing ID tags. 2017-11-18 14:26:50 +00:00
dcons i386 4/4G split. 2018-04-13 20:30:49 +00:00
de GC never enabled support for SIOCGADDRROM and SIOCGCHIPID. 2018-03-29 15:58:49 +00:00
dme
dpaa Align OF_getencprop_alloc API with OF_getencprop and OF_getprop_alloc 2018-04-09 22:06:16 +00:00
dpms sys/dev: further adoption of SPDX licensing ID tags. 2017-11-20 19:36:21 +00:00
dpt Tag the current round of deprecated drivers. 2018-01-29 00:14:46 +00:00
drm Correct signedness bug in drm_modeset_ctl 2018-03-22 01:00:55 +00:00
drm2 Move most of the contents of opt_compat.h to opt_global.h. 2018-04-06 17:35:35 +00:00
dwc
e1000 igb(4): 2018-05-15 13:30:59 +00:00
ed kill traling white space 2018-03-23 15:35:07 +00:00
efidev efidev: Drop a quick note in about efi_cfgtbl/efi_runtime 2018-03-23 02:45:09 +00:00
ena Do not pass header length to the ENA controller 2018-05-10 09:37:54 +00:00
ep Fix r327383: 2017-12-30 19:27:22 +00:00
esp Revert r327828, r327949, r327953, r328016-r328026, r328041: 2018-01-21 15:42:36 +00:00
et sys/dev: further adoption of SPDX licensing ID tags. 2017-11-20 19:36:21 +00:00
etherswitch Improve detection of addressing mode in e6000sw 2018-04-10 08:35:43 +00:00
evdev uinput: Add FreeBSD specific ioctl to set unique identifier of input device. 2018-04-30 10:34:16 +00:00
ex Fall back to ether_ioctl() by default. 2018-03-30 20:24:29 +00:00
exca Use M. Warner Losh everywhere on my copyrights. 2018-05-01 16:29:22 +00:00
extres Remove "All Rights Reserved" on files that I hold sole copyright on 2018-05-09 16:44:19 +00:00
fb Revert r327828, r327949, r327953, r328016-r328026, r328041: 2018-01-21 15:42:36 +00:00
fdc Create a new ISA_PNP_INFO macro. Use this macro every where we have 2017-12-23 06:49:27 +00:00
fdt Align OF_getencprop_alloc API with OF_getencprop and OF_getprop_alloc 2018-04-09 22:06:16 +00:00
fe Create a new ISA_PNP_INFO macro. Use this macro every where we have 2017-12-23 06:49:27 +00:00
ffec sys/dev: further adoption of SPDX licensing ID tags. 2017-11-27 14:52:40 +00:00
filemon Eliminate the overhead of gratuitous repeated reinitialization of cap_rights 2018-05-09 18:47:24 +00:00
firewire The Uninorth ID was really for Uninorth 2. 2018-04-01 00:25:47 +00:00
flash Add driver for Cadence Quad SPI Flash Controller found on 2018-04-23 10:35:00 +00:00
fxp sys/dev: further adoption of SPDX licensing ID tags. 2017-11-27 14:52:40 +00:00
gem sys/dev: further adoption of SPDX licensing ID tags. 2017-11-27 14:52:40 +00:00
glxiic sys/dev: further adoption of SPDX licensing ID tags. 2017-11-27 14:52:40 +00:00
glxsb sys/dev: further adoption of SPDX licensing ID tags. 2017-11-27 14:52:40 +00:00
gpio Align OF_getencprop_alloc API with OF_getencprop and OF_getprop_alloc 2018-04-09 22:06:16 +00:00
gxemul sys/dev: further adoption of SPDX licensing ID tags. 2017-11-27 14:52:40 +00:00
hdmi
hifn sys/dev: further adoption of SPDX licensing ID tags. 2017-11-27 14:52:40 +00:00
hme sys/dev: further adoption of SPDX licensing ID tags. 2017-11-27 14:52:40 +00:00
hpt27xx hpt27xx: plug info leak in hpt_ioctl 2018-01-02 18:29:44 +00:00
hptiop sys/dev: further adoption of SPDX licensing ID tags. 2017-11-27 14:52:40 +00:00
hptmv sys/dev: further adoption of SPDX licensing ID tags. 2017-11-27 14:52:40 +00:00
hptnr hpt{nr,rr}: plug info leak in hpt_ioctl 2018-01-02 18:31:32 +00:00
hptrr hpt{nr,rr}: plug info leak in hpt_ioctl 2018-01-02 18:31:32 +00:00
hwpmc hwpmc: don't reference domain index with no memory backing it 2018-05-14 06:11:25 +00:00
hyperv i386 4/4G split. 2018-04-13 20:30:49 +00:00
ic sys/dev: further adoption of SPDX licensing ID tags. 2017-11-27 14:52:40 +00:00
ichiic [ig4] Add support for i2c controllers on Skylake and Kaby Lake 2018-03-06 23:39:43 +00:00
ichsmb
ichwd sys/dev: further adoption of SPDX licensing ID tags. 2017-11-27 14:52:40 +00:00
ida sys/dev: further adoption of SPDX licensing ID tags. 2017-11-27 14:52:40 +00:00
if_ndis Use an accessor function to access ifr_data. 2018-03-30 18:50:13 +00:00
iicbus Use M. Warner Losh everywhere on my copyrights. 2018-05-01 16:29:22 +00:00
iir sys/dev: further adoption of SPDX licensing ID tags. 2017-11-27 14:52:40 +00:00
imcsmb imcsmb(4): Intel integrated Memory Controller (iMC) SMBus controller driver 2018-03-03 01:53:51 +00:00
intel
intpm Use '#' rather than some made up name for fields we want to ignore. 2017-12-22 17:53:27 +00:00
io sys/dev: further adoption of SPDX licensing ID tags. 2017-11-27 14:52:40 +00:00
ioat Use '#' rather than some made up name for fields we want to ignore. 2017-12-22 17:53:27 +00:00
ipmi In cases where an application issues certain IPMI commands at a high 2018-04-06 15:15:21 +00:00
ips sys/dev: further adoption of SPDX licensing ID tags. 2017-11-27 14:52:40 +00:00
ipw sys/dev: further adoption of SPDX licensing ID tags. 2017-11-27 14:52:40 +00:00
isci Correct typo in ATA_WRITE_UNCORRECTABLE_PSEUDO 2018-02-23 20:01:42 +00:00
iscsi Fix typo in a warning message. 2018-03-14 18:27:06 +00:00
iscsi_initiator sys/dev: further adoption of SPDX licensing ID tags. 2017-11-27 14:52:40 +00:00
iser Merge ^/head r325999 through r326131. 2017-11-23 14:28:14 +00:00
isl
ismt
isp Increase ABOUT FIRMWARE command timeout to 5s. 2018-03-15 01:07:21 +00:00
ispfw Update QLogic ISP 24xx/25xx chips firmware to 8.07.00. 2018-03-02 19:50:41 +00:00
iwi Use an accessor function to access ifr_data. 2018-03-30 18:50:13 +00:00
iwm [iwm] Add support for iwm 3168 cards 2018-03-28 07:59:16 +00:00
iwn [net80211] convert all of the WME use over to a temporary copy of WME info. 2018-01-02 00:07:28 +00:00
ixgbe Restore SIOCGI2C functionality to ixgbe 2018-04-17 16:51:27 +00:00
ixl ixl(4): Update to 1.9.9-k 2018-05-01 18:50:12 +00:00
jedec_dimm jedec_dimm: Use correct string length when populating sc->slotid_str 2018-03-22 06:31:05 +00:00
jedec_ts jedec_ts: add many more devices from various vendors 2017-09-13 13:03:29 +00:00
jme sys/dev: further adoption of SPDX licensing ID tags. 2017-11-27 14:52:40 +00:00
joy Tag the current round of deprecated drivers. 2018-01-29 00:14:46 +00:00
kbd Revert r327828, r327949, r327953, r328016-r328026, r328041: 2018-01-21 15:42:36 +00:00
kbdmux Move most of the contents of opt_compat.h to opt_global.h. 2018-04-06 17:35:35 +00:00
ksyms sys/dev: further adoption of SPDX licensing ID tags. 2017-11-27 14:52:40 +00:00
le Clean up OF_getprop_alloc API 2018-04-08 22:59:34 +00:00
led SPDX: use the Beerware identifier. 2017-11-30 20:33:45 +00:00
lge spdx: initial adoption of licensing ID tags. 2017-11-18 14:26:50 +00:00
liquidio Revert r327828, r327949, r327953, r328016-r328026, r328041: 2018-01-21 15:42:36 +00:00
malo sys/dev: further adoption of SPDX licensing ID tags. 2017-11-27 14:52:40 +00:00
mbox
mc146818 SPDX: Consider code from Carnegie-Mellon University. 2017-11-30 15:48:35 +00:00
md Move most of the contents of opt_compat.h to opt_global.h. 2018-04-06 17:35:35 +00:00
mdio
mem sys/dev: further adoption of SPDX licensing ID tags. 2017-11-27 14:52:40 +00:00
mfi Move most of the contents of opt_compat.h to opt_global.h. 2018-04-06 17:35:35 +00:00
mge sys/dev: further adoption of SPDX licensing ID tags. 2017-11-20 19:36:21 +00:00
mii Do pass removing some write-only variables from the kernel. 2017-12-25 04:48:39 +00:00
mk48txx sys/dev: further adoption of SPDX licensing ID tags. 2017-11-27 14:52:40 +00:00
mlx sys/dev: further adoption of SPDX licensing ID tags. 2017-11-27 14:52:40 +00:00
mlx4 Use an accessor function to access ifr_data. 2018-03-30 18:50:13 +00:00
mlx5 mlx5en: Always allow VLAN id 0. 2018-05-02 20:22:03 +00:00
mly sys/dev: further adoption of SPDX licensing ID tags. 2017-11-27 14:52:40 +00:00
mmc - If present, take advantage of the R/W cache of eMMC revision 1.5 and 2018-05-15 21:15:09 +00:00
mmcnull Added mmcnull, an emulated lightweight MMC controller 2017-07-09 17:02:47 +00:00
mn SPDX: use the Beerware identifier. 2017-11-30 20:33:45 +00:00
mpr Clean enclosure_table when resetting num_enc_table_entries to zero. 2018-05-02 02:41:09 +00:00
mps Move most of the contents of opt_compat.h to opt_global.h. 2018-04-06 17:35:35 +00:00
mpt Revert r327828, r327949, r327953, r328016-r328026, r328041: 2018-01-21 15:42:36 +00:00
mrsas Move most of the contents of opt_compat.h to opt_global.h. 2018-04-06 17:35:35 +00:00
mse Tag the current round of deprecated drivers. 2018-01-29 00:14:46 +00:00
msk spdx: initial adoption of licensing ID tags. 2017-11-18 14:26:50 +00:00
mthca Optimize ibcore RoCE address handle creation from user-space. 2018-03-05 14:34:52 +00:00
mvs kernel: Fix several typos and minor errors 2017-12-27 03:23:21 +00:00
mwl Use an accessor function to access ifr_data. 2018-03-30 18:50:13 +00:00
mxge mxge(4) should pass unhandled ioctls to ether_ioctl() 2018-02-15 03:22:04 +00:00
my sys/dev: further adoption of SPDX licensing ID tags. 2017-11-27 14:52:40 +00:00
nand Use M. Warner Losh everywhere on my copyrights. 2018-05-01 16:29:22 +00:00
ncr
nctgpio nctgpio: add new device id for the GPIO chip in PCEngines APU3 2018-01-02 20:58:05 +00:00
ncv Tag the current round of deprecated drivers. 2018-01-29 00:14:46 +00:00
neta Clean up OF_getprop_alloc API 2018-04-08 22:59:34 +00:00
netfpga10g/nf10bmac
netmap Fix build on 32-bit systems. 2018-04-13 19:43:23 +00:00
nfe
nfsmb
nge spdx: initial adoption of licensing ID tags. 2017-11-18 14:26:50 +00:00
nmdm sys/dev: further adoption of SPDX licensing ID tags. 2017-11-20 19:36:21 +00:00
nsp Tag the current round of deprecated drivers. 2018-01-29 00:14:46 +00:00
ntb Try to preallocate receive memory early. 2018-01-31 01:04:36 +00:00
null Refactor some of the MI kernel dump code in preparation for netdump. 2018-05-06 00:22:38 +00:00
nvd sys/dev: further adoption of SPDX licensing ID tags. 2017-11-27 14:52:40 +00:00
nvme Remove the 'All Rights Reserved' clause from some of the stuff I've 2018-05-09 20:32:23 +00:00
nvram sys/dev: further adoption of SPDX licensing ID tags. 2017-11-27 14:52:40 +00:00
nvram2env sys/dev: further adoption of SPDX licensing ID tags. 2017-11-27 14:52:40 +00:00
oce Add ability to perform a firmware reset during driver initialization. 2018-05-01 17:39:20 +00:00
ocs_fc Clear out the entire structure, not just the size of a pointer to it. 2018-05-11 14:50:26 +00:00
ofw Align OF_getencprop_alloc API with OF_getencprop and OF_getprop_alloc 2018-04-09 22:06:16 +00:00
otus otus(4): check mcast / mgt / ucast rates during Tx descriptor setup 2018-03-11 00:38:08 +00:00
ow [ofw] fix errneous checks for OF_finddevice(9) return value 2018-03-20 00:03:49 +00:00
pbio sys/dev: further adoption of SPDX licensing ID tags. 2017-11-27 14:52:40 +00:00
pccard Push down Giant one layer. In the days of yore, back when Penitums 2018-03-20 22:01:18 +00:00
pccbb Use M. Warner Losh everywhere on my copyrights. 2018-05-01 16:29:22 +00:00
pcf sys/dev: further adoption of SPDX licensing ID tags. 2017-11-27 14:52:40 +00:00
pci Allow PCI VGA devices to be detached. 2018-05-03 22:51:44 +00:00
pcn spdx: initial adoption of licensing ID tags. 2017-11-18 14:26:50 +00:00
pms pms/freebsd: fix compiler warnings 2017-10-21 07:23:45 +00:00
powermac_nvram sys/dev: further adoption of SPDX licensing ID tags. 2017-11-27 14:52:40 +00:00
ppbus SPDX: use the Beerware identifier. 2017-11-30 20:33:45 +00:00
ppc i386 4/4G split. 2018-04-13 20:30:49 +00:00
proto
psci Add a function to find the PSCI version the firmware implements from 2018-01-09 15:57:09 +00:00
pst Revert r327828, r327949, r327953, r328016-r328026, r328041: 2018-01-21 15:42:36 +00:00
pty sys/dev: further adoption of SPDX licensing ID tags. 2017-11-27 14:52:40 +00:00
puc Add PNP info to the PCI attahement of the puc driver. 2018-04-17 16:46:08 +00:00
qlnx/qlnxe Use an accessor function to access ifr_data. 2018-03-30 18:50:13 +00:00
qlxgb sys/dev: further adoption of SPDX licensing ID tags. 2017-11-27 14:52:40 +00:00
qlxgbe Upgraded FW Related Files to version 5.4.67 2018-04-25 17:51:17 +00:00
qlxge sys/dev: further adoption of SPDX licensing ID tags. 2017-11-27 14:52:40 +00:00
quicc sys/dev: further adoption of SPDX licensing ID tags. 2017-11-27 14:52:40 +00:00
ral net80211: wrap protection frame allocation into ieee80211_alloc_prot() 2018-03-09 11:33:56 +00:00
random random(4): Poll for signals during large reads 2018-03-16 18:50:26 +00:00
rc sys/dev: further adoption of SPDX licensing ID tags. 2017-11-27 14:52:40 +00:00
rccgpio
re Add netdump support to re(4). 2018-05-06 00:52:17 +00:00
rl Remove register keyword from sys/ and ANSIfy prototypes 2017-05-17 00:34:34 +00:00
rndtest sys/dev: further adoption of SPDX licensing ID tags. 2017-11-27 14:52:40 +00:00
rp Move most of the contents of opt_compat.h to opt_global.h. 2018-04-06 17:35:35 +00:00
rt sys/dev: further adoption of SPDX licensing ID tags. 2017-11-27 14:52:40 +00:00
rtwn rtwn(4): de-hardcode ('h/w rate index' - 'corresponding MCS index') constant 2018-03-16 01:03:10 +00:00
safe sys/dev: further adoption of SPDX licensing ID tags. 2017-11-27 14:52:40 +00:00
sbni Use an accessor function to access ifr_data. 2018-03-30 18:50:13 +00:00
scc sys/dev: further adoption of SPDX licensing ID tags. 2017-11-27 14:52:40 +00:00
sdhci The broken DDR52 support of Intel Bay Trail eMMC controllers rumored 2018-05-14 21:46:06 +00:00
sec sys/dev: further adoption of SPDX licensing ID tags. 2017-11-27 14:52:40 +00:00
sf spdx: initial adoption of licensing ID tags. 2017-11-18 14:26:50 +00:00
sfxge Use an accessor function to access ifr_data. 2018-03-30 18:50:13 +00:00
sge spdx: initial adoption of licensing ID tags. 2017-11-18 14:26:50 +00:00
siis sys/dev: further adoption of SPDX licensing ID tags. 2017-11-27 14:52:40 +00:00
sio Move most of the contents of opt_compat.h to opt_global.h. 2018-04-06 17:35:35 +00:00
sis spdx: initial adoption of licensing ID tags. 2017-11-18 14:26:50 +00:00
sk spdx: initial adoption of licensing ID tags. 2017-11-18 14:26:50 +00:00
smartpqi smartpqi(4): Unbreak GCC build 2018-04-28 17:43:20 +00:00
smbus sys/dev: further adoption of SPDX licensing ID tags. 2017-11-27 14:52:40 +00:00
smc Do pass removing some write-only variables from the kernel. 2017-12-25 04:48:39 +00:00
sn sys/dev: further adoption of SPDX licensing ID tags. 2017-11-27 14:52:40 +00:00
snp sys/dev: further adoption of SPDX licensing ID tags. 2017-11-27 14:52:40 +00:00
sound hda(4) 2018-04-23 16:38:27 +00:00
speaker Remove register keyword from sys/ and ANSIfy prototypes 2017-05-17 00:34:34 +00:00
spibus Allow hinted attachment on FDT-based systems. Instead of returning ENXIO 2018-04-08 17:06:30 +00:00
ste spdx: initial adoption of licensing ID tags. 2017-11-18 14:26:50 +00:00
stg Tag the current round of deprecated drivers. 2018-01-29 00:14:46 +00:00
stge sys/dev: further adoption of SPDX licensing ID tags. 2017-11-27 14:52:40 +00:00
sym sys/dev: further adoption of SPDX licensing ID tags. 2017-11-27 14:52:40 +00:00
syscons i386 4/4G split. 2018-04-13 20:30:49 +00:00
tcp_log Make the TCP blackbox code committed in r331347 be an optional feature 2018-03-24 12:48:10 +00:00
tdfx sys/dev: further adoption of SPDX licensing ID tags. 2017-11-27 14:52:40 +00:00
terasic sys/dev: further adoption of SPDX licensing ID tags. 2017-11-27 14:52:40 +00:00
ti spdx: initial adoption of licensing ID tags. 2017-11-18 14:26:50 +00:00
tl spdx: initial adoption of licensing ID tags. 2017-11-18 14:26:50 +00:00
tpm
trm sys/dev: further adoption of SPDX licensing ID tags. 2017-11-27 14:52:40 +00:00
tsec sys/dev: further adoption of SPDX licensing ID tags. 2017-11-27 14:52:40 +00:00
twa sys/dev: further adoption of SPDX licensing ID tags. 2017-11-27 14:52:40 +00:00
twe sys/dev: further adoption of SPDX licensing ID tags. 2017-11-27 14:52:40 +00:00
tws sys/dev: further adoption of SPDX licensing ID tags. 2017-11-27 14:52:40 +00:00
tx sys/dev: further adoption of SPDX licensing ID tags. 2017-11-27 14:52:40 +00:00
txp if_txpreg.h: drop clauses 3 and 4. 2017-12-29 00:59:56 +00:00
uart uart_snps: Add early printf support 2018-05-01 13:57:08 +00:00
ubsec sys/dev: further adoption of SPDX licensing ID tags. 2017-11-27 14:52:40 +00:00
usb Attempt to fix build by removing EOF backslash-newline 2018-05-16 03:17:37 +00:00
vge spdx: initial adoption of licensing ID tags. 2017-11-18 14:26:50 +00:00
viapm
viawd sys/dev: further adoption of SPDX licensing ID tags. 2017-11-27 14:52:40 +00:00
videomode
virtio Add netdump support to vtnet(4). 2018-05-06 00:53:52 +00:00
vkbd Move most of the contents of opt_compat.h to opt_global.h. 2018-04-06 17:35:35 +00:00
vmware Update VMCI license based on comments from core, the FreeBSD Foundation, 2018-04-08 01:32:56 +00:00
vnic Align OF_getencprop_alloc API with OF_getencprop and OF_getprop_alloc 2018-04-09 22:06:16 +00:00
vr spdx: initial adoption of licensing ID tags. 2017-11-18 14:26:50 +00:00
vt teken, vt(4): New callbacks to lock the terminal once 2018-05-16 09:01:02 +00:00
vte sys/dev: further adoption of SPDX licensing ID tags. 2017-11-27 14:52:40 +00:00
vx sys/dev: further adoption of SPDX licensing ID tags. 2017-11-27 14:52:40 +00:00
vxge vxge(4): deprecation notice 2018-05-11 17:26:59 +00:00
watchdog make SW_WATCHDOG dynamic 2018-01-03 00:56:30 +00:00
wb spdx: initial adoption of licensing ID tags. 2017-11-18 14:26:50 +00:00
wbwd Add IDs for Nuvoton NCT6793/NCT6795. 2018-01-13 16:31:07 +00:00
wi spdx: initial adoption of licensing ID tags. 2017-11-18 14:26:50 +00:00
wpi [net80211] convert all of the WME use over to a temporary copy of WME info. 2018-01-02 00:07:28 +00:00
wtap sys/dev: further adoption of SPDX licensing ID tags. 2017-11-27 14:52:40 +00:00
xdma Add driver for ARM PrimeCell PL330 DMA engine. 2018-04-13 12:43:54 +00:00
xe sys/dev: further adoption of SPDX licensing ID tags. 2017-11-27 14:52:40 +00:00
xen xen: fix gntdev 2018-05-02 10:19:17 +00:00
xilinx
xl Add PNP info to xl as an example. 2018-03-23 15:35:15 +00:00