Commit Graph

18185 Commits

Author SHA1 Message Date
rin
35a048da19 Document NFS_BOOT_UDP instead of NFS_BOOT_TCP; We've switched to
NFS over TCP by default.

Bump date.
2021-03-14 02:56:07 +00:00
fcambus
3a79b57aac Update Spleen wscons fonts to version 1.9.0, bringing the following
improvements:

- Enlarge vertical line for consistency with other small sizes (5x8 version)
- Add full support for the Latin-1 Supplement Unicode block (6x12 version)
2021-03-12 21:07:08 +00:00
nia
73bd0f0df6 Use inline cross-references. 2021-03-12 10:48:29 +00:00
nia
c11974cbe1 Use inline cross-references 2021-03-12 10:45:43 +00:00
uwe
33da33a43d Retire the paragraph from 1983 that says this file can be "created
from the official host data base maintained at the Network Information
Control Center (NIC)".  Suggested by Henry Bent.
2021-03-12 10:00:32 +00:00
nia
6cfc1dcd83 s/Disk and tape/Storage/g, more relevant cross-references 2021-03-12 08:28:20 +00:00
nia
44d60cf0a4 add rtsx(4) 2021-03-12 08:19:29 +00:00
nia
f2b94eb614 Clarify problem. 2021-03-12 08:03:24 +00:00
nia
0269aae9a7 Fix missing Xr 2021-03-11 18:16:50 +00:00
nia
fe15df49d0 Mention that formats with >16-bit precision cannot yet be used 2021-03-11 17:42:14 +00:00
nia
490280b5bf Remove dead references 2021-03-11 17:12:42 +00:00
nia
26a3928b4e Use inline cross-references.
Remove dead reference.
2021-03-11 17:01:55 +00:00
nia
b111a8ed96 Use inline cross-references 2021-03-11 16:59:04 +00:00
nia
0cea59e8b3 Use inline cross-references.
Remove reference to no-longer-existing FDDI driver.
2021-03-11 16:56:50 +00:00
nia
2c3227d4ff Use inline cross-references. 2021-03-11 16:53:14 +00:00
nia
74ff3ffbf7 Use inline cross-references.
Remove dead references that mandoc complains about.
2021-03-11 16:50:08 +00:00
nia
ed05de92ad Reference kernel developer's manual 2021-03-11 16:43:01 +00:00
nia
36e57376af Use inline cross-references. 2021-03-11 16:39:58 +00:00
nia
f1f02abe4d Use inline references. 2021-03-11 16:34:12 +00:00
nia
7343bd7865 Use inline cross-references. 2021-03-11 15:46:03 +00:00
nia
e4c891f6dc cross-reference pci(9) 2021-03-11 15:44:50 +00:00
nia
807762b108 Be less redundant in the DESCRIPTION 2021-03-11 15:41:32 +00:00
nia
b011bd8bdd Put cross-references in a useful place, copying usb(4)
Caught a few drivers in the list that no longer exist this way.
2021-03-11 15:40:02 +00:00
nia
c48385939a add ena(4) 2021-03-11 15:27:40 +00:00
nia
90499bedcc delint by removing Tn macros 2021-03-11 14:19:43 +00:00
nia
ae8854d7cc add vmx, virtio 2021-03-11 14:08:18 +00:00
nia
c238b6b786 Add ixg 2021-03-11 10:45:33 +00:00
ryo
a41b701065 Numeric modifiers conflict with the syntax interpretation of ddb, so use 'b', 'w', 'l', 'q' instead.
Also, change load/store('l','s') to 'r','w' like the other arch.

 >db{0}> machine watch/1 hostname
 >Bad modifier

 >db{0}> machine watch/s1 hostname
 >add watchpoint 0 as ffffc00001087848
2021-03-11 10:34:34 +00:00
nia
00c9e6ab61 Move nvme where I expected to find it (disk controllers section) 2021-03-11 10:33:36 +00:00
nia
2c68c9ba50 Split wifi cards into a separate section, add many more. 2021-03-11 10:28:53 +00:00
simonb
996bea5137 Add printf_nostamp(9), kernel printf() without prepending a timestamp. 2021-03-10 13:27:51 +00:00
wiz
279c4abbec drm(4): allow limiting maximum X/Y resolution
With some drivers (at least radeon(4)), in some cases the driver
does not choose the resolution correctly.  The options
DRM_MAX_RESOLUTION_HORIZONTAL and DRM_MAX_RESOLUTION_VERTICAL allow
limiting the maximum resolution in X and Y direction.
2021-03-10 07:23:42 +00:00
wiz
55d4a9403e Improve wording, use more macros. 2021-03-09 12:02:24 +00:00
msaitoh
47293c3f8d Modify some parameters to reduce packet dropping.
- Background: ixgbe doesn't use common MCLGET() interface and use the
   driver specific cluster allocation mechanism (jcl). The cluster is
   pre-allocated with a fixed number and the current number per queue
   is num_rx_desc * 2 (2048*2=4096). It's too small. It also has a problem
   that the max length of the pcq which is used in the TX path is big
   (4096). Example:

    100M <----- [ixg0                                      ixg1] <----- 1G
                2048 TX descs <--- 4096 pcqs <---- 2048 RX descs

   If a machine forwards a traffic from 1G interface to 100M interface,
   It would require 2048+4096+2048=8192 descriptors, but the current number
   is 2048*2=4096. It's too small. Even if the both interface's link speed
   is the same and only small number of packet is queued in the pcq, 4096
   jcl is small because 2048(RX)+TX(2048)=4096. If jcl is exhausted, not only
   forwarding from ixg1 to ixg0 is dropped, but also another forwarding path
   from ixg1 to another interface(e.g. wm0) is also dropped. Sockets also
   queue packets, so if a lot of sockets are used and/or a socket buffer
   size is changed to bigger one, it'll also become a problem. If the jcl
   is exhausted, evcnt(9) counter "ixgX qY Rx no jumbo mbuf" is incremented.
   Example:
     vmstat -ev | grep ixg1 | grep "no jumbo"
     ixg1 q0 Rx no jumbo mbuf                           0     0 misc
     ixg1 q1 Rx no jumbo mbuf                           0     0 misc
     ixg1 q2 Rx no jumbo mbuf                      141326     0 misc
     ixg1 q3 Rx no jumbo mbuf                           0     0 misc


 - To solve this problem:
   - Add new config parameter IXGBE_JCLNUM_MULTI and set the default to 3
     (2048 * 3). The minimum number is 2. The total number of jcl per queue
     is available with hw.ixgN.num_jcl_per_queue sysctl.
   - Reduce the max length of the pcq() which is used in the TX path from
     4096 to 2048.

 - Reviewed by knakahara@ and ozaki-r@.

 - TODO: Use MCLGET().
2021-03-09 10:03:18 +00:00
rin
e31cf72b5a Build Xorg server for evbppc with minimum wsfb(4) support for Explora. 2021-03-07 10:42:26 +00:00
nia
0425cc10a5 BER 2021-03-07 08:48:36 +00:00
rin
d4ac66a3c1 Build modules for PPC_OEA64 on evbppc64. 2021-03-07 07:37:35 +00:00
rin
6a710fbbfe whitespace --> tab. No functional changes. 2021-03-07 07:30:15 +00:00
rin
f111f7ed2a Fix trivial typo. No need to bump date. 2021-03-06 14:44:02 +00:00
wiz
0c6f663d29 Fix Dd, comment out OpenBSD-only page. 2021-03-01 18:14:05 +00:00
jakllsch
f953b8197c link to rge(4) from pci(4) 2021-03-01 18:08:36 +00:00
jakllsch
dc78acc9bb install rge(4) manual 2021-03-01 18:01:05 +00:00
jakllsch
11a67816dc update rge(4) manual page from OpenBSD 2021-03-01 17:58:33 +00:00
nia
d5df319d8e Add SEE ALSOs for various bus types
suggested by mrg
2021-02-28 07:51:29 +00:00
nia
4ac5e7bd9a add ixl(4) properly 2021-02-27 11:06:32 +00:00
nia
cfea959cbb add ixl(4) 2021-02-27 11:05:38 +00:00
nia
1a72d6a424 spi.4: mention history of ioctl interface 2021-02-27 09:54:59 +00:00
nia
99ad362525 iic.4: Add FILES section. Fix copypasto. 2021-02-27 08:59:24 +00:00
nia
3c780445e5 Describe the i2c ioctl interface 2021-02-27 08:56:14 +00:00
nia
1e4ba3da61 iic.4: add ssdfb 2021-02-27 08:43:15 +00:00