linux-stable/Documentation/ABI/testing
Linus Torvalds 9187210eee Networking changes for 6.9.
Core & protocols
 ----------------
 
  - Large effort by Eric to lower rtnl_lock pressure and remove locks:
 
    - Make commonly used parts of rtnetlink (address, route dumps etc.)
      lockless, protected by RCU instead of rtnl_lock.
 
    - Add a netns exit callback which already holds rtnl_lock,
      allowing netns exit to take rtnl_lock once in the core
      instead of once for each driver / callback.
 
    - Remove locks / serialization in the socket diag interface.
 
    - Remove 6 calls to synchronize_rcu() while holding rtnl_lock.
 
    - Remove the dev_base_lock, depend on RCU where necessary.
 
  - Support busy polling on a per-epoll context basis. Poll length
    and budget parameters can be set independently of system defaults.
 
  - Introduce struct net_hotdata, to make sure read-mostly global config
    variables fit in as few cache lines as possible.
 
  - Add optional per-nexthop statistics to ease monitoring / debug
    of ECMP imbalance problems.
 
  - Support TCP_NOTSENT_LOWAT in MPTCP.
 
  - Ensure that IPv6 temporary addresses' preferred lifetimes are long
    enough, compared to other configured lifetimes, and at least 2 sec.
 
  - Support forwarding of ICMP Error messages in IPSec, per RFC 4301.
 
  - Add support for the independent control state machine for bonding
    per IEEE 802.1AX-2008 5.4.15 in addition to the existing coupled
    control state machine.
 
  - Add "network ID" to MCTP socket APIs to support hosts with multiple
    disjoint MCTP networks.
 
  - Re-use the mono_delivery_time skbuff bit for packets which user
    space wants to be sent at a specified time. Maintain the timing
    information while traversing veth links, bridge etc.
 
  - Take advantage of MSG_SPLICE_PAGES for RxRPC DATA and ACK packets.
 
  - Simplify many places iterating over netdevs by using an xarray
    instead of a hash table walk (hash table remains in place, for
    use on fastpaths).
 
  - Speed up scanning for expired routes by keeping a dedicated list.
 
  - Speed up "generic" XDP by trying harder to avoid large allocations.
 
  - Support attaching arbitrary metadata to netconsole messages.
 
 Things we sprinkled into general kernel code
 --------------------------------------------
 
  - Enforce VM_IOREMAP flag and range in ioremap_page_range and introduce
    VM_SPARSE kind and vm_area_[un]map_pages (used by bpf_arena).
 
  - Rework selftest harness to enable the use of the full range of
    ksft exit code (pass, fail, skip, xfail, xpass).
 
 Netfilter
 ---------
 
  - Allow userspace to define a table that is exclusively owned by a daemon
    (via netlink socket aliveness) without auto-removing this table when
    the userspace program exits. Such table gets marked as orphaned and
    a restarting management daemon can re-attach/regain ownership.
 
  - Speed up element insertions to nftables' concatenated-ranges set type.
    Compact a few related data structures.
 
 BPF
 ---
 
  - Add BPF token support for delegating a subset of BPF subsystem
    functionality from privileged system-wide daemons such as systemd
    through special mount options for userns-bound BPF fs to a trusted
    & unprivileged application.
 
  - Introduce bpf_arena which is sparse shared memory region between BPF
    program and user space where structures inside the arena can have
    pointers to other areas of the arena, and pointers work seamlessly
    for both user-space programs and BPF programs.
 
  - Introduce may_goto instruction that is a contract between the verifier
    and the program. The verifier allows the program to loop assuming it's
    behaving well, but reserves the right to terminate it.
 
  - Extend the BPF verifier to enable static subprog calls in spin lock
    critical sections.
 
  - Support registration of struct_ops types from modules which helps
    projects like fuse-bpf that seeks to implement a new struct_ops type.
 
  - Add support for retrieval of cookies for perf/kprobe multi links.
 
  - Support arbitrary TCP SYN cookie generation / validation in the TC
    layer with BPF to allow creating SYN flood handling in BPF firewalls.
 
  - Add code generation to inline the bpf_kptr_xchg() helper which
    improves performance when stashing/popping the allocated BPF objects.
 
 Wireless
 --------
 
  - Add SPP (signaling and payload protected) AMSDU support.
 
  - Support wider bandwidth OFDMA, as required for EHT operation.
 
 Driver API
 ----------
 
  - Major overhaul of the Energy Efficient Ethernet internals to support
    new link modes (2.5GE, 5GE), share more code between drivers
    (especially those using phylib), and encourage more uniform behavior.
    Convert and clean up drivers.
 
  - Define an API for querying per netdev queue statistics from drivers.
 
  - IPSec: account in global stats for fully offloaded sessions.
 
  - Create a concept of Ethernet PHY Packages at the Device Tree level,
    to allow parameterizing the existing PHY package code.
 
  - Enable Rx hashing (RSS) on GTP protocol fields.
 
 Misc
 ----
 
  - Improvements and refactoring all over networking selftests.
 
  - Create uniform module aliases for TC classifiers, actions,
    and packet schedulers to simplify creating modprobe policies.
 
  - Address all missing MODULE_DESCRIPTION() warnings in networking.
 
  - Extend the Netlink descriptions in YAML to cover message encapsulation
    or "Netlink polymorphism", where interpretation of nested attributes
    depends on link type, classifier type or some other "class type".
 
 Drivers
 -------
 
  - Ethernet high-speed NICs:
    - Add a new driver for Marvell's Octeon PCI Endpoint NIC VF.
    - Intel (100G, ice, idpf):
      - support E825-C devices
    - nVidia/Mellanox:
      - support devices with one port and multiple PCIe links
    - Broadcom (bnxt):
      - support n-tuple filters
      - support configuring the RSS key
    - Wangxun (ngbe/txgbe):
      - implement irq_domain for TXGBE's sub-interrupts
    - Pensando/AMD:
      - support XDP
      - optimize queue submission and wakeup handling (+17% bps)
      - optimize struct layout, saving 28% of memory on queues
 
  - Ethernet NICs embedded and virtual:
    - Google cloud vNIC:
      - refactor driver to perform memory allocations for new queue
        config before stopping and freeing the old queue memory
    - Synopsys (stmmac):
      - obey queueMaxSDU and implement counters required by 802.1Qbv
    - Renesas (ravb):
      - support packet checksum offload
      - suspend to RAM and runtime PM support
 
  - Ethernet switches:
    - nVidia/Mellanox:
      - support for nexthop group statistics
    - Microchip:
      - ksz8: implement PHY loopback
      - add support for KSZ8567, a 7-port 10/100Mbps switch
 
  - PTP:
    - New driver for RENESAS FemtoClock3 Wireless clock generator.
    - Support OCP PTP cards designed and built by Adva.
 
  - CAN:
    - Support recvmsg() flags for own, local and remote traffic
      on CAN BCM sockets.
    - Support for esd GmbH PCIe/402 CAN device family.
    - m_can:
      - Rx/Tx submission coalescing
      - wake on frame Rx
 
  - WiFi:
    - Intel (iwlwifi):
      - enable signaling and payload protected A-MSDUs
      - support wider-bandwidth OFDMA
      - support for new devices
      - bump FW API to 89 for AX devices; 90 for BZ/SC devices
    - MediaTek (mt76):
      - mt7915: newer ADIE version support
      - mt7925: radio temperature sensor support
    - Qualcomm (ath11k):
      - support 6 GHz station power modes: Low Power Indoor (LPI),
        Standard Power) SP and Very Low Power (VLP)
      - QCA6390 & WCN6855: support 2 concurrent station interfaces
      - QCA2066 support
    - Qualcomm (ath12k):
      - refactoring in preparation for Multi-Link Operation (MLO) support
      - 1024 Block Ack window size support
      - firmware-2.bin support
      - support having multiple identical PCI devices (firmware needs to
        have ATH12K_FW_FEATURE_MULTI_QRTR_ID)
      - QCN9274: support split-PHY devices
      - WCN7850: enable Power Save Mode in station mode
      - WCN7850: P2P support
    - RealTek:
      - rtw88: support for more rtw8811cu and rtw8821cu devices
      - rtw89: support SCAN_RANDOM_SN and SET_SCAN_DWELL
      - rtlwifi: speed up USB firmware initialization
      - rtwl8xxxu:
        - RTL8188F: concurrent interface support
        - Channel Switch Announcement (CSA) support in AP mode
    - Broadcom (brcmfmac):
      - per-vendor feature support
      - per-vendor SAE password setup
      - DMI nvram filename quirk for ACEPC W5 Pro
 
 Signed-off-by: Jakub Kicinski <kuba@kernel.org>
 -----BEGIN PGP SIGNATURE-----
 
 iQIzBAABCAAdFiEE6jPA+I1ugmIBA4hXMUZtbf5SIrsFAmXv0mgACgkQMUZtbf5S
 IrtgMxAAuRd+WJW++SENr4KxIWhYO1q6Xcxnai43wrNkan9swD24icG8TYALt4f3
 yoT6idQvWReAb5JNlh9rUQz8R7E0nJXlvEFn5MtJwcthx2C6wFo/XkJlddlRrT+j
 c2xGILwLjRhW65LaC0MZ2ECbEERkFz8xcGfK2SWzUgh6KYvPjcRfKFxugpM7xOQK
 P/Wnqhs4fVRS/Mj/bCcXcO+yhwC121Q3qVeQVjGS0AzEC65hAW87a/kc2BfgcegD
 EyI9R7mf6criQwX+0awubjfoIdr4oW/8oDVNvUDczkJkbaEVaLMQk9P5x/0XnnVS
 UHUchWXyI80Q8Rj12uN1/I0h3WtwNQnCRBuLSmtm6GLfCAwbLvp2nGWDnaXiqryW
 DVKUIHGvqPKjkOOMOVfSvfB3LvkS3xsFVVYiQBQCn0YSs/gtu4CoF2Nty9CiLPbK
 tTuxUnLdPDZDxU//l0VArZmP8p2JM7XQGJ+JH8GFH4SBTyBR23e0iyPSoyaxjnYn
 RReDnHMVsrS1i7GPhbqDJWn+uqMSs7N149i0XmmyeqwQHUVSJN3J2BApP2nCaDfy
 H2lTuYly5FfEezt61NvCE4qr/VsWeEjm1fYlFQ9dFn4pGn+HghyCpw+xD1ZN56DN
 lujemau5B3kk1UTtAT4ypPqvuqjkRFqpNV2LzsJSk/Js+hApw8Y=
 =oY52
 -----END PGP SIGNATURE-----

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

Pull networking updates from Jakub Kicinski:
 "Core & protocols:

   - Large effort by Eric to lower rtnl_lock pressure and remove locks:

      - Make commonly used parts of rtnetlink (address, route dumps
        etc) lockless, protected by RCU instead of rtnl_lock.

      - Add a netns exit callback which already holds rtnl_lock,
        allowing netns exit to take rtnl_lock once in the core instead
        of once for each driver / callback.

      - Remove locks / serialization in the socket diag interface.

      - Remove 6 calls to synchronize_rcu() while holding rtnl_lock.

      - Remove the dev_base_lock, depend on RCU where necessary.

   - Support busy polling on a per-epoll context basis. Poll length and
     budget parameters can be set independently of system defaults.

   - Introduce struct net_hotdata, to make sure read-mostly global
     config variables fit in as few cache lines as possible.

   - Add optional per-nexthop statistics to ease monitoring / debug of
     ECMP imbalance problems.

   - Support TCP_NOTSENT_LOWAT in MPTCP.

   - Ensure that IPv6 temporary addresses' preferred lifetimes are long
     enough, compared to other configured lifetimes, and at least 2 sec.

   - Support forwarding of ICMP Error messages in IPSec, per RFC 4301.

   - Add support for the independent control state machine for bonding
     per IEEE 802.1AX-2008 5.4.15 in addition to the existing coupled
     control state machine.

   - Add "network ID" to MCTP socket APIs to support hosts with multiple
     disjoint MCTP networks.

   - Re-use the mono_delivery_time skbuff bit for packets which user
     space wants to be sent at a specified time. Maintain the timing
     information while traversing veth links, bridge etc.

   - Take advantage of MSG_SPLICE_PAGES for RxRPC DATA and ACK packets.

   - Simplify many places iterating over netdevs by using an xarray
     instead of a hash table walk (hash table remains in place, for use
     on fastpaths).

   - Speed up scanning for expired routes by keeping a dedicated list.

   - Speed up "generic" XDP by trying harder to avoid large allocations.

   - Support attaching arbitrary metadata to netconsole messages.

  Things we sprinkled into general kernel code:

   - Enforce VM_IOREMAP flag and range in ioremap_page_range and
     introduce VM_SPARSE kind and vm_area_[un]map_pages (used by
     bpf_arena).

   - Rework selftest harness to enable the use of the full range of ksft
     exit code (pass, fail, skip, xfail, xpass).

  Netfilter:

   - Allow userspace to define a table that is exclusively owned by a
     daemon (via netlink socket aliveness) without auto-removing this
     table when the userspace program exits. Such table gets marked as
     orphaned and a restarting management daemon can re-attach/regain
     ownership.

   - Speed up element insertions to nftables' concatenated-ranges set
     type. Compact a few related data structures.

  BPF:

   - Add BPF token support for delegating a subset of BPF subsystem
     functionality from privileged system-wide daemons such as systemd
     through special mount options for userns-bound BPF fs to a trusted
     & unprivileged application.

   - Introduce bpf_arena which is sparse shared memory region between
     BPF program and user space where structures inside the arena can
     have pointers to other areas of the arena, and pointers work
     seamlessly for both user-space programs and BPF programs.

   - Introduce may_goto instruction that is a contract between the
     verifier and the program. The verifier allows the program to loop
     assuming it's behaving well, but reserves the right to terminate
     it.

   - Extend the BPF verifier to enable static subprog calls in spin lock
     critical sections.

   - Support registration of struct_ops types from modules which helps
     projects like fuse-bpf that seeks to implement a new struct_ops
     type.

   - Add support for retrieval of cookies for perf/kprobe multi links.

   - Support arbitrary TCP SYN cookie generation / validation in the TC
     layer with BPF to allow creating SYN flood handling in BPF
     firewalls.

   - Add code generation to inline the bpf_kptr_xchg() helper which
     improves performance when stashing/popping the allocated BPF
     objects.

  Wireless:

   - Add SPP (signaling and payload protected) AMSDU support.

   - Support wider bandwidth OFDMA, as required for EHT operation.

  Driver API:

   - Major overhaul of the Energy Efficient Ethernet internals to
     support new link modes (2.5GE, 5GE), share more code between
     drivers (especially those using phylib), and encourage more
     uniform behavior. Convert and clean up drivers.

   - Define an API for querying per netdev queue statistics from
     drivers.

   - IPSec: account in global stats for fully offloaded sessions.

   - Create a concept of Ethernet PHY Packages at the Device Tree level,
     to allow parameterizing the existing PHY package code.

   - Enable Rx hashing (RSS) on GTP protocol fields.

  Misc:

   - Improvements and refactoring all over networking selftests.

   - Create uniform module aliases for TC classifiers, actions, and
     packet schedulers to simplify creating modprobe policies.

   - Address all missing MODULE_DESCRIPTION() warnings in networking.

   - Extend the Netlink descriptions in YAML to cover message
     encapsulation or "Netlink polymorphism", where interpretation of
     nested attributes depends on link type, classifier type or some
     other "class type".

  Drivers:

   - Ethernet high-speed NICs:
      - Add a new driver for Marvell's Octeon PCI Endpoint NIC VF.
      - Intel (100G, ice, idpf):
         - support E825-C devices
      - nVidia/Mellanox:
         - support devices with one port and multiple PCIe links
      - Broadcom (bnxt):
         - support n-tuple filters
         - support configuring the RSS key
      - Wangxun (ngbe/txgbe):
         - implement irq_domain for TXGBE's sub-interrupts
      - Pensando/AMD:
         - support XDP
         - optimize queue submission and wakeup handling (+17% bps)
         - optimize struct layout, saving 28% of memory on queues

   - Ethernet NICs embedded and virtual:
      - Google cloud vNIC:
         - refactor driver to perform memory allocations for new queue
           config before stopping and freeing the old queue memory
      - Synopsys (stmmac):
         - obey queueMaxSDU and implement counters required by 802.1Qbv
      - Renesas (ravb):
         - support packet checksum offload
         - suspend to RAM and runtime PM support

   - Ethernet switches:
      - nVidia/Mellanox:
         - support for nexthop group statistics
      - Microchip:
         - ksz8: implement PHY loopback
         - add support for KSZ8567, a 7-port 10/100Mbps switch

   - PTP:
      - New driver for RENESAS FemtoClock3 Wireless clock generator.
      - Support OCP PTP cards designed and built by Adva.

   - CAN:
      - Support recvmsg() flags for own, local and remote traffic on CAN
        BCM sockets.
      - Support for esd GmbH PCIe/402 CAN device family.
      - m_can:
         - Rx/Tx submission coalescing
         - wake on frame Rx

   - WiFi:
      - Intel (iwlwifi):
         - enable signaling and payload protected A-MSDUs
         - support wider-bandwidth OFDMA
         - support for new devices
         - bump FW API to 89 for AX devices; 90 for BZ/SC devices
      - MediaTek (mt76):
         - mt7915: newer ADIE version support
         - mt7925: radio temperature sensor support
      - Qualcomm (ath11k):
         - support 6 GHz station power modes: Low Power Indoor (LPI),
           Standard Power) SP and Very Low Power (VLP)
         - QCA6390 & WCN6855: support 2 concurrent station interfaces
         - QCA2066 support
      - Qualcomm (ath12k):
         - refactoring in preparation for Multi-Link Operation (MLO)
           support
         - 1024 Block Ack window size support
         - firmware-2.bin support
         - support having multiple identical PCI devices (firmware needs
           to have ATH12K_FW_FEATURE_MULTI_QRTR_ID)
         - QCN9274: support split-PHY devices
         - WCN7850: enable Power Save Mode in station mode
         - WCN7850: P2P support
      - RealTek:
         - rtw88: support for more rtw8811cu and rtw8821cu devices
         - rtw89: support SCAN_RANDOM_SN and SET_SCAN_DWELL
         - rtlwifi: speed up USB firmware initialization
         - rtwl8xxxu:
             - RTL8188F: concurrent interface support
             - Channel Switch Announcement (CSA) support in AP mode
      - Broadcom (brcmfmac):
         - per-vendor feature support
         - per-vendor SAE password setup
         - DMI nvram filename quirk for ACEPC W5 Pro"

* tag 'net-next-6.9' of git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next: (2255 commits)
  nexthop: Fix splat with CONFIG_DEBUG_PREEMPT=y
  nexthop: Fix out-of-bounds access during attribute validation
  nexthop: Only parse NHA_OP_FLAGS for dump messages that require it
  nexthop: Only parse NHA_OP_FLAGS for get messages that require it
  bpf: move sleepable flag from bpf_prog_aux to bpf_prog
  bpf: hardcode BPF_PROG_PACK_SIZE to 2MB * num_possible_nodes()
  selftests/bpf: Add kprobe multi triggering benchmarks
  ptp: Move from simple ida to xarray
  vxlan: Remove generic .ndo_get_stats64
  vxlan: Do not alloc tstats manually
  devlink: Add comments to use netlink gen tool
  nfp: flower: handle acti_netdevs allocation failure
  net/packet: Add getsockopt support for PACKET_COPY_THRESH
  net/netlink: Add getsockopt support for NETLINK_LISTEN_ALL_NSID
  selftests/bpf: Add bpf_arena_htab test.
  selftests/bpf: Add bpf_arena_list test.
  selftests/bpf: Add unit tests for bpf_arena_alloc/free_pages
  bpf: Add helper macro bpf_addr_space_cast()
  libbpf: Recognize __arena global variables.
  bpftool: Recognize arena map type
  ...
2024-03-12 17:44:08 -07:00
..
configfs-acpi
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
configfs-stp-policy
configfs-stp-policy-p_sys-t
configfs-tsm configfs-tsm: Introduce a shared ABI for attestation reports 2023-10-19 18:11:38 -07:00
configfs-usb-gadget usb: gadget: add WebUSB landing page support 2023-01-19 14:14:44 +01:00
configfs-usb-gadget-acm
configfs-usb-gadget-ecm
configfs-usb-gadget-eem
configfs-usb-gadget-ffs
configfs-usb-gadget-hid
configfs-usb-gadget-loopback
configfs-usb-gadget-mass-storage USB: docs: fixed table margin in configfs-usb-gadget-mass-storage 2022-07-23 13:03:48 +02:00
configfs-usb-gadget-midi
configfs-usb-gadget-midi2 usb: gadget: midi2: More flexible MIDI 1.0 configuration 2023-07-26 06:38:14 +02:00
configfs-usb-gadget-ncm
configfs-usb-gadget-obex
configfs-usb-gadget-phonet
configfs-usb-gadget-printer
configfs-usb-gadget-rndis
configfs-usb-gadget-serial
configfs-usb-gadget-sourcesink
configfs-usb-gadget-subset
configfs-usb-gadget-tcm
configfs-usb-gadget-uac1 usb: gadget: f_uac1: allow changing interface name via configfs 2022-01-26 14:10:40 +01:00
configfs-usb-gadget-uac1_legacy
configfs-usb-gadget-uac2 usb: gadget: f_uac2: allow changing terminal types through configfs 2023-10-05 09:35:43 +02:00
configfs-usb-gadget-uvc usb: gadget: uvc: Make bmControls attr read/write 2023-03-29 08:51:26 +02:00
debugfs-cec-error-inj
debugfs-cros-ec platform/chrome: cros_ec: Expose suspend_timeout_ms in debugfs 2022-08-24 02:37:07 +00:00
debugfs-cxl cxl/mem: Add debugfs attributes for poison inject and clear 2023-04-23 12:08:39 -07:00
debugfs-dell-wmi-ddv platform/x86: dell-ddv: Update ABI documentation 2023-05-09 11:54:42 +02:00
debugfs-driver-dcc soc: qcom: dcc: rewrite description of dcc sysfs files 2023-01-06 17:51:42 -06:00
debugfs-driver-genwqe docs: typo fixes in Documentation/ABI/ 2021-05-13 09:13:25 -06:00
debugfs-driver-habanalabs accel/habanalabs: update debugfs-driver-habanalabs with the device-name directory 2023-12-19 11:09:44 +02:00
debugfs-driver-qat crypto: qat - add cnv_errors debugfs file 2023-10-13 18:31:07 +08:00
debugfs-driver-qat_telemetry crypto: qat - add support for ring pair level telemetry 2023-12-29 11:25:56 +08:00
debugfs-ec
debugfs-hisi-hpre crypto: hisilicon/qm - simplify the status of qm 2023-12-01 18:03:26 +08:00
debugfs-hisi-sec crypto: hisilicon/qm - simplify the status of qm 2023-12-01 18:03:26 +08:00
debugfs-hisi-zip crypto: hisilicon/qm - simplify the status of qm 2023-12-01 18:03:26 +08:00
debugfs-hyperv
debugfs-ideapad
debugfs-moxtet
debugfs-olpc
debugfs-pfo-nx-crypto
debugfs-pktcdvd Revert "pktcdvd: remove driver." 2023-01-04 14:44:13 -07:00
debugfs-scmi firmware: arm_scmi: Add debugfs ABI documentation for common entries 2023-01-20 11:41:11 +00:00
debugfs-scmi-raw firmware: arm_scmi: Clarify raw per-channel ABI documentation 2023-01-20 14:11:38 +00:00
debugfs-tpmi doc: TPMI: Add debugfs documentation 2023-07-14 15:24:57 +02:00
debugfs-turris-mox-rwtm
debugfs-vfio Documentation: add debugfs description for vfio 2023-12-04 14:29:39 -07:00
debugfs-wilco-ec
dell-smbios-wmi platform/x86: Update Mario Limonciello's email address in the docs 2021-08-13 13:18:15 +02:00
dev-kmsg
devlink-resource-mlxsw
evm ABI: evm: place a second what at the next line 2021-09-28 12:45:42 +02:00
gpio-cdev
ima_policy integrity: Always reference the blacklist keyring with appraisal 2023-08-01 08:17:25 -04:00
ppc-memtrace
procfs-attr-current
procfs-attr-exec
procfs-attr-prev
procfs-diskstats Documentation/ABI: Fix typos 2023-08-18 11:28:40 -06:00
procfs-smaps_rollup mm/smaps: add Pss_Dirty 2022-07-03 18:08:49 -07:00
pstore ABI: pstore: Fix What field 2021-09-21 18:31:16 +02:00
rtc-cdev
securityfs-secrets-coco virt: Add efi_secret module to expose confidential computing secrets 2022-04-13 19:11:20 +02:00
sysfs-amd-pmc platform/x86/amd: pmc: Add sysfs files for SMU 2022-09-19 13:48:38 +02:00
sysfs-amd-pmf Documentation/ABI/testing/sysfs-amd-pmf: Add ABI doc for AMD PMF 2022-09-22 17:42:53 +02:00
sysfs-ata ata: libata-transport: fix {dma|pio|xfer}_mode sysfs files 2022-06-09 09:25:25 +09:00
sysfs-block-aoe
sysfs-block-bcache
sysfs-block-device scsi: core: Allow enabling and disabling command duration limits 2023-05-22 17:05:19 -04:00
sysfs-block-dm
sysfs-block-loop
sysfs-block-rnbd
sysfs-block-rssd
sysfs-block-zram Docs/ABI/zram: document zram recompress sysfs knobs 2022-11-30 15:58:53 -08:00
sysfs-bus-acpi
sysfs-bus-amba
sysfs-bus-bcma Documentation/ABI: correct possessive "its" typos 2022-09-27 13:21:43 -06:00
sysfs-bus-cdx cdx: create sysfs bin files for cdx resources 2024-01-04 17:01:13 +01:00
sysfs-bus-coreboot Documentation/ABI: Fix typos 2023-08-18 11:28:40 -06:00
sysfs-bus-coresight-devices-cti
sysfs-bus-coresight-devices-etb10
sysfs-bus-coresight-devices-etm3x Documentation/ABI: Fix typos 2023-08-18 11:28:40 -06:00
sysfs-bus-coresight-devices-etm4x Documentation/ABI: Fix typos 2023-08-18 11:28:40 -06:00
sysfs-bus-coresight-devices-funnel
sysfs-bus-coresight-devices-stm
sysfs-bus-coresight-devices-tmc coresight: tmc: Make etr buffer mode user configurable from sysfs 2023-11-16 11:35:12 +00:00
sysfs-bus-coresight-devices-tpdm Documentation: ABI: coresight-tpdm: Fix Bit[3] description indentation 2023-11-16 11:35:40 +00:00
sysfs-bus-coresight-devices-trbe
sysfs-bus-coresight-devices-ultra_smb Documentation: Add document for UltraSoc SMB driver 2023-01-16 10:16:15 +00:00
sysfs-bus-counter Documentation: ABI: sysfs-bus-counter: Fix indentation 2023-08-16 09:41:29 -04:00
sysfs-bus-css docs/ABI: use linux-s390 list as the main contact 2023-01-13 14:15:07 +01:00
sysfs-bus-cxl cxl: Export sysfs attributes for memory device QoS class 2023-12-22 15:46:02 -08:00
sysfs-bus-dfl
sysfs-bus-dfl-devices-emif
sysfs-bus-dfl-devices-n3000-nios
sysfs-bus-event_source-devices-caps perf: Add branch stack counters 2023-10-27 15:05:08 +02:00
sysfs-bus-event_source-devices-dfl_fme
sysfs-bus-event_source-devices-dsa
sysfs-bus-event_source-devices-events Documentation/ABI: Fix typos 2023-08-18 11:28:40 -06:00
sysfs-bus-event_source-devices-format
sysfs-bus-event_source-devices-hv_24x7
sysfs-bus-event_source-devices-hv_gpci docs: ABI: sysfs-bus-event_source-devices-hv_gpci: Document affinity_domain_via_partition sysfs interface file 2023-08-16 23:54:49 +10:00
sysfs-bus-event_source-devices-iommu iommu/vt-d: Support cpumask for IOMMU perfmon 2023-02-03 11:06:08 +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 Documentation/ABI: correct possessive "its" typos 2022-09-27 13:21:43 -06:00
sysfs-bus-fsi docs: typo fixes in Documentation/ABI/ 2021-05-13 09:13:25 -06:00
sysfs-bus-fsi-devices-sbefifo Documentation/ABI: Fix typos 2023-08-18 11:28:40 -06:00
sysfs-bus-fsl-mc
sysfs-bus-hsi
sysfs-bus-i2c-devices-bq32k
sysfs-bus-i2c-devices-fsa9480 Documentation/ABI: Fix typos 2023-08-18 11:28:40 -06:00
sysfs-bus-i2c-devices-hm6352
sysfs-bus-i2c-devices-lm3533
sysfs-bus-i2c-devices-pca954x
sysfs-bus-i3c i3c: document hotjoin sysfs entry 2024-01-15 00:21:14 +01:00
sysfs-bus-iio iio: ABI: document temperature and humidity peak/trough raw attributes 2023-12-11 19:37:10 +00:00
sysfs-bus-iio-accel-adxl372
sysfs-bus-iio-accel-bmc150
sysfs-bus-iio-adc-ad4130 Documentation: ad4130: format list of in_voltage-voltage_filter_mode_available modes 2022-11-23 19:52:55 +00:00
sysfs-bus-iio-adc-ad7192
sysfs-bus-iio-adc-ad7280a iio:adc:ad7280a: Document ABI for cell balance switches 2022-02-21 19:33:05 +00:00
sysfs-bus-iio-adc-envelope-detector
sysfs-bus-iio-adc-hi8435
sysfs-bus-iio-adc-max9611
sysfs-bus-iio-adc-max11410 Documentation: ABI: testing: add max11410 doc 2022-11-23 19:43:59 +00:00
sysfs-bus-iio-adc-mcp3564 iio: adc: adding support for MCP3564 ADC 2023-09-12 10:42:04 +01:00
sysfs-bus-iio-adc-mt6360
sysfs-bus-iio-adc-stm32
sysfs-bus-iio-bno055 iio: document bno055 private sysfs attributes 2022-09-21 18:42:56 +01:00
sysfs-bus-iio-cdc-ad7746 iio: cdc: ad7746: Add device specific ABI documentation. 2022-08-15 22:30:01 +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
sysfs-bus-iio-dac-ad5766
sysfs-bus-iio-dac-dpot-dac
sysfs-bus-iio-dac-ltc2688 iio: ABI: add ABI file for the LTC2688 DAC 2022-03-01 22:13:53 +00:00
sysfs-bus-iio-dfsdm-adc-stm32
sysfs-bus-iio-distance-srf08
sysfs-bus-iio-dma-buffer
sysfs-bus-iio-filter-admv8818 Documentation: ABI: testing: admv8818: add bypass 2023-08-08 09:51:06 +01:00
sysfs-bus-iio-frequency-ad9523
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-frequency-admv1014 Documentation: ABI: testing: admv1014: add ABI docs 2022-02-21 19:33:06 +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
sysfs-bus-iio-impedance-analyzer-ad5933
sysfs-bus-iio-ina2xx-adc
sysfs-bus-iio-isl29501
sysfs-bus-iio-light-isl29018
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
sysfs-bus-iio-light-tsl2583
sysfs-bus-iio-light-tsl2772
sysfs-bus-iio-magnetometer-hmc5843
sysfs-bus-iio-meas-spec
sysfs-bus-iio-mpu6050
sysfs-bus-iio-potentiometer-mcp4531
sysfs-bus-iio-proximity Documentation/ABI: correct possessive "its" typos 2022-09-27 13:21:43 -06:00
sysfs-bus-iio-proximity-as3935
sysfs-bus-iio-resolver-ad2s1210 iio: resolver: ad2s1210: move out of staging 2023-10-12 09:20:50 +01:00
sysfs-bus-iio-sps30
sysfs-bus-iio-sx9310
sysfs-bus-iio-sx9324 iio: proximity: sx9324: add empty line in front of bullet list 2022-07-18 18:55:59 +01:00
sysfs-bus-iio-thermocouple iio: ABI: temperature: Unify documentation for thermocouple fault detection. 2022-07-18 18:38:27 +01:00
sysfs-bus-iio-timer-stm32 iio: ABI: stm32-timer-trigger: Fuse unusual ABI into main doc. 2022-07-18 18:38:34 +01:00
sysfs-bus-iio-trigger-sysfs
sysfs-bus-iio-vf610 iio: adc: vf610: fix conversion mode sysfs node name 2022-06-19 17:22:49 +01:00
sysfs-bus-intel_th-devices-gth
sysfs-bus-intel_th-devices-msc
sysfs-bus-intel_th-devices-pti
sysfs-bus-intel_th-output-devices
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
sysfs-bus-mmc
sysfs-bus-most
sysfs-bus-moxtet-devices
sysfs-bus-nfit Documentation/ABI: Fix typos 2023-08-18 11:28:40 -06:00
sysfs-bus-nvdimm docs: ABI: fix an RST error in sysfs-bus-nvdimm 2023-07-21 14:44:47 -06:00
sysfs-bus-optee-devices tee: optee: Fix supplicant based device enumeration 2023-11-03 09:27:20 +01:00
sysfs-bus-papr-pmem docs: move powerpc under arch 2023-10-10 13:35:55 -06:00
sysfs-bus-pci ABI: sysfs-bus-pci: add documentation for p2pmem allocate 2022-11-09 11:29:21 -07:00
sysfs-bus-pci-devices-aer_stats
sysfs-bus-pci-devices-catpt
sysfs-bus-pci-devices-cciss
sysfs-bus-pci-devices-pvpanic
sysfs-bus-pci-drivers-ehci_hcd
sysfs-bus-pci-drivers-janz-cmodio
sysfs-bus-pci-drivers-xhci_hcd xhci: dbc: Provide sysfs option to configure dbc descriptors 2023-03-23 17:25:22 +01:00
sysfs-bus-peci peci: Add sysfs interface for PECI bus 2022-02-09 08:04:44 +01:00
sysfs-bus-platform ABI: sysfs-bus-platform: add modalias description 2021-09-28 12:48:16 +02:00
sysfs-bus-platform-devices-ampere-smpro misc: smpro-errmon: Add dimm training failure syndrome 2023-03-10 09:47:16 +01: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-platform-onboard-usb-hub usb: misc: Add onboard_usb_hub driver 2022-07-08 14:53:50 +02:00
sysfs-bus-rapidio ABI: sysfs-bus-rapidio: use wildcards on What definitions 2021-09-21 18:31:15 +02:00
sysfs-bus-rbd
sysfs-bus-rpmsg
sysfs-bus-siox
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: sysfs: hide the flash name if not set 2023-12-19 05:08:23 +02:00
sysfs-bus-surface_aggregator-tabletsw platform/surface: Add KIP/POS tablet-mode switch driver 2022-07-02 11:11:21 +02:00
sysfs-bus-thunderbolt Documentation/ABI: thunderbolt: Replace 01.org in contact 2023-08-08 08:13:22 +03:00
sysfs-bus-typec
sysfs-bus-usb usb: typec: Link enumerated USB devices with Type-C partner 2023-10-16 20:02:36 +02:00
sysfs-bus-usb-devices-usbsevseg
sysfs-bus-usb-lvstest
sysfs-bus-vdpa Documentation: update mailing list addresses 2024-02-21 13:44:21 -07:00
sysfs-bus-vfio-mdev
sysfs-bus-vmbus
sysfs-c2port
sysfs-cfq-target-latency
sysfs-class Documentation/ABI: Fix typos 2023-08-18 11:28:40 -06:00
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
sysfs-class-backlight-lm3639
sysfs-class-bdi mm: document /sys/class/bdi/<bdi>/min_ratio_fine knob 2022-11-30 15:59:06 -08:00
sysfs-class-bsr
sysfs-class-chromeos
sysfs-class-chromeos-driver-cros-ec-lightbar
sysfs-class-chromeos-driver-cros-ec-vbc
sysfs-class-cxl Documentation/ABI: Fix typos 2023-08-18 11:28:40 -06:00
sysfs-class-devfreq PM / devfreq: Fix buffer overflow in trans_stat_show 2023-11-13 10:48:49 +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
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
sysfs-class-fc_remote_ports
sysfs-class-firmware firmware_loader: Update contact emails for ABI docs 2023-10-05 11:20:54 +02:00
sysfs-class-firmware-attributes platform/x86: think-lmi: Add bulk save feature 2023-09-21 18:29:29 +02:00
sysfs-class-fpga-bridge
sysfs-class-fpga-manager
sysfs-class-fpga-region
sysfs-class-gnss ABI: sysfs-class-gnss: use wildcards on What definitions 2021-09-21 18:31:16 +02:00
sysfs-class-hwmon ABI: sysfs-class-hwmon: document emergency/max/min temperature alarms 2023-12-11 06:21:00 -08:00
sysfs-class-intel_pmt
sysfs-class-iommu
sysfs-class-iommu-amd-iommu
sysfs-class-iommu-intel-iommu
sysfs-class-lcd
sysfs-class-led leds: class: Don't expose color sysfs entry 2023-11-22 11:46:03 +00:00
sysfs-class-led-driver-aw200xx leds: Add AW20xx driver 2023-06-01 19:46:35 +01:00
sysfs-class-led-driver-lm3533
sysfs-class-led-driver-turris-omnia leds: turris-omnia: Add support for enabling/disabling HW gamma correction 2023-11-01 11:28:48 +00:00
sysfs-class-led-flash
sysfs-class-led-multicolor
sysfs-class-led-trigger-netdev docs: ABI: sysfs-class-led-trigger-netdev: Add new modes and entry 2023-12-13 11:24:55 +00: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: ledtrig-tty: Add additional line state evaluation 2023-12-13 11:28:51 +00:00
sysfs-class-led-trigger-usbport
sysfs-class-leds-gt683r
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 Documentation/ABI: Fix typos 2023-08-18 11:28:40 -06:00
sysfs-class-mux ABI: sysfs-class-mux: use wildcards on What definitions 2021-09-21 18:31:16 +02:00
sysfs-class-net Documentation/ABI: Fix typos 2023-08-18 11:28:40 -06:00
sysfs-class-net-cdc_ncm
sysfs-class-net-dsa
sysfs-class-net-grcan
sysfs-class-net-janz-ican3
sysfs-class-net-peak_usb can: peak_usb: export PCAN CAN channel ID as sysfs device attribute 2023-02-02 17:39:25 +01:00
sysfs-class-net-phydev
sysfs-class-net-qmi Documentation: ABI: sysfs-class-net-qmi: pass_through contact update 2023-07-03 09:25:50 +01:00
sysfs-class-net-queues net: dqs: add NIC stall detector based on BQL 2024-03-08 10:23:26 +00:00
sysfs-class-net-statistics net: sysfs: Fix /sys/class/net/<iface> path for statistics 2024-02-12 12:13:50 +00:00
sysfs-class-ocxl
sysfs-class-pktcdvd Revert "pktcdvd: remove driver." 2023-01-04 14:44:13 -07:00
sysfs-class-power ABI: testing: sysfs-class-power: Document absence of "present" property 2023-02-25 01:16:50 +01:00
sysfs-class-power-ltc4162l
sysfs-class-power-mp2629
sysfs-class-power-rt9467 Documentation: power: rt9467: Document exported sysfs entries 2023-02-03 17:09:42 +01:00
sysfs-class-power-rt9471 Documentation: power: rt9471: Document exported sysfs entries 2023-02-03 14:39:20 +01:00
sysfs-class-power-surface
sysfs-class-power-twl4030
sysfs-class-power-wilco Documentation/ABI: Fix typos 2023-08-18 11:28:40 -06:00
sysfs-class-powercap
sysfs-class-pwm docs: ABI: sysfs-class-pwm: Update Lee Jones' email address 2022-07-14 16:46:53 +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 regulator: core: Add error flags to sysfs attributes 2022-05-04 15:31:26 +01:00
sysfs-class-remoteproc Documentation/ABI: Fix typos 2023-08-18 11:28:40 -06:00
sysfs-class-rnbd-client
sysfs-class-rnbd-server
sysfs-class-rtc
sysfs-class-rtc-rtc0-device-rtc_calibration
sysfs-class-rtrs-client sysfs docs: ABI: Fix typo in comment 2022-07-28 16:32:33 +02:00
sysfs-class-rtrs-server sysfs docs: ABI: Fix typo in comment 2022-07-28 16:32:33 +02:00
sysfs-class-scsi_host
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
sysfs-class-thermal Documentation/ABI: Fix typos 2023-08-18 11:28:40 -06:00
sysfs-class-typec usb: typec: USB Power Delivery helpers for ports and partners 2022-06-12 06:49:47 +02:00
sysfs-class-usb_power_delivery usb: pd: Exposing the Peak Current value of Fixed Supplies to user space 2023-10-02 16:38:29 +02:00
sysfs-class-usb_role
sysfs-class-vduse Docs/ABI/testing: Add VDUSE sysfs interface ABI document 2022-06-27 16:42:52 +02:00
sysfs-class-wakeup
sysfs-class-watchdog watchdog: report options in sysfs 2023-02-18 15:11:40 +01:00
sysfs-class-zram
sysfs-dev
sysfs-devices
sysfs-devices-consumer
sysfs-devices-coredump
sysfs-devices-edac
sysfs-devices-firmware_node
sysfs-devices-hisi_ptt hwtracing: hisi_ptt: Export available filters through sysfs 2023-06-21 11:52:09 +01:00
sysfs-devices-lpss_ltr
sysfs-devices-mapping perf/x86/intel/uncore: Update sysfs-devices-mapping file 2022-11-24 11:09:24 +01:00
sysfs-devices-memory crash: memory and CPU hotplug sysfs attributes 2023-08-24 16:25:14 -07:00
sysfs-devices-mmc
sysfs-devices-online Documentation/ABI: Fix typos 2023-08-18 11:28:40 -06:00
sysfs-devices-physical_location driver core: Add sysfs support for physical location of a device 2022-04-27 09:51:57 +02:00
sysfs-devices-platform-ACPI-TAD sysfs docs: ABI: Fix typo in comment 2022-07-28 16:32:33 +02:00
sysfs-devices-platform-_UDC_-gadget
sysfs-devices-platform-docg3
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
sysfs-devices-platform-kunpeng_hccs doc: kunpeng_hccs: Fix incorrect email domain name 2023-12-07 06:16:34 +00:00
sysfs-devices-platform-sh_mobile_lcdc_fb
sysfs-devices-platform-soc-ipa net: ipa: add an endpoint device attribute group 2022-07-20 21:03:26 -07:00
sysfs-devices-platform-stratix10-rsu
sysfs-devices-platform-trackpoint
sysfs-devices-power sysfs docs: ABI: Fix typo in comment 2022-07-28 16:32:33 +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 docs: ABI: sysfs-devices-soc: Update Lee Jones' email address 2022-07-14 16:46:55 +02:00
sysfs-devices-software_node
sysfs-devices-state_synced driver core: Make state_synced device attribute writeable 2023-03-10 09:06:22 +01:00
sysfs-devices-sun
sysfs-devices-supplier
sysfs-devices-system-cpu x86/rfds: Mitigate Register File Data Sampling (RFDS) 2024-03-11 13:13:48 -07:00
sysfs-devices-system-ibm-rtl
sysfs-devices-system-xen_cpu
sysfs-devices-vfio-dev vfio: Add struct device to vfio_device 2022-09-21 14:15:11 -06:00
sysfs-devices-waiting_for_supplier
sysfs-devices-xenbus
sysfs-driver-altera-cvp
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 dt-bindings: mfd: bd9571mwv: update rohm,bd9571mwv.yaml reference 2022-06-06 12:16:59 -05:00
sysfs-driver-ccp crypto: ccp - Add support for displaying PSP firmware versions 2023-07-20 22:13:16 +12:00
sysfs-driver-chromeos-acpi platform/chrome: chromeos_acpi: print hex string for ACPI_TYPE_BUFFER 2023-08-10 11:10:56 +08:00
sysfs-driver-eud usb: misc: eud: Fix eud sysfs path (use 'qcom_eud') 2023-05-29 15:55:16 +01:00
sysfs-driver-fsi-master-gpio
sysfs-driver-ge-achc Documentation/ABI: Fix typos 2023-08-18 11:28:40 -06:00
sysfs-driver-genwqe
sysfs-driver-habanalabs accel/habanalabs: add parent_device sysfs attribute 2023-12-19 11:09:44 +02:00
sysfs-driver-hid
sysfs-driver-hid-corsair
sysfs-driver-hid-lenovo
sysfs-driver-hid-logitech-hidpp
sysfs-driver-hid-logitech-lg4ff
sysfs-driver-hid-multitouch
sysfs-driver-hid-ntrig
sysfs-driver-hid-picolcd
sysfs-driver-hid-prodikeys
sysfs-driver-hid-roccat-kone
sysfs-driver-hid-srws1
sysfs-driver-hid-wiimote
sysfs-driver-input-axp-pek
sysfs-driver-input-cros-ec-keyb
sysfs-driver-input-exc3000
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-i915-hwmon drm/hwmon: Fix abi doc warnings 2024-02-01 12:04:52 +01:00
sysfs-driver-intel-m10-bmc mfd: intel-m10-bmc: Change contact for ABI docs 2023-11-01 10:02:16 +00:00
sysfs-driver-intel-m10-bmc-sec-update fpga: m10bmc-sec: Change contact for secure update driver 2023-10-24 19:32:39 +02:00
sysfs-driver-intel-rapid-start
sysfs-driver-intel-xe-hwmon drm/hwmon: Fix abi doc warnings 2024-02-01 12:04:52 +01:00
sysfs-driver-intel_sdsi platform/x86/intel/sdsi: Add meter certificate support 2022-11-21 10:55:35 +01:00
sysfs-driver-jz4780-efuse
sysfs-driver-pciback
sysfs-driver-ppi
sysfs-driver-qat crypto: qat - add num_rps sysfs attribute 2023-10-27 18:04:28 +08:00
sysfs-driver-qat_ras crypto: qat - add error counters 2023-10-27 18:04:27 +08:00
sysfs-driver-qat_rl crypto: qat - add rate limiting sysfs interface 2023-10-27 18:04:28 +08:00
sysfs-driver-samsung-laptop
sysfs-driver-st
sysfs-driver-tegra-fuse Documentation/ABI: Fix typos 2023-08-18 11:28:40 -06:00
sysfs-driver-toshiba_acpi
sysfs-driver-toshiba_haps
sysfs-driver-typec-displayport usb: typec: altmodes/displayport: Add hpd sysfs attribute 2023-01-06 16:36:03 +01:00
sysfs-driver-uacce Documentation: add the device isolation feature sysfs nodes for uacce 2023-01-20 12:06:26 +01:00
sysfs-driver-ucsi-ccg
sysfs-driver-ufs Merge patch series "Add UFS RTC support" 2023-12-13 23:17:17 -05:00
sysfs-driver-w1_ds28e17
sysfs-driver-w1_therm
sysfs-driver-wacom
sysfs-driver-xdata
sysfs-driver-xen-blkback xen-blkback: Apply 'feature_persistent' parameter when connect 2022-08-12 12:13:51 +02:00
sysfs-driver-xen-blkfront xen-blkfront: Apply 'feature_persistent' parameter when connect 2022-08-12 12:13:54 +02:00
sysfs-driver-xilinx-tmr-manager drivers: misc: Add Support for TMR Manager 2023-01-20 13:09:30 +01:00
sysfs-driver-zynqmp-fpga fpga: zynqmp-fpga: Adds status interface 2023-03-09 17:33:19 +01:00
sysfs-firmware-acpi Documentation/ABI: Fix typos 2023-08-18 11:28:40 -06:00
sysfs-firmware-dmi-entries Documentation: Drop or replace remaining mentions of IA64 2023-09-11 08:13:18 +00:00
sysfs-firmware-dmi-tables
sysfs-firmware-efi
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
sysfs-firmware-gsmi
sysfs-firmware-initrd initramfs: Expose retained initrd as sysfs file 2023-12-15 17:23:00 +01:00
sysfs-firmware-lefi-boardinfo
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
sysfs-firmware-papr-energy-scale-info powerpc/pseries: Interface to represent PAPR firmware attributes 2022-03-08 00:05:00 +11:00
sysfs-firmware-qemu_fw_cfg docs: ABI: correct QEMU fw_cfg spec path 2022-07-20 15:01:43 -06:00
sysfs-firmware-sgi_uv Documentation/ABI: Fix typos 2023-08-18 11:28:40 -06:00
sysfs-firmware-turris-mox-rwtm
sysfs-fs-erofs Documentation/ABI: sysfs-fs-erofs: update supported features 2023-02-15 08:11:27 +08:00
sysfs-fs-ext4
sysfs-fs-f2fs f2fs: show more discard status by sysfs 2023-12-26 13:07:26 -08:00
sysfs-fs-nilfs2
sysfs-fs-ubifs ubifs: Document sysfs nodes 2021-12-23 20:23:42 +01:00
sysfs-fs-xfs
sysfs-hypervisor-xen
sysfs-ibft
sysfs-kernel-address_bits kernels/ksysfs.c: export kernel address bits 2023-01-20 14:30:45 +01:00
sysfs-kernel-boot_params
sysfs-kernel-btf
sysfs-kernel-cpu_byteorder kernel/ksysfs.c: export kernel cpu byteorder 2022-11-10 19:07:31 +01: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
sysfs-kernel-fscaps
sysfs-kernel-iommu_groups iommu: Cleanup iommu_change_dev_def_domain() 2023-03-22 15:45:17 +01:00
sysfs-kernel-irq
sysfs-kernel-livepatch livepatch: add sysfs entry "patched" for each klp_object 2022-09-23 16:06:18 +02:00
sysfs-kernel-mm
sysfs-kernel-mm-cma
sysfs-kernel-mm-damon Docs/ABI/damon: document DAMOS quota goals 2023-12-12 10:57:04 -08:00
sysfs-kernel-mm-hugepages
sysfs-kernel-mm-ksm mm: add new KSM process and sysfs knobs 2023-04-21 14:52:03 -07:00
sysfs-kernel-mm-memory-tiers memory tier, sysfs: rename attribute "nodes" to "nodelist" 2022-10-28 13:37:22 -07: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-oops_count exit: Expose "oops_count" to sysfs 2022-12-01 08:50:38 -08:00
sysfs-kernel-reboot
sysfs-kernel-slab docs: rename Documentation/vm to Documentation/mm 2022-06-27 12:52:53 -07:00
sysfs-kernel-vmcoreinfo
sysfs-kernel-warn_count docs: Fix path paste-o for /sys/kernel/warn_count 2022-12-14 14:37:59 -08:00
sysfs-mce x86/mce: Remove the tolerance level control 2022-02-23 11:09:25 +01:00
sysfs-memory-page-offline Documentation/ABI: Fix typos 2023-08-18 11:28:40 -06:00
sysfs-module xen: speed up grant-table reclaim 2023-07-27 07:53:12 +02:00
sysfs-nvmem-cells nvmem: include bit index in cell sysfs file name 2024-02-14 16:28:16 +01:00
sysfs-ocfs2 docs: update ocfs2-devel mailing list address 2023-07-08 09:29:29 -07:00
sysfs-platform-asus-laptop
sysfs-platform-asus-wmi platform/x86: asus-wmi: expose dGPU and CPU tunables for ROG 2023-07-12 17:17:44 +02:00
sysfs-platform-at91
sysfs-platform-brcmstb-gisb-arb
sysfs-platform-brcmstb-memc Documentation: sysfs: Document Broadcom STB memc sysfs knobs 2022-08-18 09:11:45 +03:00
sysfs-platform-chipidea-usb-otg
sysfs-platform-chipidea-usb2 usb: chipidea: clarify Documentation/ABI text 2022-09-27 13:21:44 -06:00
sysfs-platform-dell-laptop Documentation/ABI: Fix typos 2023-08-18 11:28:40 -06: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-dell-wmi-ddv platform/x86: dell-ddv: Update ABI documentation 2023-05-09 11:54:42 +02:00
sysfs-platform-dfl-fme Documentation/ABI: Fix typos 2023-08-18 11:28:40 -06:00
sysfs-platform-dfl-port
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
sysfs-platform-hidma dmaengine: qcom_hidma: Update codeaurora email domain 2023-08-07 00:01:41 +05:30
sysfs-platform-hidma-mgmt dmaengine: qcom_hidma: Update codeaurora email domain 2023-08-07 00:01:41 +05:30
sysfs-platform-i2c-demux-pinctrl
sysfs-platform-ideapad-laptop
sysfs-platform-intel-ifs Documentation/ABI: Update IFS ABI doc 2023-03-27 16:10:20 +02: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
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 Documentation/ABI: Fix typos 2023-08-18 11:28:40 -06:00
sysfs-platform-lg-laptop lg-laptop: Move setting of battery charge limit to common location 2022-02-23 11:36:24 +01:00
sysfs-platform-mellanox-bootctl mlxbf-bootctl: Support sysfs entries for MFG fields 2023-08-23 17:31:27 +02:00
sysfs-platform-msi-laptop
sysfs-platform-phy-rcar-gen3-usb2
sysfs-platform-power-on-reason power: reset: at91-reset: add sysfs interface to the power on reason 2023-07-19 23:15:21 +02:00
sysfs-platform-renesas_usb3
sysfs-platform-silicom platform/x86: silicom-platform: Add missing "Description:" for power_cycle sysfs attr 2024-01-22 11:37:28 +01:00
sysfs-platform-sst-atom Documentation/ABI: Fix typos 2023-08-18 11:28:40 -06:00
sysfs-platform-tahvo-usb
sysfs-platform-ts5500
sysfs-platform-twl4030-usb
sysfs-platform-usbip-vudc
sysfs-platform-wilco-ec
sysfs-platform_profile ACPI: platform-profile: call sysfs_notify() from platform_profile_store() 2021-08-16 18:32:02 +02:00
sysfs-power PM: Add sysfs files to represent time spent in hardware sleep state 2023-04-20 19:06:12 +02:00
sysfs-pps
sysfs-profiling
sysfs-ptp ABI: sysfs-ptp: use wildcards on What definitions 2021-09-21 18:31:17 +02:00
sysfs-secvar powerpc/pseries: Implement secvars for dynamic secure boot 2023-02-13 22:34:33 +11:00
sysfs-timecard docs: ABI: Document new timecard sysfs nodes. 2022-03-11 11:54:45 +00:00
sysfs-tty docs: ABI: sysfs-tty: close times are in centiseconds 2023-09-18 11:14:43 +02:00
sysfs-uevent
usb-charger-uevent
usb-uevent