linux-stable/Documentation/ABI/testing
Linus Torvalds 169e77764a Networking changes for 5.18.
Core
 ----
 
  - Introduce XDP multi-buffer support, allowing the use of XDP with
    jumbo frame MTUs and combination with Rx coalescing offloads (LRO).
 
  - Speed up netns dismantling (5x) and lower the memory cost a little.
    Remove unnecessary per-netns sockets. Scope some lists to a netns.
    Cut down RCU syncing. Use batch methods. Allow netdev registration
    to complete out of order.
 
  - Support distinguishing timestamp types (ingress vs egress) and
    maintaining them across packet scrubbing points (e.g. redirect).
 
  - Continue the work of annotating packet drop reasons throughout
    the stack.
 
  - Switch netdev error counters from an atomic to dynamically
    allocated per-CPU counters.
 
  - Rework a few preempt_disable(), local_irq_save() and busy waiting
    sections problematic on PREEMPT_RT.
 
  - Extend the ref_tracker to allow catching use-after-free bugs.
 
 BPF
 ---
 
  - Introduce "packing allocator" for BPF JIT images. JITed code is
    marked read only, and used to be allocated at page granularity.
    Custom allocator allows for more efficient memory use, lower
    iTLB pressure and prevents identity mapping huge pages from
    getting split.
 
  - Make use of BTF type annotations (e.g. __user, __percpu) to enforce
    the correct probe read access method, add appropriate helpers.
 
  - Convert the BPF preload to use light skeleton and drop
    the user-mode-driver dependency.
 
  - Allow XDP BPF_PROG_RUN test infra to send real packets, enabling
    its use as a packet generator.
 
  - Allow local storage memory to be allocated with GFP_KERNEL if called
    from a hook allowed to sleep.
 
  - Introduce fprobe (multi kprobe) to speed up mass attachment (arch
    bits to come later).
 
  - Add unstable conntrack lookup helpers for BPF by using the BPF
    kfunc infra.
 
  - Allow cgroup BPF progs to return custom errors to user space.
 
  - Add support for AF_UNIX iterator batching.
 
  - Allow iterator programs to use sleepable helpers.
 
  - Support JIT of add, and, or, xor and xchg atomic ops on arm64.
 
  - Add BTFGen support to bpftool which allows to use CO-RE in kernels
    without BTF info.
 
  - Large number of libbpf API improvements, cleanups and deprecations.
 
 Protocols
 ---------
 
  - Micro-optimize UDPv6 Tx, gaining up to 5% in test on dummy netdev.
 
  - Adjust TSO packet sizes based on min_rtt, allowing very low latency
    links (data centers) to always send full-sized TSO super-frames.
 
  - Make IPv6 flow label changes (AKA hash rethink) more configurable,
    via sysctl and setsockopt. Distinguish between server and client
    behavior.
 
  - VxLAN support to "collect metadata" devices to terminate only
    configured VNIs. This is similar to VLAN filtering in the bridge.
 
  - Support inserting IPv6 IOAM information to a fraction of frames.
 
  - Add protocol attribute to IP addresses to allow identifying where
    given address comes from (kernel-generated, DHCP etc.)
 
  - Support setting socket and IPv6 options via cmsg on ping6 sockets.
 
  - Reject mis-use of ECN bits in IP headers as part of DSCP/TOS.
    Define dscp_t and stop taking ECN bits into account in fib-rules.
 
  - Add support for locked bridge ports (for 802.1X).
 
  - tun: support NAPI for packets received from batched XDP buffs,
    doubling the performance in some scenarios.
 
  - IPv6 extension header handling in Open vSwitch.
 
  - Support IPv6 control message load balancing in bonding, prevent
    neighbor solicitation and advertisement from using the wrong port.
    Support NS/NA monitor selection similar to existing ARP monitor.
 
  - SMC
    - improve performance with TCP_CORK and sendfile()
    - support auto-corking
    - support TCP_NODELAY
 
  - MCTP (Management Component Transport Protocol)
    - add user space tag control interface
    - I2C binding driver (as specified by DMTF DSP0237)
 
  - Multi-BSSID beacon handling in AP mode for WiFi.
 
  - Bluetooth:
    - handle MSFT Monitor Device Event
    - add MGMT Adv Monitor Device Found/Lost events
 
  - Multi-Path TCP:
    - add support for the SO_SNDTIMEO socket option
    - lots of selftest cleanups and improvements
 
  - Increase the max PDU size in CAN ISOTP to 64 kB.
 
 Driver API
 ----------
 
  - Add HW counters for SW netdevs, a mechanism for devices which
    offload packet forwarding to report packet statistics back to
    software interfaces such as tunnels.
 
  - Select the default NIC queue count as a fraction of number of
    physical CPU cores, instead of hard-coding to 8.
 
  - Expose devlink instance locks to drivers. Allow device layer of
    drivers to use that lock directly instead of creating their own
    which always runs into ordering issues in devlink callbacks.
 
  - Add header/data split indication to guide user space enabling
    of TCP zero-copy Rx.
 
  - Allow configuring completion queue event size.
 
  - Refactor page_pool to enable fragmenting after allocation.
 
  - Add allocation and page reuse statistics to page_pool.
 
  - Improve Multiple Spanning Trees support in the bridge to allow
    reuse of topologies across VLANs, saving HW resources in switches.
 
  - DSA (Distributed Switch Architecture):
    - replay and offload of host VLAN entries
    - offload of static and local FDB entries on LAG interfaces
    - FDB isolation and unicast filtering
 
 New hardware / drivers
 ----------------------
 
  - Ethernet:
    - LAN937x T1 PHYs
    - Davicom DM9051 SPI NIC driver
    - Realtek RTL8367S, RTL8367RB-VB switch and MDIO
    - Microchip ksz8563 switches
    - Netronome NFP3800 SmartNICs
    - Fungible SmartNICs
    - MediaTek MT8195 switches
 
  - WiFi:
    - mt76: MediaTek mt7916
    - mt76: MediaTek mt7921u USB adapters
    - brcmfmac: Broadcom BCM43454/6
 
  - Mobile:
    - iosm: Intel M.2 7360 WWAN card
 
 Drivers
 -------
 
  - Convert many drivers to the new phylink API built for split PCS
    designs but also simplifying other cases.
 
  - Intel Ethernet NICs:
    - add TTY for GNSS module for E810T device
    - improve AF_XDP performance
    - GTP-C and GTP-U filter offload
    - QinQ VLAN support
 
  - Mellanox Ethernet NICs (mlx5):
    - support xdp->data_meta
    - multi-buffer XDP
    - offload tc push_eth and pop_eth actions
 
  - Netronome Ethernet NICs (nfp):
    - flow-independent tc action hardware offload (police / meter)
    - AF_XDP
 
  - Other Ethernet NICs:
    - at803x: fiber and SFP support
    - xgmac: mdio: preamble suppression and custom MDC frequencies
    - r8169: enable ASPM L1.2 if system vendor flags it as safe
    - macb/gem: ZynqMP SGMII
    - hns3: add TX push mode
    - dpaa2-eth: software TSO
    - lan743x: multi-queue, mdio, SGMII, PTP
    - axienet: NAPI and GRO support
 
  - Mellanox Ethernet switches (mlxsw):
    - source and dest IP address rewrites
    - RJ45 ports
 
  - Marvell Ethernet switches (prestera):
    - basic routing offload
    - multi-chain TC ACL offload
 
  - NXP embedded Ethernet switches (ocelot & felix):
    - PTP over UDP with the ocelot-8021q DSA tagging protocol
    - basic QoS classification on Felix DSA switch using dcbnl
    - port mirroring for ocelot switches
 
  - Microchip high-speed industrial Ethernet (sparx5):
    - offloading of bridge port flooding flags
    - PTP Hardware Clock
 
  - Other embedded switches:
    - lan966x: PTP Hardward Clock
    - qca8k: mdio read/write operations via crafted Ethernet packets
 
  - Qualcomm 802.11ax WiFi (ath11k):
    - add LDPC FEC type and 802.11ax High Efficiency data in radiotap
    - enable RX PPDU stats in monitor co-exist mode
 
  - Intel WiFi (iwlwifi):
    - UHB TAS enablement via BIOS
    - band disablement via BIOS
    - channel switch offload
    - 32 Rx AMPDU sessions in newer devices
 
  - MediaTek WiFi (mt76):
    - background radar detection
    - thermal management improvements on mt7915
    - SAR support for more mt76 platforms
    - MBSSID and 6 GHz band on mt7915
 
  - RealTek WiFi:
    - rtw89: AP mode
    - rtw89: 160 MHz channels and 6 GHz band
    - rtw89: hardware scan
 
  - Bluetooth:
    - mt7921s: wake on Bluetooth, SCO over I2S, wide-band-speed (WBS)
 
  - Microchip CAN (mcp251xfd):
    - multiple RX-FIFOs and runtime configurable RX/TX rings
    - internal PLL, runtime PM handling simplification
    - improve chip detection and error handling after wakeup
 
 Signed-off-by: Jakub Kicinski <kuba@kernel.org>
 -----BEGIN PGP SIGNATURE-----
 
 iQIzBAABCAAdFiEE6jPA+I1ugmIBA4hXMUZtbf5SIrsFAmI7YBcACgkQMUZtbf5S
 IrveSBAAmSNJlUK6vPsnNzs7IhsZnfI/AUjm2TCLZnlhKttbpI4A/4Pohk33V7RS
 FGX7f8kjEfhUwrIiLDgeCnztNHRECrCmk6aZc/jLEvecmTauJ+f6kjShkDY/wix+
 AkPHmrZnQeLPAEVuljDdV+sL6ik08+zQL7PazIYHsaSKKC0MGQptRwcri8PLRAKE
 KPBAhVhleq2rAZ/ntprSN52F4Af6rpFTrPIWuN8Bqdbc9dy5094LT0mpOOWYvgr3
 /DLvvAPuLemwyIQkjWknVKBRUAQcmNPC+BY3J8K3LRaiNhekGqOFan46BfqP+k2J
 6DWu0Qrp2yWt4BMOeEToZR5rA6v5suUAMIBu8PRZIDkINXQMlIxHfGjZyNm0rVfw
 7edNri966yus9OdzwPa32MIG3oC6PnVAwYCJAjjBMNS8sSIkp7wgHLkgWN4UFe2H
 K/e6z8TLF4UQ+zFM0aGI5WZ+9QqWkTWEDF3R3OhdFpGrznna0gxmkOeV2YvtsgxY
 cbS0vV9Zj73o+bYzgBKJsw/dAjyLdXoHUGvus26VLQ78S/VGunVKtItwoxBAYmZo
 krW964qcC89YofzSi8RSKLHuEWtNWZbVm8YXr75u6jpr5GhMBu0CYefLs+BuZcxy
 dw8c69cGneVbGZmY2J3rBhDkchbuICl8vdUPatGrOJAoaFdYKuw=
 =ELpe
 -----END PGP SIGNATURE-----

Merge tag 'net-next-5.18' of git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next

Pull networking updates from Jakub Kicinski:
 "The sprinkling of SPI drivers is because we added a new one and Mark
  sent us a SPI driver interface conversion pull request.

  Core
  ----

   - Introduce XDP multi-buffer support, allowing the use of XDP with
     jumbo frame MTUs and combination with Rx coalescing offloads (LRO).

   - Speed up netns dismantling (5x) and lower the memory cost a little.
     Remove unnecessary per-netns sockets. Scope some lists to a netns.
     Cut down RCU syncing. Use batch methods. Allow netdev registration
     to complete out of order.

   - Support distinguishing timestamp types (ingress vs egress) and
     maintaining them across packet scrubbing points (e.g. redirect).

   - Continue the work of annotating packet drop reasons throughout the
     stack.

   - Switch netdev error counters from an atomic to dynamically
     allocated per-CPU counters.

   - Rework a few preempt_disable(), local_irq_save() and busy waiting
     sections problematic on PREEMPT_RT.

   - Extend the ref_tracker to allow catching use-after-free bugs.

  BPF
  ---

   - Introduce "packing allocator" for BPF JIT images. JITed code is
     marked read only, and used to be allocated at page granularity.
     Custom allocator allows for more efficient memory use, lower iTLB
     pressure and prevents identity mapping huge pages from getting
     split.

   - Make use of BTF type annotations (e.g. __user, __percpu) to enforce
     the correct probe read access method, add appropriate helpers.

   - Convert the BPF preload to use light skeleton and drop the
     user-mode-driver dependency.

   - Allow XDP BPF_PROG_RUN test infra to send real packets, enabling
     its use as a packet generator.

   - Allow local storage memory to be allocated with GFP_KERNEL if
     called from a hook allowed to sleep.

   - Introduce fprobe (multi kprobe) to speed up mass attachment (arch
     bits to come later).

   - Add unstable conntrack lookup helpers for BPF by using the BPF
     kfunc infra.

   - Allow cgroup BPF progs to return custom errors to user space.

   - Add support for AF_UNIX iterator batching.

   - Allow iterator programs to use sleepable helpers.

   - Support JIT of add, and, or, xor and xchg atomic ops on arm64.

   - Add BTFGen support to bpftool which allows to use CO-RE in kernels
     without BTF info.

   - Large number of libbpf API improvements, cleanups and deprecations.

  Protocols
  ---------

   - Micro-optimize UDPv6 Tx, gaining up to 5% in test on dummy netdev.

   - Adjust TSO packet sizes based on min_rtt, allowing very low latency
     links (data centers) to always send full-sized TSO super-frames.

   - Make IPv6 flow label changes (AKA hash rethink) more configurable,
     via sysctl and setsockopt. Distinguish between server and client
     behavior.

   - VxLAN support to "collect metadata" devices to terminate only
     configured VNIs. This is similar to VLAN filtering in the bridge.

   - Support inserting IPv6 IOAM information to a fraction of frames.

   - Add protocol attribute to IP addresses to allow identifying where
     given address comes from (kernel-generated, DHCP etc.)

   - Support setting socket and IPv6 options via cmsg on ping6 sockets.

   - Reject mis-use of ECN bits in IP headers as part of DSCP/TOS.
     Define dscp_t and stop taking ECN bits into account in fib-rules.

   - Add support for locked bridge ports (for 802.1X).

   - tun: support NAPI for packets received from batched XDP buffs,
     doubling the performance in some scenarios.

   - IPv6 extension header handling in Open vSwitch.

   - Support IPv6 control message load balancing in bonding, prevent
     neighbor solicitation and advertisement from using the wrong port.
     Support NS/NA monitor selection similar to existing ARP monitor.

   - SMC
      - improve performance with TCP_CORK and sendfile()
      - support auto-corking
      - support TCP_NODELAY

   - MCTP (Management Component Transport Protocol)
      - add user space tag control interface
      - I2C binding driver (as specified by DMTF DSP0237)

   - Multi-BSSID beacon handling in AP mode for WiFi.

   - Bluetooth:
      - handle MSFT Monitor Device Event
      - add MGMT Adv Monitor Device Found/Lost events

   - Multi-Path TCP:
      - add support for the SO_SNDTIMEO socket option
      - lots of selftest cleanups and improvements

   - Increase the max PDU size in CAN ISOTP to 64 kB.

  Driver API
  ----------

   - Add HW counters for SW netdevs, a mechanism for devices which
     offload packet forwarding to report packet statistics back to
     software interfaces such as tunnels.

   - Select the default NIC queue count as a fraction of number of
     physical CPU cores, instead of hard-coding to 8.

   - Expose devlink instance locks to drivers. Allow device layer of
     drivers to use that lock directly instead of creating their own
     which always runs into ordering issues in devlink callbacks.

   - Add header/data split indication to guide user space enabling of
     TCP zero-copy Rx.

   - Allow configuring completion queue event size.

   - Refactor page_pool to enable fragmenting after allocation.

   - Add allocation and page reuse statistics to page_pool.

   - Improve Multiple Spanning Trees support in the bridge to allow
     reuse of topologies across VLANs, saving HW resources in switches.

   - DSA (Distributed Switch Architecture):
      - replay and offload of host VLAN entries
      - offload of static and local FDB entries on LAG interfaces
      - FDB isolation and unicast filtering

  New hardware / drivers
  ----------------------

   - Ethernet:
      - LAN937x T1 PHYs
      - Davicom DM9051 SPI NIC driver
      - Realtek RTL8367S, RTL8367RB-VB switch and MDIO
      - Microchip ksz8563 switches
      - Netronome NFP3800 SmartNICs
      - Fungible SmartNICs
      - MediaTek MT8195 switches

   - WiFi:
      - mt76: MediaTek mt7916
      - mt76: MediaTek mt7921u USB adapters
      - brcmfmac: Broadcom BCM43454/6

   - Mobile:
      - iosm: Intel M.2 7360 WWAN card

  Drivers
  -------

   - Convert many drivers to the new phylink API built for split PCS
     designs but also simplifying other cases.

   - Intel Ethernet NICs:
      - add TTY for GNSS module for E810T device
      - improve AF_XDP performance
      - GTP-C and GTP-U filter offload
      - QinQ VLAN support

   - Mellanox Ethernet NICs (mlx5):
      - support xdp->data_meta
      - multi-buffer XDP
      - offload tc push_eth and pop_eth actions

   - Netronome Ethernet NICs (nfp):
      - flow-independent tc action hardware offload (police / meter)
      - AF_XDP

   - Other Ethernet NICs:
      - at803x: fiber and SFP support
      - xgmac: mdio: preamble suppression and custom MDC frequencies
      - r8169: enable ASPM L1.2 if system vendor flags it as safe
      - macb/gem: ZynqMP SGMII
      - hns3: add TX push mode
      - dpaa2-eth: software TSO
      - lan743x: multi-queue, mdio, SGMII, PTP
      - axienet: NAPI and GRO support

   - Mellanox Ethernet switches (mlxsw):
      - source and dest IP address rewrites
      - RJ45 ports

   - Marvell Ethernet switches (prestera):
      - basic routing offload
      - multi-chain TC ACL offload

   - NXP embedded Ethernet switches (ocelot & felix):
      - PTP over UDP with the ocelot-8021q DSA tagging protocol
      - basic QoS classification on Felix DSA switch using dcbnl
      - port mirroring for ocelot switches

   - Microchip high-speed industrial Ethernet (sparx5):
      - offloading of bridge port flooding flags
      - PTP Hardware Clock

   - Other embedded switches:
      - lan966x: PTP Hardward Clock
      - qca8k: mdio read/write operations via crafted Ethernet packets

   - Qualcomm 802.11ax WiFi (ath11k):
      - add LDPC FEC type and 802.11ax High Efficiency data in radiotap
      - enable RX PPDU stats in monitor co-exist mode

   - Intel WiFi (iwlwifi):
      - UHB TAS enablement via BIOS
      - band disablement via BIOS
      - channel switch offload
      - 32 Rx AMPDU sessions in newer devices

   - MediaTek WiFi (mt76):
      - background radar detection
      - thermal management improvements on mt7915
      - SAR support for more mt76 platforms
      - MBSSID and 6 GHz band on mt7915

   - RealTek WiFi:
      - rtw89: AP mode
      - rtw89: 160 MHz channels and 6 GHz band
      - rtw89: hardware scan

   - Bluetooth:
      - mt7921s: wake on Bluetooth, SCO over I2S, wide-band-speed (WBS)

   - Microchip CAN (mcp251xfd):
      - multiple RX-FIFOs and runtime configurable RX/TX rings
      - internal PLL, runtime PM handling simplification
      - improve chip detection and error handling after wakeup"

* tag 'net-next-5.18' of git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next: (2521 commits)
  llc: fix netdevice reference leaks in llc_ui_bind()
  drivers: ethernet: cpsw: fix panic when interrupt coaleceing is set via ethtool
  ice: don't allow to run ice_send_event_to_aux() in atomic ctx
  ice: fix 'scheduling while atomic' on aux critical err interrupt
  net/sched: fix incorrect vlan_push_eth dest field
  net: bridge: mst: Restrict info size queries to bridge ports
  net: marvell: prestera: add missing destroy_workqueue() in prestera_module_init()
  drivers: net: xgene: Fix regression in CRC stripping
  net: geneve: add missing netlink policy and size for IFLA_GENEVE_INNER_PROTO_INHERIT
  net: dsa: fix missing host-filtered multicast addresses
  net/mlx5e: Fix build warning, detected write beyond size of field
  iwlwifi: mvm: Don't fail if PPAG isn't supported
  selftests/bpf: Fix kprobe_multi test.
  Revert "rethook: x86: Add rethook x86 implementation"
  Revert "arm64: rethook: Add arm64 rethook implementation"
  Revert "powerpc: Add rethook support"
  Revert "ARM: rethook: Add rethook arm implementation"
  netdevice: add missing dm_private kdoc
  net: bridge: mst: prevent NULL deref in br_mst_info_size()
  selftests: forwarding: Use same VRF for port and VLAN upper
  ...
2022-03-24 13:13:26 -07:00
..
configfs-acpi docs: ABI: convert testing/configfs-acpi to ReST 2020-10-30 13:10:03 +01:00
configfs-iio docs: typo fixes in Documentation/ABI/ 2021-05-13 09:13:25 -06:00
configfs-most docs: typo fixes in Documentation/ABI/ 2021-05-13 09:13:25 -06:00
configfs-rdma_cm
configfs-spear-pcie-gadget docs: ABI: testing: make the files compatible with ReST output 2020-10-30 13:07:01 +01:00
configfs-stp-policy
configfs-stp-policy-p_sys-t stm class: p_sys-t: Document the configfs interface 2018-10-11 12:12:55 +02:00
configfs-usb-gadget docs: typo fixes in Documentation/ABI/ 2021-05-13 09:13:25 -06:00
configfs-usb-gadget-acm
configfs-usb-gadget-ecm docs: ABI: Drop trailing whitespace 2020-11-13 15:03:49 -07:00
configfs-usb-gadget-eem docs: ABI: cleanup several ABI documents 2020-10-30 13:14:29 +01:00
configfs-usb-gadget-ffs
configfs-usb-gadget-hid docs: ABI: testing: make the files compatible with ReST output 2020-10-30 13:07:01 +01:00
configfs-usb-gadget-loopback docs: ABI: cleanup several ABI documents 2020-10-30 13:14:29 +01:00
configfs-usb-gadget-mass-storage docs: ABI: cleanup several ABI documents 2020-10-30 13:14:29 +01:00
configfs-usb-gadget-midi docs: ABI: cleanup several ABI documents 2020-10-30 13:14:29 +01:00
configfs-usb-gadget-ncm
configfs-usb-gadget-obex
configfs-usb-gadget-phonet
configfs-usb-gadget-printer docs: ABI: cleanup several ABI documents 2020-10-30 13:14:29 +01:00
configfs-usb-gadget-rndis docs: ABI: testing: make the files compatible with ReST output 2020-10-30 13:07:01 +01:00
configfs-usb-gadget-serial
configfs-usb-gadget-sourcesink docs: ABI: cleanup several ABI documents 2020-10-30 13:14:29 +01:00
configfs-usb-gadget-subset docs: ABI: cleanup several ABI documents 2020-10-30 13:14:29 +01:00
configfs-usb-gadget-tcm
configfs-usb-gadget-uac1 docs: ABI: fixed req_number desc in UAC1 2021-12-30 12:10:44 +01:00
configfs-usb-gadget-uac1_legacy
configfs-usb-gadget-uac2 docs: ABI: fixed formatting in configfs-usb-gadget-uac2 2022-01-08 15:48:52 +01:00
configfs-usb-gadget-uvc docs: typo fixes in Documentation/ABI/ 2021-05-13 09:13:25 -06:00
debugfs-cec-error-inj docs: ABI: cleanup several ABI documents 2020-10-30 13:14:29 +01:00
debugfs-cros-ec mfd / platform: cros_ec_debugfs: Expose resume result via debugfs 2019-07-01 15:39:11 +02:00
debugfs-driver-genwqe docs: typo fixes in Documentation/ABI/ 2021-05-13 09:13:25 -06:00
debugfs-driver-habanalabs habanalabs: align debugfs documentation to alphabetical order 2021-12-26 08:59:06 +02:00
debugfs-ec docs: ABI: testing: make the files compatible with ReST output 2020-10-30 13:07:01 +01:00
debugfs-hisi-hpre Documentation: update debugfs doc for Hisilicon HPRE 2022-01-28 16:51:10 +11:00
debugfs-hisi-sec Documentation: update debugfs doc for Hisilicon SEC 2022-01-28 16:51:09 +11:00
debugfs-hisi-zip Documentation: update debugfs doc for Hisilicon ZIP 2022-01-28 16:51:09 +11:00
debugfs-hyperv drivers: hv: vmbus: Introduce latency testing 2019-11-21 20:10:44 -05:00
debugfs-ideapad
debugfs-moxtet treewide: change my e-mail address, fix my name 2021-04-09 14:54:23 -07:00
debugfs-olpc
debugfs-pfo-nx-crypto docs: ABI: cleanup several ABI documents 2020-10-30 13:14:29 +01:00
debugfs-pktcdvd docs: ABI: cleanup several ABI documents 2020-10-30 13:14:29 +01:00
debugfs-turris-mox-rwtm treewide: change my e-mail address, fix my name 2021-04-09 14:54:23 -07:00
debugfs-wilco-ec docs: ABI: cleanup several ABI documents 2020-10-30 13:14:29 +01:00
dell-smbios-wmi platform/x86: Update Mario Limonciello's email address in the docs 2021-08-13 13:18:15 +02:00
dev-kmsg docs: ABI: testing: make the files compatible with ReST output 2020-10-30 13:07:01 +01:00
devlink-resource-mlxsw
evm ABI: evm: place a second what at the next line 2021-09-28 12:45:42 +02:00
gpio-cdev docs: ABI: cleanup several ABI documents 2020-10-30 13:14:29 +01:00
ima_policy Driver core changes for 5.16-rc1 2021-11-04 08:32:38 -07:00
ppc-memtrace Documentation: Update documentation on ppc-memtrace 2018-08-10 22:12:32 +10:00
procfs-attr-current docs: ABI: ABI documentation for procfs attribute files used by multiple LSMs 2020-11-13 15:02:19 -07:00
procfs-attr-exec docs: ABI: ABI documentation for procfs attribute files used by multiple LSMs 2020-11-13 15:02:19 -07:00
procfs-attr-prev docs: ABI: ABI documentation for procfs attribute files used by multiple LSMs 2020-11-13 15:02:19 -07:00
procfs-diskstats docs: ABI: cleanup several ABI documents 2020-10-30 13:14:29 +01:00
procfs-smaps_rollup docs: ABI: cleanup several ABI documents 2020-10-30 13:14:29 +01:00
pstore ABI: pstore: Fix What field 2021-09-21 18:31:16 +02:00
rtc-cdev rtc: Document RTC_VL_READ and RTC_VL_CLR ioctls 2019-12-18 10:37:20 +01:00
sysfs-ata ABI: sysfs-ata: use a proper wildcard for ata_* 2021-09-21 18:31:16 +02:00
sysfs-block-aoe
sysfs-block-bcache
sysfs-block-device docs: sysfs-block-device: document ncq_prio_supported 2021-08-18 07:19:39 -06:00
sysfs-block-dm
sysfs-block-loop
sysfs-block-rnbd Documentation/ABI/rnbd-clt: Add description for nr_poll_queues 2021-04-20 08:59:04 -06:00
sysfs-block-rssd
sysfs-block-zram zram: idle writeback fixes and cleanup 2019-01-08 17:15:10 -08:00
sysfs-bus-acpi docs: ABI: cleanup several ABI documents 2020-10-30 13:14:29 +01:00
sysfs-bus-amba
sysfs-bus-bcma
sysfs-bus-coresight-devices-cti docs: ABI: change read/write attributes 2020-10-30 13:14:31 +01:00
sysfs-bus-coresight-devices-etb10 docs: ABI: change read/write attributes 2020-10-30 13:14:31 +01:00
sysfs-bus-coresight-devices-etm3x docs: ABI: change read/write attributes 2020-10-30 13:14:31 +01:00
sysfs-bus-coresight-devices-etm4x coresight: etm4x: Expose trcdevarch via sysfs 2021-02-04 17:00:33 +01:00
sysfs-bus-coresight-devices-funnel
sysfs-bus-coresight-devices-stm docs: ABI: change read/write attributes 2020-10-30 13:14:31 +01:00
sysfs-bus-coresight-devices-tmc docs: ABI: change read/write attributes 2020-10-30 13:14:31 +01:00
sysfs-bus-coresight-devices-trbe Documentation: coresight: trbe: Sysfs ABI description 2021-04-06 16:05:38 -06:00
sysfs-bus-counter counter: Implement events_queue_size sysfs attribute 2021-10-17 10:55:01 +01:00
sysfs-bus-css docs: ABI: cleanup several ABI documents 2020-10-30 13:14:29 +01:00
sysfs-bus-cxl cxl/acpi: Introduce cxl_decoder objects 2021-06-09 18:02:39 -07:00
sysfs-bus-dfl docs: ABI: cleanup several ABI documents 2020-10-30 13:14:29 +01:00
sysfs-bus-dfl-devices-emif memory: dfl-emif: add the DFL EMIF private feature driver 2021-01-07 15:21:27 +01:00
sysfs-bus-dfl-devices-n3000-nios fpga: dfl: add support for N3000 Nios private feature 2021-01-07 15:21:27 +01:00
sysfs-bus-event_source-devices-dfl_fme docs: ABI: fix syntax to be parsed using ReST notation 2020-10-30 13:12:39 +01:00
sysfs-bus-event_source-devices-dsa dmaengine: idxd: Add IDXD performance monitor support 2021-04-25 21:46:12 +05:30
sysfs-bus-event_source-devices-events
sysfs-bus-event_source-devices-format docs: ABI: testing: make the files compatible with ReST output 2020-10-30 13:07:01 +01:00
sysfs-bus-event_source-devices-hv_24x7 docs: ABI: cleanup several ABI documents 2020-10-30 13:14:29 +01:00
sysfs-bus-event_source-devices-hv_gpci docs: ABI: cleanup several ABI documents 2020-10-30 13:14:29 +01:00
sysfs-bus-event_source-devices-uncore perf/x86/intel/uncore: Add alias PMU name 2021-07-02 15:58:40 +02:00
sysfs-bus-fcoe docs: ABI: cleanup several ABI documents 2020-10-30 13:14:29 +01:00
sysfs-bus-fsi docs: typo fixes in Documentation/ABI/ 2021-05-13 09:13:25 -06:00
sysfs-bus-fsi-devices-sbefifo docs: ABI: testing: Document the SBEFIFO timeout interface 2021-10-22 09:54:33 +10:30
sysfs-bus-fsl-mc docs: ABI: cleanup several ABI documents 2020-10-30 13:14:29 +01:00
sysfs-bus-hsi
sysfs-bus-i2c-devices-bq32k
sysfs-bus-i2c-devices-fsa9480 docs: ABI: cleanup several ABI documents 2020-10-30 13:14:29 +01:00
sysfs-bus-i2c-devices-hm6352 ABI: Fix KernelVersion tags 2019-06-15 08:12:45 +02:00
sysfs-bus-i2c-devices-lm3533
sysfs-bus-i2c-devices-pca954x docs: ABI: testing: make the files compatible with ReST output 2020-10-30 13:07:01 +01:00
sysfs-bus-i3c docs: ABI: cleanup several ABI documents 2020-10-30 13:14:29 +01:00
sysfs-bus-iio iio: documentation: Document scd4x calibration use 2021-10-19 08:30:44 +01:00
sysfs-bus-iio-accel-adxl372 iio: accel: adxl372: Add additional trigger ABI docs 2020-09-03 19:40:56 +01:00
sysfs-bus-iio-accel-bmc150
sysfs-bus-iio-adc-ad7192 Documentation: ABI: testing: ad7192: update sysfs docs 2020-03-08 17:28:33 +00:00
sysfs-bus-iio-adc-envelope-detector docs: ABI: testing: make the files compatible with ReST output 2020-10-30 13:07:01 +01:00
sysfs-bus-iio-adc-hi8435 docs: ABI: cleanup several ABI documents 2020-10-30 13:14:29 +01:00
sysfs-bus-iio-adc-max9611
sysfs-bus-iio-adc-mt6360 Documentation: ABI: testing: mt6360: Add ADC sysfs guideline 2020-11-08 16:20:18 +00:00
sysfs-bus-iio-adc-stm32 docs: ABI: cleanup several ABI documents 2020-10-30 13:14:29 +01:00
sysfs-bus-iio-chemical-sgp40 iio: chemical: Add driver support for sgp40 2021-08-08 15:19:18 +01:00
sysfs-bus-iio-chemical-sunrise-co2 iio: ABI: docs: Document Senseair Sunrise ABI 2021-10-19 08:27:31 +01:00
sysfs-bus-iio-chemical-vz89x
sysfs-bus-iio-cros-ec docs: ABI: testing: make the files compatible with ReST output 2020-10-30 13:07:01 +01:00
sysfs-bus-iio-dac-ad5766 Documentation/ABI/testing: Add documentation for AD5766 new ABI 2021-01-22 08:52:05 +00:00
sysfs-bus-iio-dac-dpot-dac
sysfs-bus-iio-dfsdm-adc-stm32 docs: ABI: testing: make the files compatible with ReST output 2020-10-30 13:07:01 +01:00
sysfs-bus-iio-distance-srf08 iio:ABI docs: Combine the two instances of docs for sensor_sensitivity 2021-03-25 19:13:49 +00:00
sysfs-bus-iio-dma-buffer iio: buffer-dmaengine: Report buffer length requirements 2019-12-29 15:20:09 +00:00
sysfs-bus-iio-filter-admv8818 iio:filter:admv8818: Add sysfs ABI documentation 2021-12-16 17:37:45 +00:00
sysfs-bus-iio-frequency-ad9523 docs: ABI: cleanup several ABI documents 2020-10-30 13:14:29 +01:00
sysfs-bus-iio-frequency-adf4350
sysfs-bus-iio-frequency-adf4371 iio:ABI docs: Move specific description of out_altvoltageX_frequency to main docs. 2021-05-17 13:49:10 +01:00
sysfs-bus-iio-frequency-admv1013 Documentation:ABI:testing:admv1013: add ABI docs 2021-12-23 11:53:48 +00:00
sysfs-bus-iio-gyro-bmg160
sysfs-bus-iio-health-afe440x iio:ABI docs: Fix issue around repeated definition of out_currentY_raw 2021-05-17 13:49:10 +01:00
sysfs-bus-iio-humidity iio:ABI docs: Combine sysfs-bus-iio-humidity-hdc2010/hdc100x into one file 2021-03-25 19:13:45 +00:00
sysfs-bus-iio-impedance-analyzer-ad5933 staging: iio: ad5933: add ABI documentation 2019-04-04 20:20:13 +01:00
sysfs-bus-iio-ina2xx-adc
sysfs-bus-iio-isl29501 iio: light: isl29501: Add support for the ISL29501 ToF sensor. 2018-07-23 19:18:10 +01:00
sysfs-bus-iio-light-isl29018 docs: ABI: cleanup several ABI documents 2020-10-30 13:14:29 +01:00
sysfs-bus-iio-light-lm3533-als iio:ABI docs: Fix issue around repeated definition of out_currentY_raw 2021-05-17 13:49:10 +01:00
sysfs-bus-iio-light-si1133 iio: light: introduce si1133 2018-07-23 19:18:11 +01:00
sysfs-bus-iio-light-tsl2583
sysfs-bus-iio-light-tsl2772 staging:iio:light: Move tsl2x7x ABI docs to correct location. 2020-09-16 19:11:59 +01:00
sysfs-bus-iio-magnetometer-hmc5843 docs: ABI: testing: make the files compatible with ReST output 2020-10-30 13:07:01 +01:00
sysfs-bus-iio-meas-spec
sysfs-bus-iio-mpu6050
sysfs-bus-iio-potentiometer-mcp4531
sysfs-bus-iio-proximity iio:ABI docs: Combine the two instances of docs for sensor_sensitivity 2021-03-25 19:13:49 +00:00
sysfs-bus-iio-proximity-as3935 iio:ABI docs: Combine the two instances of docs for sensor_sensitivity 2021-03-25 19:13:49 +00:00
sysfs-bus-iio-sps30 iio: chemical: sps30: fix attribute kernel version 2019-04-04 20:19:44 +01:00
sysfs-bus-iio-sx9310 iio: Add SEMTECH SX9310/9311 sensor driver 2020-03-21 10:28:20 +00:00
sysfs-bus-iio-temperature-max31856 docs: ABI: testing: make the files compatible with ReST output 2020-10-30 13:07:01 +01:00
sysfs-bus-iio-temperature-max31865 iio: temperature: Add MAX31865 RTD Support 2021-09-14 12:00:33 +01:00
sysfs-bus-iio-timer-stm32 docs: ABI: testing: iio: stm32: remove re-introduced unsupported ABI 2020-11-13 16:42:54 +01:00
sysfs-bus-iio-trigger-sysfs
sysfs-bus-iio-vf610
sysfs-bus-intel_th-devices-gth docs: ABI: cleanup several ABI documents 2020-10-30 13:14:29 +01:00
sysfs-bus-intel_th-devices-msc docs: ABI: testing: make the files compatible with ReST output 2020-10-30 13:07:01 +01:00
sysfs-bus-intel_th-devices-pti
sysfs-bus-intel_th-output-devices intel_th: Update ABI documentation 2019-02-21 15:01:06 +02:00
sysfs-bus-mcb
sysfs-bus-mdio ABI: sysfs-bus-mdio: add alternate What for mdio symbols 2021-09-28 12:48:15 +02:00
sysfs-bus-media
sysfs-bus-mei mei: add vtag support bit in client properties 2020-08-18 15:44:43 +02:00
sysfs-bus-mmc
sysfs-bus-most docs: ABI: fix syntax to be parsed using ReST notation 2020-10-30 13:12:39 +01:00
sysfs-bus-moxtet-devices treewide: change my e-mail address, fix my name 2021-04-09 14:54:23 -07:00
sysfs-bus-nfit MAINTAINERS: Move nvdimm mailing list 2021-05-12 12:37:15 -07:00
sysfs-bus-nvdimm docs: ABI: sysfs-bus-nvdimm: use the right format for ABI 2020-10-30 13:12:53 +01:00
sysfs-bus-optee-devices optee: use uuid for sysfs driver entry 2020-07-10 09:41:48 +02:00
sysfs-bus-papr-pmem powerpc/papr_scm: Make 'perf_stats' invisible if perf-stats unavailable 2021-06-25 14:47:18 +10:00
sysfs-bus-pci pci-v5.16-changes 2021-11-06 14:36:12 -07:00
sysfs-bus-pci-devices-aer_stats docs: ABI: testing: make the files compatible with ReST output 2020-10-30 13:07:01 +01:00
sysfs-bus-pci-devices-catpt docs: ABI: cleanup several ABI documents 2020-10-30 13:14:29 +01:00
sysfs-bus-pci-devices-cciss ABI: Fix KernelVersion tags 2019-06-15 08:12:45 +02:00
sysfs-bus-pci-devices-pvpanic misc/pvpanic: add PCI driver 2021-03-28 14:57:11 +02:00
sysfs-bus-pci-drivers-ehci_hcd docs: ABI: cleanup several ABI documents 2020-10-30 13:14:29 +01:00
sysfs-bus-pci-drivers-janz-cmodio
sysfs-bus-pci-drivers-xhci_hcd
sysfs-bus-platform ABI: sysfs-bus-platform: add modalias description 2021-09-28 12:48:16 +02:00
sysfs-bus-platform-devices-occ-hwmon docs: ABI: testing: Document the OCC hwmon FFDC binary interface 2021-10-22 09:54:32 +10:30
sysfs-bus-rapidio ABI: sysfs-bus-rapidio: use wildcards on What definitions 2021-09-21 18:31:15 +02:00
sysfs-bus-rbd docs: ABI: cleanup several ABI documents 2020-10-30 13:14:29 +01:00
sysfs-bus-rpmsg
sysfs-bus-siox docs: ABI: cleanup several ABI documents 2020-10-30 13:14:29 +01:00
sysfs-bus-soundwire-master ABI: sysfs-bus-soundwire-master: use wildcards on What definitions 2021-10-01 10:06:01 +05:30
sysfs-bus-soundwire-slave ABI: sysfs-bus-soundwire-slave: use wildcards on What definitions 2021-10-01 10:06:01 +05:30
sysfs-bus-spi-devices-spi-nor mtd: spi-nor: add initial sysfs support 2021-06-15 23:18:32 +05:30
sysfs-bus-thunderbolt platform/x86: Update Mario Limonciello's email address in the docs 2021-08-13 13:18:15 +02:00
sysfs-bus-typec usb: typec: Bus type for alternate modes 2018-07-02 17:42:36 +02:00
sysfs-bus-umc
sysfs-bus-usb usb: Link the ports to the connectors they are attached to 2021-12-30 12:13:04 +01:00
sysfs-bus-usb-devices-usbsevseg docs: ABI: testing: make the files compatible with ReST output 2020-10-30 13:07:01 +01:00
sysfs-bus-usb-lvstest
sysfs-bus-vdpa vdpa: add driver_override support 2022-01-14 18:50:52 -05:00
sysfs-bus-vfio-mdev docs: ABI: testing: make the files compatible with ReST output 2020-10-30 13:07:01 +01:00
sysfs-bus-vmbus vmbus: add driver_override support 2018-09-12 09:46:46 +02:00
sysfs-c2port docs: ABI: sysfs-c2port: remove a duplicated entry 2020-10-30 13:14:52 +01:00
sysfs-cfq-target-latency
sysfs-class
sysfs-class-backlight docs: ABI: sysfs-class-backlight: unify ambient light zone nodes 2021-05-20 13:44:14 -06:00
sysfs-class-backlight-driver-lm3533 docs: ABI: cleanup several ABI documents 2020-10-30 13:14:29 +01:00
sysfs-class-backlight-lm3639
sysfs-class-bdi ABI: sysfs-class-bdi: use What: to describe each property 2021-09-28 12:48:15 +02:00
sysfs-class-bsr
sysfs-class-chromeos docs: ABI: cleanup several ABI documents 2020-10-30 13:14:29 +01:00
sysfs-class-chromeos-driver-cros-ec-lightbar mfd / platform: cros_ec: Move lightbar attributes to its own driver 2019-02-01 08:09:27 +00:00
sysfs-class-chromeos-driver-cros-ec-vbc mfd / platform: cros_ec: Move vbc attributes to its own driver 2019-02-01 08:09:27 +00:00
sysfs-class-cxl ABI: sysfs-class-cxl: place "not in a guest" at description 2021-09-21 18:31:15 +02:00
sysfs-class-devfreq PM / devfreq: Remove the invalid description for get_target_freq 2021-04-08 13:14:51 +09:00
sysfs-class-devfreq-event ABI: sysfs-class-devfreq-event: use the right wildcards on What 2021-09-21 18:31:15 +02:00
sysfs-class-devlink driver core: Fix device link device name collision 2021-01-21 20:12:40 +01:00
sysfs-class-extcon ABI: sysfs-class-extcon: use uppercase X for wildcards 2021-10-05 16:25:22 +02:00
sysfs-class-fc scsi: documentation: Document Fibre Channel sysfs node for appid 2021-09-14 23:38:58 -04:00
sysfs-class-fc_host scsi: fc: Update documentation of sysfs nodes for FPIN stats 2020-10-26 18:06:45 -04:00
sysfs-class-fc_remote_ports scsi: fc: Update documentation of sysfs nodes for FPIN stats 2020-10-26 18:06:45 -04:00
sysfs-class-firmware-attributes Documentation: syfs-class-firmware-attributes: Lenovo Opcode support 2021-11-18 10:55:22 +01:00
sysfs-class-fpga-bridge
sysfs-class-fpga-manager docs: ABI: cleanup several ABI documents 2020-10-30 13:14:29 +01:00
sysfs-class-fpga-region fpga: region: add compat_id support 2018-07-15 13:55:44 +02:00
sysfs-class-gnss ABI: sysfs-class-gnss: use wildcards on What definitions 2021-09-21 18:31:16 +02:00
sysfs-class-hwmon ABI: hwmon: Document "label" sysfs attribute 2022-02-27 17:03:16 -08:00
sysfs-class-intel_pmt platform/x86: Intel PMT Crashlog capability driver 2020-11-04 11:14:38 +00:00
sysfs-class-iommu
sysfs-class-iommu-amd-iommu
sysfs-class-iommu-intel-iommu
sysfs-class-lcd
sysfs-class-led docs: ABI: unify /sys/class/leds/<led>/brightness documentation 2020-10-30 13:14:48 +01:00
sysfs-class-led-driver-lm3533 docs: ABI: cleanup several ABI documents 2020-10-30 13:14:29 +01:00
sysfs-class-led-driver-turris-omnia treewide: change my e-mail address, fix my name 2021-04-09 14:54:23 -07:00
sysfs-class-led-flash docs: ABI: cleanup several ABI documents 2020-10-30 13:14:29 +01:00
sysfs-class-led-multicolor docs: ABI: unify /sys/class/leds/<led>/brightness documentation 2020-10-30 13:14:48 +01:00
sysfs-class-led-trigger-netdev docs: ABI: cleanup several ABI documents 2020-10-30 13:14:29 +01:00
sysfs-class-led-trigger-oneshot
sysfs-class-led-trigger-pattern docs: ABI: sysfs-class-led-trigger-pattern: remove repeat duplication 2021-05-20 13:44:14 -06:00
sysfs-class-led-trigger-tty leds: trigger: implement a tty trigger 2021-01-15 10:22:26 +01:00
sysfs-class-led-trigger-usbport docs: ABI: cleanup several ABI documents 2020-10-30 13:14:29 +01:00
sysfs-class-leds-gt683r docs: ABI: cleanup several ABI documents 2020-10-30 13:14:29 +01:00
sysfs-class-mei ABI: sysfs-class-mei: use wildcards on What definitions 2021-09-21 18:31:16 +02:00
sysfs-class-mic ABI: sysfs-class-mic: use the right wildcards on What definitions 2021-09-21 18:31:16 +02:00
sysfs-class-mtd
sysfs-class-mux ABI: sysfs-class-mux: use wildcards on What definitions 2021-09-21 18:31:16 +02:00
sysfs-class-net net: add sysfs attribute to control napi threaded mode 2021-02-09 15:27:28 -08:00
sysfs-class-net-cdc_ncm docs: ABI: cleanup several ABI documents 2020-10-30 13:14:29 +01:00
sysfs-class-net-dsa net: dsa: allow changing the tag protocol via the "tagging" device attribute 2021-01-29 21:24:39 -08:00
sysfs-class-net-grcan
sysfs-class-net-janz-ican3
sysfs-class-net-phydev net: phy: Expose phydev::dev_flags through sysfs 2021-03-11 12:47:27 -08:00
sysfs-class-net-qmi Documentation: ABI: sysfs-class-net-qmi: document pass-through file 2021-05-03 13:40:17 -07:00
sysfs-class-net-queues Documentation: Add explanation for XPS using Rx-queue(s) map 2018-07-02 09:06:24 +09:00
sysfs-class-net-statistics Documentation: net-sysfs: describe missing statistics 2019-10-29 17:38:39 -07:00
sysfs-class-ocxl docs: ABI: fix syntax to be parsed using ReST notation 2020-10-30 13:12:39 +01:00
sysfs-class-pktcdvd docs: ABI: cleanup several ABI documents 2020-10-30 13:14:29 +01:00
sysfs-class-power power: supply: fix table problem in sysfs-class-power 2022-02-01 11:15:58 +01:00
sysfs-class-power-ltc4162l power/supply: Add ltc4162-l-charger 2021-01-13 00:46:34 +01:00
sysfs-class-power-mp2629 docs: ABI: cleanup several ABI documents 2020-10-30 13:14:29 +01:00
sysfs-class-power-surface power: supply: Add battery driver for Surface Aggregator Module 2021-04-08 14:30:28 +02:00
sysfs-class-power-twl4030 docs: ABI: cleanup several ABI documents 2020-10-30 13:14:29 +01:00
sysfs-class-power-wilco docs: ABI: fix syntax to be parsed using ReST notation 2020-10-30 13:12:39 +01:00
sysfs-class-powercap pci-v5.3-changes 2019-07-15 20:44:49 -07:00
sysfs-class-pwm ABI: sysfs-class-pwm: use wildcards on What definitions 2021-09-21 18:31:16 +02:00
sysfs-class-rapidio ABI: sysfs-class-rapidio: use wildcards on What definitions 2021-09-21 18:31:17 +02:00
sysfs-class-rc ABI: sysfs-class-rc: use wildcards on What definitions 2021-09-21 18:31:17 +02:00
sysfs-class-rc-nuvoton ABI: sysfs-class-rc-nuvoton: use wildcards on What definitions 2021-09-21 18:31:17 +02:00
sysfs-class-regulator docs: ABI: cleanup several ABI documents 2020-10-30 13:14:29 +01:00
sysfs-class-remoteproc docs: ABI: cleanup several ABI documents 2020-10-30 13:14:29 +01:00
sysfs-class-rnbd-client Documentation/ABI/rnbd-clt: Add description for nr_poll_queues 2021-04-20 08:59:04 -06:00
sysfs-class-rnbd-server Documentation/ABI/rnbd-srv: add document for force_close 2020-12-04 09:41:10 -07:00
sysfs-class-rtc
sysfs-class-rtc-rtc0-device-rtc_calibration docs: ABI: cleanup several ABI documents 2020-10-30 13:14:29 +01:00
sysfs-class-rtrs-client Documentation/ABI/rtrs-clt: Add descriptions for min-latency policy 2021-04-13 19:44:54 -03:00
sysfs-class-rtrs-server RDMA/rtrs: a bit of documentation 2020-05-17 18:57:15 -03:00
sysfs-class-scsi_host docs: ABI: testing: make the files compatible with ReST output 2020-10-30 13:07:01 +01:00
sysfs-class-scsi_tape
sysfs-class-spi-eeprom nvmem: prepare basics for FRAM support 2021-06-11 12:23:10 +02:00
sysfs-class-stm
sysfs-class-stm_source
sysfs-class-switchtec docs: driver-api: add a series of orphaned documents 2019-07-15 11:03:02 -03:00
sysfs-class-thermal thermal: fix Documentation bullet list warning 2022-01-25 18:31:29 +01:00
sysfs-class-typec ABI: sysfs-class-typec: fix a typo on a What field 2021-09-21 18:31:16 +02:00
sysfs-class-usb_role
sysfs-class-uwb_rc ABI: sysfs-class-uwb_rc: use wildcards on What definitions 2021-09-21 18:31:17 +02:00
sysfs-class-uwb_rc-wusbhc ABI: sysfs-class-uwb_rc-wusbhc: use wildcards on What definitions 2021-09-21 18:31:17 +02:00
sysfs-class-wakeup PM / wakeup: Show wakeup sources stats in sysfs 2019-08-21 00:20:40 +02:00
sysfs-class-watchdog docs: ABI: cleanup several ABI documents 2020-10-30 13:14:29 +01:00
sysfs-class-zram
sysfs-dev docs: ABI: cleanup several ABI documents 2020-10-30 13:14:29 +01:00
sysfs-devices
sysfs-devices-consumer driver core: Fix device link device name collision 2021-01-21 20:12:40 +01:00
sysfs-devices-coredump
sysfs-devices-edac
sysfs-devices-firmware_node
sysfs-devices-lpss_ltr
sysfs-devices-mapping docs: ABI: cleanup several ABI documents 2020-10-30 13:14:29 +01:00
sysfs-devices-memory Documentation: sysfs/memory: clarify some memory block device properties 2021-02-26 09:41:00 -08:00
sysfs-devices-mmc
sysfs-devices-online
sysfs-devices-platform-_UDC_-gadget docs: ABI: cleanup several ABI documents 2020-10-30 13:14:29 +01:00
sysfs-devices-platform-ACPI-TAD docs: ABI: testing: make the files compatible with ReST output 2020-10-30 13:07:01 +01:00
sysfs-devices-platform-docg3 docs: ABI: testing: make the files compatible with ReST output 2020-10-30 13:07:01 +01:00
sysfs-devices-platform-dock ABI: sysfs-devices-platform-dock: use wildcards on What definitions 2021-09-21 18:31:17 +02:00
sysfs-devices-platform-ipmi docs: ABI: cleanup several ABI documents 2020-10-30 13:14:29 +01:00
sysfs-devices-platform-sh_mobile_lcdc_fb docs: ABI: testing: make the files compatible with ReST output 2020-10-30 13:07:01 +01:00
sysfs-devices-platform-soc-ipa net: ipa: introduce sysfs code 2021-06-11 14:13:18 -07:00
sysfs-devices-platform-stratix10-rsu docs: ABI: fix syntax to be parsed using ReST notation 2020-10-30 13:12:39 +01:00
sysfs-devices-platform-trackpoint
sysfs-devices-power ABI: sysfs-devices-power: add some debug sysfs files 2021-09-28 12:48:15 +02:00
sysfs-devices-power_resources_D0
sysfs-devices-power_resources_D1
sysfs-devices-power_resources_D2
sysfs-devices-power_resources_D3hot
sysfs-devices-power_resources_wakeup
sysfs-devices-power_state
sysfs-devices-real_power_state
sysfs-devices-removable ABI: sysfs-devices-removable: make a table valid as ReST markup 2021-09-28 12:45:22 +02:00
sysfs-devices-resource_in_use
sysfs-devices-soc firmware: smccc: Add ARCH_SOC_ID support 2020-07-06 09:48:06 +01:00
sysfs-devices-software_node drivers: base: Introducing software nodes to the firmware node framework 2018-11-26 18:19:11 +01:00
sysfs-devices-state_synced driver core: Add state_synced sysfs file for devices that support it 2020-07-10 15:24:56 +02:00
sysfs-devices-sun
sysfs-devices-supplier driver core: Fix device link device name collision 2021-01-21 20:12:40 +01:00
sysfs-devices-system-cpu - Merge the AMD and Intel PPIN code into a shared one by both vendors. 2022-03-21 11:11:48 -07:00
sysfs-devices-system-ibm-rtl docs: ABI: testing: make the files compatible with ReST output 2020-10-30 13:07:01 +01:00
sysfs-devices-system-xen_cpu
sysfs-devices-waiting_for_supplier driver core: Add waiting_for_supplier sysfs file for devices 2020-07-10 15:24:56 +02:00
sysfs-devices-xenbus xen/events: add per-xenbus device event statistics and settings 2021-02-23 10:07:11 -06:00
sysfs-driver-altera-cvp ABI: Fix KernelVersion tags 2019-06-15 08:12:45 +02:00
sysfs-driver-aspeed-uart-routing docs/ABI: testing: aspeed-uart-routing: Escape asterisk 2022-02-08 09:52:41 +01:00
sysfs-driver-bd9571mwv-regulator docs: ABI: testing: make the files compatible with ReST output 2020-10-30 13:07:01 +01:00
sysfs-driver-fsi-master-gpio
sysfs-driver-ge-achc misc: gehc-achc: new driver 2021-08-05 14:29:27 +02:00
sysfs-driver-genwqe docs: ABI: testing: make the files compatible with ReST output 2020-10-30 13:07:01 +01:00
sysfs-driver-habanalabs habanalabs: update email address in sysfs/debugfs docs 2021-01-27 21:03:50 +02:00
sysfs-driver-hid ABI: sysfs-driver-hid: the "What" field doesn't parse fine 2019-06-14 18:17:11 +02:00
sysfs-driver-hid-corsair
sysfs-driver-hid-lenovo docs: ABI: cleanup several ABI documents 2020-10-30 13:14:29 +01:00
sysfs-driver-hid-logitech-hidpp
sysfs-driver-hid-logitech-lg4ff docs: ABI: testing: make the files compatible with ReST output 2020-10-30 13:07:01 +01:00
sysfs-driver-hid-multitouch
sysfs-driver-hid-ntrig docs: ABI: cleanup several ABI documents 2020-10-30 13:14:29 +01:00
sysfs-driver-hid-picolcd
sysfs-driver-hid-prodikeys
sysfs-driver-hid-roccat-kone docs: ABI: cleanup several ABI documents 2020-10-30 13:14:29 +01:00
sysfs-driver-hid-srws1
sysfs-driver-hid-wiimote docs: ABI: cleanup several ABI documents 2020-10-30 13:14:29 +01:00
sysfs-driver-input-axp-pek
sysfs-driver-input-cros-ec-keyb Input: cros-ec-keyb - expose function row physical map to userspace 2021-02-22 21:22:15 -08:00
sysfs-driver-input-exc3000 Input: exc3000 - add type sysfs attribute 2021-03-07 21:56:50 -08:00
sysfs-driver-intc_sar platform/x86: BIOS SAR driver for Intel M.2 Modem 2021-08-20 12:09:41 +02:00
sysfs-driver-intel-m10-bmc mfd: intel-m10-bmc: Expose MAC address and count 2021-02-08 13:54:25 +00:00
sysfs-driver-intel-rapid-start
sysfs-driver-jz4780-efuse docs: ABI: cleanup several ABI documents 2020-10-30 13:14:29 +01:00
sysfs-driver-pciback docs: ABI: cleanup several ABI documents 2020-10-30 13:14:29 +01:00
sysfs-driver-ppi ABI: Fix KernelVersion tags 2019-06-15 08:12:45 +02:00
sysfs-driver-samsung-laptop docs: ABI: testing: make the files compatible with ReST output 2020-10-30 13:07:01 +01:00
sysfs-driver-st ABI: Fix KernelVersion tags 2019-06-15 08:12:45 +02:00
sysfs-driver-tegra-fuse
sysfs-driver-toshiba_acpi docs: ABI: testing: make the files compatible with ReST output 2020-10-30 13:07:01 +01:00
sysfs-driver-toshiba_haps docs: ABI: testing: make the files compatible with ReST output 2020-10-30 13:07:01 +01:00
sysfs-driver-typec-displayport usb: typec: Add driver for DisplayPort alternate mode 2018-07-02 17:42:36 +02:00
sysfs-driver-uacce uacce: add uacce driver 2020-02-22 09:25:42 +08:00
sysfs-driver-ucsi-ccg usb: typec: ucsi: ccg: add firmware flashing support 2019-04-25 11:03:53 +02:00
sysfs-driver-ufs SCSI misc on 20211105 2021-11-05 08:42:02 -07:00
sysfs-driver-w1_ds28e17 docs: ABI: cleanup several ABI documents 2020-10-30 13:14:29 +01:00
sysfs-driver-w1_therm w1: w1_therm: Rename conflicting sysfs attribute 'eeprom' to 'eeprom_cmd' 2020-11-12 08:50:13 +01:00
sysfs-driver-wacom docs: ABI: testing: make the files compatible with ReST output 2020-10-30 13:07:01 +01:00
sysfs-driver-xdata docs: ABI: Add sysfs documentation interface of dw-xdata-pcie driver 2021-04-05 13:15:52 +02:00
sysfs-driver-xen-blkback Documentation: Update SeongJae's email address 2021-09-21 17:10:38 -06:00
sysfs-driver-xen-blkfront Documentation: Update SeongJae's email address 2021-09-21 17:10:38 -06:00
sysfs-firmware-acpi ACPI: tables: introduce support for FPDT table 2021-01-29 19:24:13 +01:00
sysfs-firmware-dmi-entries docs: ABI: testing: make the files compatible with ReST output 2020-10-30 13:07:01 +01:00
sysfs-firmware-dmi-tables
sysfs-firmware-efi efi: Export Runtime Configuration Interface table to sysfs 2019-08-08 11:10:25 +03:00
sysfs-firmware-efi-esrt ABI: sysfs-firmware-efi-esrt: use wildcards on What definitions 2021-09-21 18:31:17 +02:00
sysfs-firmware-efi-runtime-map docs: ABI: cleanup several ABI documents 2020-10-30 13:14:29 +01:00
sysfs-firmware-gsmi docs: ABI: testing: make the files compatible with ReST output 2020-10-30 13:07:01 +01:00
sysfs-firmware-lefi-boardinfo Documentation: ABI: Add /sys/firmware/lefi/boardinfo description for Loongson64 2020-10-27 12:46:35 +01:00
sysfs-firmware-log
sysfs-firmware-memmap docs: ABI: testing: sysfs-firmware-memmap: add some memmap types. 2021-06-24 16:24:51 +02:00
sysfs-firmware-ofw
sysfs-firmware-opal-powercap
sysfs-firmware-opal-psr
sysfs-firmware-opal-sensor-groups powerpc/powernv: Add documentation for the opal sensor_groups sysfs interfaces 2020-04-01 14:30:50 +11:00
sysfs-firmware-qemu_fw_cfg docs: ABI: cleanup several ABI documents 2020-10-30 13:14:29 +01:00
sysfs-firmware-sgi_uv x86/platform/uv: Fix indentation warning in Documentation/ABI/testing/sysfs-firmware-sgi_uv 2021-03-06 12:28:35 +01:00
sysfs-firmware-turris-mox-rwtm treewide: change my e-mail address, fix my name 2021-04-09 14:54:23 -07:00
sysfs-fs-erofs erofs: add sysfs node to control sync decompression strategy 2021-12-08 09:42:18 +08:00
sysfs-fs-ext4 docs: ABI: Drop trailing whitespace 2020-11-13 15:03:49 -07:00
sysfs-fs-f2fs f2fs: introduce gc_urgent_mid mode 2022-03-17 09:16:22 -07:00
sysfs-fs-nilfs2
sysfs-fs-ubifs ubifs: Document sysfs nodes 2021-12-23 20:23:42 +01:00
sysfs-fs-xfs docs: ABI: Fix the spelling oustanding to outstanding in the file sysfs-fs-xfs 2021-03-15 08:50:40 -07:00
sysfs-hypervisor-xen docs: ABI: testing: make the files compatible with ReST output 2020-10-30 13:07:01 +01:00
sysfs-ibft
sysfs-kernel-boot_params docs: ABI: testing: make the files compatible with ReST output 2020-10-30 13:07:01 +01:00
sysfs-kernel-btf bpf: Load and verify kernel module BTFs 2020-11-10 15:25:53 -08:00
sysfs-kernel-dmabuf-buffers dma-buf: Delete the DMA-BUF attachment sysfs statistics 2021-07-20 11:06:59 +02:00
sysfs-kernel-fadump powerpc/fadump: sysfs for fadump memory reservation 2020-02-19 22:46:07 +11:00
sysfs-kernel-fscaps ABI: fix some syntax issues at the ABI database 2019-06-14 18:17:11 +02:00
sysfs-kernel-iommu_groups iommu: Expose DMA domain strictness via sysfs 2021-08-18 13:27:49 +02:00
sysfs-kernel-irq
sysfs-kernel-livepatch docs: livepatch: convert docs to ReST and rename to *.rst 2019-05-07 16:05:49 -06:00
sysfs-kernel-mm
sysfs-kernel-mm-cma mm: cma: support sysfs 2021-05-05 11:27:24 -07:00
sysfs-kernel-mm-damon Docs/ABI/testing: add DAMON sysfs interface ABI document 2022-03-22 15:57:13 -07:00
sysfs-kernel-mm-hugepages docs: ABI: testing: make the files compatible with ReST output 2020-10-30 13:07:01 +01:00
sysfs-kernel-mm-ksm docs: ABI: cleanup several ABI documents 2020-10-30 13:14:29 +01:00
sysfs-kernel-mm-numa mm/migrate: add sysfs interface to enable reclaim migration 2021-09-03 09:58:16 -07:00
sysfs-kernel-mm-swap
sysfs-kernel-reboot reboot: allow to specify reboot mode via sysfs 2020-12-15 22:46:19 -08:00
sysfs-kernel-slab ABI: sysfs-kernel-slab: Document some stats 2021-09-28 12:48:15 +02:00
sysfs-kernel-vmcoreinfo ABI: fix some syntax issues at the ABI database 2019-06-14 18:17:11 +02:00
sysfs-mce ABI: sysfs-mce: add 3 missing files 2021-10-05 16:24:49 +02:00
sysfs-memory-page-offline
sysfs-module ABI: testing/sysfs-module: document initstate 2021-09-28 12:48:15 +02:00
sysfs-ocfs2
sysfs-platform-asus-laptop docs: ABI: testing: make the files compatible with ReST output 2020-10-30 13:07:01 +01:00
sysfs-platform-asus-wmi docs: ABI: testing: make the files compatible with ReST output 2020-10-30 13:07:01 +01:00
sysfs-platform-at91 docs: ABI: testing: make the files compatible with ReST output 2020-10-30 13:07:01 +01:00
sysfs-platform-brcmstb-gisb-arb
sysfs-platform-chipidea-usb-otg Documentation: ABI: usb: chipidea: Update Li Jun's e-mail 2020-06-18 10:40:56 +02:00
sysfs-platform-chipidea-usb2
sysfs-platform-dell-laptop docs: ABI: cleanup several ABI documents 2020-10-30 13:14:29 +01:00
sysfs-platform-dell-privacy-wmi ABI: sysfs-platform-dell-privacy-wmi: correct ABI entries 2021-10-11 14:52:02 +02:00
sysfs-platform-dell-smbios platform/x86: Update Mario Limonciello's email address in the docs 2021-08-13 13:18:15 +02:00
sysfs-platform-dfl-fme docs: ABI: fix syntax to be parsed using ReST notation 2020-10-30 13:12:39 +01:00
sysfs-platform-dfl-port fpga: dfl: afu: add error reporting support. 2019-09-03 19:35:41 -07:00
sysfs-platform-dptf ABI: sysfs-platform-dptf: Add tables markup to a table 2021-09-28 12:45:21 +02:00
sysfs-platform-eeepc-laptop docs: ABI: testing: make the files compatible with ReST output 2020-10-30 13:07:01 +01:00
sysfs-platform-hidma
sysfs-platform-hidma-mgmt
sysfs-platform-i2c-demux-pinctrl docs: ABI: cleanup several ABI documents 2020-10-30 13:14:29 +01:00
sysfs-platform-ideapad-laptop Documentation/ABI: sysfs-platform-ideapad-laptop: conservation_mode attribute 2021-02-04 10:21:50 +01:00
sysfs-platform-intel-pmc ABI: sysfs-platform-intel-pmc: add blank lines to make it valid for ReST 2021-10-11 14:52:02 +02:00
sysfs-platform-intel-wmi-sbl-fw-update docs: ABI: fix syntax to be parsed using ReST notation 2020-10-30 13:12:39 +01:00
sysfs-platform-intel-wmi-thunderbolt platform/x86: Update Mario Limonciello's email address in the docs 2021-08-13 13:18:15 +02:00
sysfs-platform-kim sfi: Remove framework for deprecated firmware 2021-02-15 20:09:46 +01:00
sysfs-platform-lg-laptop platform/x86: Add LG Gram laptop special features driver 2018-10-19 19:21:57 +03:00
sysfs-platform-mellanox-bootctl docs: ABI: fix syntax to be parsed using ReST notation 2020-10-30 13:12:39 +01:00
sysfs-platform-msi-laptop
sysfs-platform-phy-rcar-gen3-usb2 docs: ABI: cleanup several ABI documents 2020-10-30 13:14:29 +01:00
sysfs-platform-renesas_usb3 docs: ABI: Drop trailing whitespace 2020-11-13 15:03:49 -07:00
sysfs-platform-sst-atom ABI: sysfs-platform-sst-atom: use wildcards on What definitions 2021-09-21 18:31:17 +02:00
sysfs-platform-tahvo-usb
sysfs-platform-ts5500
sysfs-platform-twl4030-usb
sysfs-platform-usbip-vudc docs: ABI: testing: make the files compatible with ReST output 2020-10-30 13:07:01 +01:00
sysfs-platform-wilco-ec docs: ABI: fix syntax to be parsed using ReST notation 2020-10-30 13:12:39 +01:00
sysfs-platform_profile ACPI: platform-profile: call sysfs_notify() from platform_profile_store() 2021-08-16 18:32:02 +02:00
sysfs-power platform/x86: Update Mario Limonciello's email address in the docs 2021-08-13 13:18:15 +02:00
sysfs-pps
sysfs-profiling docs: ABI: cleanup several ABI documents 2020-10-30 13:14:29 +01:00
sysfs-ptp ABI: sysfs-ptp: use wildcards on What definitions 2021-09-21 18:31:17 +02:00
sysfs-secvar powerpc: expose secure variables to userspace via sysfs 2019-11-13 00:33:22 +11:00
sysfs-timecard docs: ABI: Document new timecard sysfs nodes. 2022-03-11 11:54:45 +00:00
sysfs-tty ABI: sysfs-tty: better document module name parameter 2021-09-21 18:31:15 +02:00
sysfs-uevent docs: ABI: sysfs-uevent: make it compatible with ReST output 2020-10-30 13:07:02 +01:00
sysfs-wusb_cbaf docs: ABI: cleanup several ABI documents 2020-10-30 13:14:29 +01:00
usb-charger-uevent docs: ABI: cleanup several ABI documents 2020-10-30 13:14:29 +01:00
usb-uevent docs: ABI: cleanup several ABI documents 2020-10-30 13:14:29 +01:00