linux/Documentation/ABI/testing
Linus Torvalds 0974f486f3 f2fs-for-6.17-rc1
In this round, we've mainly updated three parts: 1) folio conversion by Matthew,
 2) switch to a new mount API by Hongbo and Eric, and 3) several sysfs entries
 to tune GCs for ZUFS with finer granularity by Daeho. There are also patches
 to address bugs and issues in the existing features such as GCs, file pinning,
 write-while-dio-read, contingous block allocation, and memory access violations.
 
 Enhancement:
  - switch to new mount API and folio conversion
  - add sysfs nodes to controle F2FS GCs for ZUFS
  - improve performance on the nat entry cache
  - drop inode from the donation list when the last file is closed
  - avoid splitting bio when reading multiple pages
 
 Bug fix:
  - fix to trigger foreground gc during f2fs_map_blocks() in lfs mode
  - make sure zoned device GC to use FG_GC in shortage of free section
  - fix to calculate dirty data during has_not_enough_free_secs()
  - fix to update upper_p in __get_secs_required() correctly
  - wait for inflight dio completion, excluding pinned files read using dio
  - don't break allocation when crossing contiguous sections
  - vm_unmap_ram() may be called from an invalid context
  - fix to avoid out-of-boundary access in dnode page
  - fix to avoid panic in f2fs_evict_inode
  - fix to avoid UAF in f2fs_sync_inode_meta()
  - fix to use f2fs_is_valid_blkaddr_raw() in do_write_page()
  - fix UAF of f2fs_inode_info in f2fs_free_dic
  - fix to avoid invalid wait context issue
  - fix bio memleak when committing super block
  - handle nat.blkaddr corruption in f2fs_get_node_info()
 
 In addition, there are also clean-ups and minor bug fixes.
 -----BEGIN PGP SIGNATURE-----
 
 iQIzBAABCgAdFiEE00UqedjCtOrGVvQiQBSofoJIUNIFAmiRJ+oACgkQQBSofoJI
 UNInMA//ekJJCf/0UyMYiPA9ag4KBb/VA0VaVJbw6BA/DoT5ZII6+lCIfllyELbk
 78+ZppTrKq5OyImwiajcNijEwyDbh/asfUu+uNVsC85fjoboiBgDGVHbUEtSQ20Q
 5JVXIL5PhDDVGdVNPh57ijYK/PxhzBPaFNuaGECYrqnWhkQEb//HmN20KRfzcOjZ
 19QnOyEh0HED/izMjLhtZaCBQP53kfB7VjhTxMdY86l6IZ22gJHPRrnqBQHRTfyb
 iHcMJj4WRd7SpvbD/6bSdnUfpxOYPIm3GwQHdG46cHBEH1scnyQxx2OULlSLUbz6
 yeiG36jcuQQWOev8ikBjNzfAozD0VvUAulPpfIbAoHc5jBYkA1sP3N7JOiao1H4Z
 FnPgw/FyIQE+d9NkbyeVW+6f9WfmKlJlIJ4zKoURbZvARYCZKmiPiI9vPWWe18qV
 nchWniQMJ45TYsABUGmGJwTEe/SFaOkgLpLjAlzCy7ZY9/6LKVUlnxR0E1ZDcjSp
 5/E5fXQhds0Nn7F1jQXV3afxkECW+MNOLS/31ggL+ym6Pce3HPJCxBeRU4XaKrvA
 O0wP7n3g5jhVVWce0PBghF0mwTVVBwohTaUhL7lIIJMxKGkr4A8kH1j8tLLBdD3b
 hqcesDCtqqOZhogbwHXEgUDSikak4/1R1gDXnK0KhL1gg0Z6wR4=
 =XIPU
 -----END PGP SIGNATURE-----

Merge tag 'f2fs-for-6.17-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs

Pull f2fs updates from Jaegeuk Kim:
 "Three main updates: folio conversion by Matthew, switch to a new mount
  API by Hongbo and Eric, and several sysfs entries to tune GCs for ZUFS
  with finer granularity by Daeho.

  There are also patches to address bugs and issues in the existing
  features such as GCs, file pinning, write-while-dio-read, contingous
  block allocation, and memory access violations.

  Enhancements:
   - switch to new mount API and folio conversion
   - add sysfs nodes to controle F2FS GCs for ZUFS
   - improve performance on the nat entry cache
   - drop inode from the donation list when the last file is closed
   - avoid splitting bio when reading multiple pages

  Bug fixes:
   - fix to trigger foreground gc during f2fs_map_blocks() in lfs mode
   - make sure zoned device GC to use FG_GC in shortage of free section
   - fix to calculate dirty data during has_not_enough_free_secs()
   - fix to update upper_p in __get_secs_required() correctly
   - wait for inflight dio completion, excluding pinned files read using dio
   - don't break allocation when crossing contiguous sections
   - vm_unmap_ram() may be called from an invalid context
   - fix to avoid out-of-boundary access in dnode page
   - fix to avoid panic in f2fs_evict_inode
   - fix to avoid UAF in f2fs_sync_inode_meta()
   - fix to use f2fs_is_valid_blkaddr_raw() in do_write_page()
   - fix UAF of f2fs_inode_info in f2fs_free_dic
   - fix to avoid invalid wait context issue
   - fix bio memleak when committing super block
   - handle nat.blkaddr corruption in f2fs_get_node_info()

  In addition, there are also clean-ups and minor bug fixes"

* tag 'f2fs-for-6.17-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs: (109 commits)
  f2fs: drop inode from the donation list when the last file is closed
  f2fs: add gc_boost_gc_greedy sysfs node
  f2fs: add gc_boost_gc_multiple sysfs node
  f2fs: fix to trigger foreground gc during f2fs_map_blocks() in lfs mode
  f2fs: fix to calculate dirty data during has_not_enough_free_secs()
  f2fs: fix to update upper_p in __get_secs_required() correctly
  f2fs: directly add newly allocated pre-dirty nat entry to dirty set list
  f2fs: avoid redundant clean nat entry move in lru list
  f2fs: zone: wait for inflight dio completion, excluding pinned files read using dio
  f2fs: ignore valid ratio when free section count is low
  f2fs: don't break allocation when crossing contiguous sections
  f2fs: remove unnecessary tracepoint enabled check
  f2fs: merge the two conditions to avoid code duplication
  f2fs: vm_unmap_ram() may be called from an invalid context
  f2fs: fix to avoid out-of-boundary access in dnode page
  f2fs: switch to the new mount api
  f2fs: introduce fs_context_operation structure
  f2fs: separate the options parsing and options checking
  f2fs: Add f2fs_fs_context to record the mount options
  f2fs: Allow sbi to be NULL in f2fs_printk
  ...
2025-08-04 16:27:21 -07:00
..
configfs-acpi
configfs-iio
configfs-most
configfs-rdma_cm
configfs-spear-pcie-gadget
configfs-stp-policy
configfs-stp-policy-p_sys-t
configfs-tsm-report configfs-tsm: Namespace TSM report symbols 2025-05-02 12:52:16 -07:00
configfs-usb-gadget
configfs-usb-gadget-acm usb: gadget: f_acm: make bInterfaceProtocol configurable 2024-09-03 09:54:16 +02:00
configfs-usb-gadget-ecm
configfs-usb-gadget-eem
configfs-usb-gadget-ffs usb: gadget: f_fs: expose ready state in configfs 2024-01-27 17:39:21 -08:00
configfs-usb-gadget-hid
configfs-usb-gadget-loopback docs: ABI: cleanup several ABI documents 2020-10-30 13:14:29 +01:00
configfs-usb-gadget-mass-storage
configfs-usb-gadget-midi
configfs-usb-gadget-midi2 Documentation: typo fixes 2025-02-18 14:01:22 -07: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: Change volume name and remove alt names 2024-08-13 18:11:35 +02:00
configfs-usb-gadget-uac1_legacy usb: gadget: function: make current f_uac1 implementation legacy 2017-06-19 09:22:47 +03:00
configfs-usb-gadget-uac2 usb: gadget: f_uac2: Expose all string descriptors through configfs. 2024-08-13 10:37:05 +02:00
configfs-usb-gadget-uvc usb: gadget: uvc: configfs: Add frame-based frame format support 2024-10-16 10:45:47 +02:00
debugfs-alienware-wmi platform/x86: alienware-wmi-wmax: Expose GPIO debug methods 2025-05-08 16:04:00 +03:00
debugfs-amd-iommu iommu/amd: Wrap debugfs ABI testing symbols snippets in literal code blocks 2025-07-17 09:52:40 +01:00
debugfs-cec-error-inj docs: ABI: cleanup several ABI documents 2020-10-30 13:14:29 +01:00
debugfs-cros-ec
debugfs-cxl Documentation/ABI/testing/debugfs-cxl: Add 'cxl' to clear_poison path 2025-07-25 10:26:27 -07:00
debugfs-dell-wmi-ddv
debugfs-driver-dcc
debugfs-driver-genwqe
debugfs-driver-habanalabs accel/habanalabs: use device-name directory in debugfs-driver-habanalabs 2024-06-23 09:53:04 +03:00
debugfs-driver-qat crypto: qat - enable power management debugfs for GEN6 devices 2025-07-18 20:51:59 +10:00
debugfs-driver-qat_telemetry Documentation: qat: update debugfs-driver-qat_telemetry for GEN6 devices 2025-07-18 20:52:00 +10:00
debugfs-dwc-pcie PCI: dwc: Add debugfs property to provide LTSSM status of the PCIe link 2025-03-06 08:55:54 +00:00
debugfs-ec
debugfs-hisi-hpre crypto: hisilicon - support querying the capability register 2024-11-02 18:23:24 +08:00
debugfs-hisi-migration Documentation: add debugfs description for hisi migration 2024-11-13 14:59:33 -07:00
debugfs-hisi-sec crypto: hisilicon - support querying the capability register 2024-11-02 18:23:24 +08:00
debugfs-hisi-zip crypto: hisilicon - support querying the capability register 2024-11-02 18:23:24 +08:00
debugfs-hyperv
debugfs-ideapad
debugfs-iio-ad9467 ABI: debugfs-iio-ad9467: document the debugfs interface 2024-08-10 11:17:34 +01:00
debugfs-iio-backend iio: backend: add debugFs interface 2024-08-03 14:36:45 +01:00
debugfs-intel-iommu iommu/vt-d: Add the document for Intel IOMMU debugfs 2024-03-01 13:51:19 +01:00
debugfs-moxtet
debugfs-msi-wmi-platform platform/x86: wmi: Add MSI WMI Platform driver 2024-04-29 12:06:21 +02:00
debugfs-olpc
debugfs-pcie-ptm PCI: Add debugfs support for exposing PTM context 2025-05-15 09:16:20 +00:00
debugfs-pfo-nx-crypto
debugfs-scmi
debugfs-scmi-raw firmware: arm_scmi: Add polling support to raw mode 2025-04-14 10:12:13 +01:00
debugfs-tpmi doc: TPMI: Add entry for Performance Limit Reasons 2024-05-31 16:32:20 +03:00
debugfs-vfio Documentation: add debugfs description for vfio 2023-12-04 14:29:39 -07:00
debugfs-wilco-ec
dell-smbios-wmi
dev-kmsg
devlink-resource-mlxsw
evm
gpio-cdev Documentation: ABI: update gpio-cdev to reference chardev.rst 2024-01-22 10:47:53 +01:00
ima_policy
ppc-memtrace
procfs-attr-current
procfs-attr-exec
procfs-attr-prev
procfs-diskstats
procfs-smaps_rollup
pstore
rtc-cdev
securityfs-secrets-coco
sysfs-amd-pmc
sysfs-amd-pmf
sysfs-ata
sysfs-block-aoe
sysfs-block-bcache
sysfs-block-device
sysfs-block-dm
sysfs-block-loop
sysfs-block-rnbd
sysfs-block-rssd
sysfs-block-zram zram: remove max_comp_streams device attr 2025-03-16 22:06:33 -07:00
sysfs-bus-acpi ACPI/PNP: Use my kernel.org address in MAINTAINERS and ABI docs 2025-07-21 12:57:47 +02:00
sysfs-bus-amba
sysfs-bus-auxiliary driver core: auxiliary bus: show auxiliary device IRQs 2024-07-11 14:17:03 -07:00
sysfs-bus-bcma
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 ABI: sysfs-bus-coresight-*: fix kernelversion tags 2025-02-10 11:19:56 -07:00
sysfs-bus-coresight-devices-dummy-source coresight: dummy: Add static trace id support for dummy source 2024-12-11 10:15:45 +00:00
sysfs-bus-coresight-devices-etb10
sysfs-bus-coresight-devices-etm3x coresight: Docs/ABI/testing/sysfs-bus-coresight-devices: Fix spelling errors 2024-04-29 09:37:05 +01:00
sysfs-bus-coresight-devices-etm4x
sysfs-bus-coresight-devices-funnel
sysfs-bus-coresight-devices-stm
sysfs-bus-coresight-devices-tmc coresight: Docs/ABI/testing/sysfs-bus-coresight-devices: Fix spelling errors 2024-04-29 09:37:05 +01:00
sysfs-bus-coresight-devices-tpdm Char/Misc/IIO driver updates for 6.15-rc1 2025-04-01 11:26:08 -07:00
sysfs-bus-coresight-devices-trbe
sysfs-bus-coresight-devices-ultra_smb
sysfs-bus-counter counter: Introduce the compare component 2025-03-10 18:00:49 +09:00
sysfs-bus-css
sysfs-bus-cxl docs: ABI: Fix "firwmare" to "firmware" 2025-05-19 08:41:51 -07:00
sysfs-bus-dax dax: add a sysfs knob to control memmap_on_memory behavior 2024-02-22 10:24:40 -08:00
sysfs-bus-dfl
sysfs-bus-dfl-devices-emif
sysfs-bus-dfl-devices-n3000-nios
sysfs-bus-event_source-devices perf Documentation: Describe the PMU naming convention 2024-12-23 13:53:08 -03:00
sysfs-bus-event_source-devices-caps
sysfs-bus-event_source-devices-dfl_fme
sysfs-bus-event_source-devices-dsa
sysfs-bus-event_source-devices-events perf Documentation: Clarify sysfs event names characters 2025-01-08 17:20:42 -03:00
sysfs-bus-event_source-devices-format
sysfs-bus-event_source-devices-hisi_ptt Documentation: ABI + trace: hisi_ptt: update paths to bus/event_source 2024-05-02 11:36:11 +01:00
sysfs-bus-event_source-devices-hv_24x7
sysfs-bus-event_source-devices-hv_gpci
sysfs-bus-event_source-devices-iommu
sysfs-bus-event_source-devices-uncore
sysfs-bus-event_source-devices-vpa-pmu docs: ABI: sysfs-bus-event_source-devices-vpa-pmu: Fix htmldocs errors 2024-11-27 10:40:39 +05:30
sysfs-bus-fcoe
sysfs-bus-fsi
sysfs-bus-fsi-devices-sbefifo
sysfs-bus-fsl-mc
sysfs-bus-hsi
sysfs-bus-i2c-devices-bq32k
sysfs-bus-i2c-devices-fsa9480
sysfs-bus-i2c-devices-hm6352
sysfs-bus-i2c-devices-lm3533
sysfs-bus-i2c-devices-pca954x
sysfs-bus-i2c-devices-turris-omnia-mcu doc: platform: cznic: turris-omnia-mcu: Use double backticks for attribute value 2024-08-07 14:43:54 +02:00
sysfs-bus-i3c i3c: document hotjoin sysfs entry 2024-01-15 00:21:14 +01:00
sysfs-bus-iio iio: ABI: fix correctness of I and Q modifiers 2025-07-14 19:24:14 +01:00
sysfs-bus-iio-accel-adxl372
sysfs-bus-iio-accel-bmc150
sysfs-bus-iio-ad9739a iio: dac: support the ad9739a RF DAC 2024-04-20 15:41:32 +01:00
sysfs-bus-iio-adc-ad-sigma-delta iio: adc: ad-sigma-delta: Document ABI for sigma delta adc 2024-12-11 19:20:49 +00:00
sysfs-bus-iio-adc-ad4130 Documentation: ABI: IIO: Re-add sysfs-bus-iio-adc-ad4130 2025-02-08 15:39:41 +00:00
sysfs-bus-iio-adc-ad7192 iio: adc: ad-sigma-delta: Document ABI for sigma delta adc 2024-12-11 19:20:49 +00:00
sysfs-bus-iio-adc-ad7280a
sysfs-bus-iio-adc-envelope-detector
sysfs-bus-iio-adc-hi8435
sysfs-bus-iio-adc-max11410
sysfs-bus-iio-adc-mcp3564
sysfs-bus-iio-adc-mt6360
sysfs-bus-iio-adc-pac1934 iio: adc: adding support for PAC193x 2024-02-28 19:26:37 +00:00
sysfs-bus-iio-adc-stm32
sysfs-bus-iio-bno055
sysfs-bus-iio-cdc-ad7746
sysfs-bus-iio-chemical-sgp40 iio: ABI: remove duplicate in_resistance_calibbias 2024-08-21 21:27:24 +01:00
sysfs-bus-iio-chemical-sunrise-co2
sysfs-bus-iio-chemical-vz89x
sysfs-bus-iio-cros-ec
sysfs-bus-iio-dac iio: ABI: Generalize ABI documentation for DAC 2024-08-03 10:13:37 +01:00
sysfs-bus-iio-dac-ad5766
sysfs-bus-iio-dac-dpot-dac
sysfs-bus-iio-dac-ltc2688 iio: ABI: Generalize ABI documentation for DAC 2024-08-03 10:13:37 +01:00
sysfs-bus-iio-dfsdm-adc-stm32
sysfs-bus-iio-distance-srf08
sysfs-bus-iio-dma-buffer
sysfs-bus-iio-filter-admv8818 ABI: testing: fix admv8818 attr description 2024-08-03 10:12:48 +01:00
sysfs-bus-iio-frequency-ad9523
sysfs-bus-iio-frequency-adf4350
sysfs-bus-iio-frequency-adf4371
sysfs-bus-iio-frequency-admv1013 iio: ABI: fix correctness of I and Q modifiers 2025-07-14 19:24:14 +01:00
sysfs-bus-iio-frequency-admv1014
sysfs-bus-iio-gyro-bmg160
sysfs-bus-iio-health-afe440x
sysfs-bus-iio-humidity
sysfs-bus-iio-impedance-analyzer-ad5933
sysfs-bus-iio-ina2xx-adc iio: ABI: generalize shunt_resistor attribute 2024-08-03 10:13:41 +01:00
sysfs-bus-iio-inv_icm42600 iio: document inv_icm42600 driver private sysfs attributes 2024-06-13 19:19:26 +01:00
sysfs-bus-iio-isl29501
sysfs-bus-iio-light-isl29018
sysfs-bus-iio-light-lm3533-als
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
sysfs-bus-iio-proximity-as3935
sysfs-bus-iio-resolver-ad2s1210
sysfs-bus-iio-sps30
sysfs-bus-iio-sx9310
sysfs-bus-iio-sx9324
sysfs-bus-iio-thermocouple
sysfs-bus-iio-timer-stm32
sysfs-bus-iio-trigger-sysfs
sysfs-bus-iio-vf610
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
sysfs-bus-media
sysfs-bus-mei
sysfs-bus-mmc mmc: core: export emmc revision 2017-10-30 11:46:04 +01:00
sysfs-bus-most
sysfs-bus-moxtet-devices treewide: change my e-mail address, fix my name 2021-04-09 14:54:23 -07:00
sysfs-bus-nfit
sysfs-bus-nvdimm
sysfs-bus-optee-devices
sysfs-bus-papr-pmem
sysfs-bus-pci PCI/DOE: Expose DOE features via sysfs 2025-03-21 16:36:01 -05:00
sysfs-bus-pci-devices-aer PCI/AER: Add sysfs attributes for log ratelimits 2025-05-23 11:11:45 -05:00
sysfs-bus-pci-devices-avs ASoC: Intel: avs: Expose FW version with sysfs 2024-02-09 14:32:51 +00:00
sysfs-bus-pci-devices-catpt
sysfs-bus-pci-devices-cciss ABI: Fix KernelVersion tags 2019-06-15 08:12:45 +02:00
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: Allow users to modify DbC poll interval via sysfs 2024-06-27 16:08:05 +02:00
sysfs-bus-peci
sysfs-bus-platform
sysfs-bus-platform-devices-ampere-smpro
sysfs-bus-platform-devices-occ-hwmon
sysfs-bus-platform-drivers-amd_x3d_vcache platform/x86/amd: amd_3d_vcache: Add sysfs ABI documentation 2024-11-13 15:35:36 +02:00
sysfs-bus-platform-onboard-usb-dev usb: misc: onboard_hub: rename to onboard_dev 2024-03-27 07:57:16 +01:00
sysfs-bus-rapidio
sysfs-bus-rbd
sysfs-bus-rpmsg
sysfs-bus-siox
sysfs-bus-soundwire-master
sysfs-bus-soundwire-slave
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
sysfs-bus-thunderbolt
sysfs-bus-typec
sysfs-bus-usb usb: Export BOS descriptor to sysfs 2024-03-05 07:57:23 +00: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-bus-wmi docs: ABI: Fix "aassociated" to "associated" 2025-05-21 13:43:48 +03:00
sysfs-c2port
sysfs-cfq-target-latency
sysfs-class
sysfs-class-backlight
sysfs-class-backlight-driver-lm3533
sysfs-class-backlight-lm3639
sysfs-class-bdi
sysfs-class-bsr
sysfs-class-chromeos platform/chrome: cros_ec_sysfs: Expose AP_MODE_ENTRY feature state 2025-02-05 04:03:31 +00:00
sysfs-class-chromeos-driver-cros-ec-lightbar
sysfs-class-chromeos-driver-cros-ec-vbc
sysfs-class-devfreq PM / devfreq: Add HiSilicon uncore frequency scaling driver 2025-07-14 20:23:57 +09:00
sysfs-class-devfreq-event
sysfs-class-devlink
sysfs-class-extcon
sysfs-class-fc
sysfs-class-fc_host
sysfs-class-fc_remote_ports
sysfs-class-firmware
sysfs-class-firmware-attributes platform/x86: think-lmi: Multi-certificate support 2024-10-29 14:00:14 +02:00
sysfs-class-fpga-bridge
sysfs-class-fpga-manager
sysfs-class-fpga-region
sysfs-class-gnss
sysfs-class-hwmon ABI: sysfs-class-hwmon: add descriptions for humidity min/max alarms 2024-02-25 12:37:37 -08:00
sysfs-class-intel_pmt
sysfs-class-intel_pmt-features docs: Add ABI documentation for intel_pmt feature directories 2025-07-03 11:09:33 +03:00
sysfs-class-iommu
sysfs-class-iommu-amd-iommu
sysfs-class-iommu-intel-iommu
sysfs-class-lcd
sysfs-class-led leds: led-triggers: Improvements for default trigger 2025-04-15 17:57:54 +01:00
sysfs-class-led-driver-aw200xx
sysfs-class-led-driver-lm3533
sysfs-class-led-driver-turris-omnia
sysfs-class-led-flash
sysfs-class-led-multicolor
sysfs-class-led-trigger-netdev docs: ABI: sysfs-class-led-trigger-netdev: Document now hidable link_* 2024-03-07 08:47:58 +00:00
sysfs-class-led-trigger-oneshot
sysfs-class-led-trigger-pattern leds: trigger: pattern: Add support for hrtimer 2024-05-02 17:32:01 +01:00
sysfs-class-led-trigger-tty Documentation: leds: Update led-trigger-tty ABI description 2024-03-07 08:47:59 +00:00
sysfs-class-led-trigger-usbport
sysfs-class-leds-gt683r
sysfs-class-mei
sysfs-class-mic
sysfs-class-mtd
sysfs-class-mux
sysfs-class-net
sysfs-class-net-cdc_ncm
sysfs-class-net-dsa
sysfs-class-net-grcan
sysfs-class-net-janz-ican3
sysfs-class-net-peak_usb
sysfs-class-net-phydev net: phy: Add c45_phy_ids sysfs directory entry 2025-06-17 15:11:51 +02:00
sysfs-class-net-qmi
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-platform-profile ACPI: platform_profile: Add documentation 2025-01-17 19:16:53 +02:00
sysfs-class-power platform-drivers-x86 for v6.16-1 2025-05-29 10:19:22 -07:00
sysfs-class-power-gaokun power: supply: add Huawei Matebook E Go psy driver 2025-05-01 00:34:12 +02:00
sysfs-class-power-ltc4162l
sysfs-class-power-max1720x power: supply: max1720x: add support for reading internal and thermistor temperatures 2025-01-17 22:33:04 +01:00
sysfs-class-power-mp2629
sysfs-class-power-rt9467
sysfs-class-power-rt9471
sysfs-class-power-surface
sysfs-class-power-twl4030
sysfs-class-power-wilco
sysfs-class-powercap
sysfs-class-pwm
sysfs-class-rapidio
sysfs-class-rc
sysfs-class-rc-nuvoton
sysfs-class-regulator
sysfs-class-remoteproc
sysfs-class-rnbd-client
sysfs-class-rnbd-server
sysfs-class-rtc
sysfs-class-rtc-rtc0-device-rtc_calibration
sysfs-class-rtrs-client
sysfs-class-rtrs-server
sysfs-class-scsi_host
sysfs-class-scsi_tape
sysfs-class-spi-eeprom
sysfs-class-stm
sysfs-class-stm_source
sysfs-class-switchtec
sysfs-class-tee optee: probe RPMB device using RPMB subsystem 2024-08-26 13:16:20 +02:00
sysfs-class-thermal
sysfs-class-typec usb: typec: Add attribute file showing the USB Modes of the partner 2024-10-17 08:41:45 +02:00
sysfs-class-usb_power_delivery
sysfs-class-usb_role usb: roles: Link the switch to its connector 2024-02-17 17:02:42 +01:00
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 docs: ABI: Fix spelling mistake in pretimeout_avaialable_governors 2024-11-07 11:21:25 +01:00
sysfs-class-zram
sysfs-dev
sysfs-devices
sysfs-devices-consumer
sysfs-devices-coredump
sysfs-devices-edac
sysfs-devices-firmware_node
sysfs-devices-lpss_ltr
sysfs-devices-mapping
sysfs-devices-memory Document/kexec: generalize crash hotplug description 2024-09-01 20:43:37 -07:00
sysfs-devices-mmc
sysfs-devices-online Documentation/ABI: Fix typos 2023-08-18 11:28:40 -06:00
sysfs-devices-physical_location
sysfs-devices-platform-_UDC_-gadget
sysfs-devices-platform-ACPI-TAD
sysfs-devices-platform-docg3
sysfs-devices-platform-dock
sysfs-devices-platform-ipmi
sysfs-devices-platform-kunpeng_hccs soc: hisilicon: kunpeng_hccs: Support low power feature for the specified HCCS type 2024-10-14 08:54:51 +00:00
sysfs-devices-platform-sh_mobile_lcdc_fb
sysfs-devices-platform-soc-ipa
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 Merge branches 'pm-misc' and 'pm-tools' 2025-07-22 18:07:11 +02:00
sysfs-devices-power_resources_D0 ACPI / PM: Expose lists of device power resources to user space 2013-01-25 21:51:32 +01:00
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
sysfs-devices-resource_in_use
sysfs-devices-soc
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/bugs: Add a Transient Scheduler Attacks mitigation 2025-06-17 17:17:02 +02:00
sysfs-devices-system-ibm-rtl
sysfs-devices-system-xen_cpu
sysfs-devices-vfio-dev
sysfs-devices-virtual-misc-tdx_guest virt: tdx-guest: Expose TDX MRs as sysfs attributes 2025-05-08 19:17:43 -07:00
sysfs-devices-waiting_for_supplier
sysfs-devices-xenbus
sysfs-driver-altera-cvp
sysfs-driver-amd-sfh HID: amd_sfh: Allow configuring whether HPD is enabled or disabled 2025-03-04 21:49:32 +01:00
sysfs-driver-aspeed-uart-routing
sysfs-driver-bd9571mwv-regulator
sysfs-driver-ccp
sysfs-driver-chromeos-acpi
sysfs-driver-eud
sysfs-driver-fsi-master-gpio
sysfs-driver-ge-achc
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-appletb-kbd HID: hid-appletb-kbd: Fix wrong date and kernel version in sysfs interface docs 2025-04-24 11:46:06 +02:00
sysfs-driver-hid-corsair
sysfs-driver-hid-corsair-void HID: corsair-void: Add Corsair Void headset family driver 2024-10-11 12:57:48 +02:00
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 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
sysfs-driver-input-exc3000
sysfs-driver-intc_sar
sysfs-driver-intel-i915-hwmon drm/i915/hwmon: expose package temperature 2024-09-13 11:21:16 +02:00
sysfs-driver-intel-m10-bmc fpga: m10bmc-sec: change contact for secure update driver 2025-04-25 10:36:42 +08:00
sysfs-driver-intel-m10-bmc-sec-update fpga: m10bmc-sec: change contact for secure update driver 2025-04-25 10:36:42 +08:00
sysfs-driver-intel-rapid-start
sysfs-driver-intel-xe-hwmon drm/xe/hwmon: Move card reactive critical power under channel card 2025-06-05 18:05:54 +02:00
sysfs-driver-intel_sdsi
sysfs-driver-jz4780-efuse
sysfs-driver-panfrost-profiling ABI: sysfs-driver-panfrost-profiling: fix indentation problem 2024-03-28 15:34:39 +00:00
sysfs-driver-panthor-profiling drm/panthor: add sysfs knob for enabling job profiling 2024-10-02 10:55:17 +02:00
sysfs-driver-pciback
sysfs-driver-ppi
sysfs-driver-qaic accel/qaic: Add Reliability, Accessibility, Serviceability (RAS) 2025-05-30 09:14:35 -06:00
sysfs-driver-qat Documentation: qat: update sysfs-driver-qat for GEN6 devices 2025-06-13 17:26:17 +08:00
sysfs-driver-qat_ras crypto: qat - enable reporting of error counters for GEN6 devices 2025-05-19 13:48:19 +08:00
sysfs-driver-qat_rl crypto: qat - enable rate limiting feature for GEN6 devices 2025-07-18 20:52:00 +10:00
sysfs-driver-samsung-laptop platform/x86: samsung-laptop: Expose charge_types 2025-07-22 17:38:39 +03:00
sysfs-driver-spi-intel spi: intel: Add protected and locked attributes 2024-10-09 14:41:00 +01:00
sysfs-driver-st
sysfs-driver-tegra-fuse
sysfs-driver-toshiba_acpi
sysfs-driver-toshiba_haps
sysfs-driver-typec-displayport usb: typec: altmodes/displayport: add irq_hpd to sysfs 2025-06-24 15:39:58 +01:00
sysfs-driver-uacce
sysfs-driver-ucsi-ccg
sysfs-driver-ufs SCSI misc on 20250730 2025-07-31 12:13:53 -07:00
sysfs-driver-w1_ds28e17
sysfs-driver-w1_therm
sysfs-driver-wacom
sysfs-driver-xdata
sysfs-driver-xen-blkback
sysfs-driver-xen-blkfront
sysfs-driver-xilinx-tmr-manager
sysfs-driver-zynqmp-fpga fpga: zynqmp-fpga: Adds status interface 2023-03-09 17:33:19 +01:00
sysfs-edac-ecs EDAC: Add a Error Check Scrub control feature 2025-02-25 15:42:32 +01:00
sysfs-edac-memory-repair EDAC: Update memory repair control interface for memory sparing feature 2025-02-26 11:14:40 +01:00
sysfs-edac-scrub cxl/Documentation: Add more description about min/max scrub cycle 2025-06-10 13:54:29 -07:00
sysfs-firmware-acpi ACPI: Fix typos 2025-07-22 17:12:41 +02:00
sysfs-firmware-dmi-entries
sysfs-firmware-dmi-tables
sysfs-firmware-efi
sysfs-firmware-efi-esrt
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
sysfs-firmware-ofw
sysfs-firmware-opal-powercap Documentation: Fix the address of the linuxppc-dev mailing list 2024-05-06 22:05:18 +10:00
sysfs-firmware-opal-psr Documentation: Fix the address of the linuxppc-dev mailing list 2024-05-06 22:05:18 +10:00
sysfs-firmware-opal-sensor-groups Documentation: Fix the address of the linuxppc-dev mailing list 2024-05-06 22:05:18 +10:00
sysfs-firmware-papr-energy-scale-info Documentation: Fix the address of the linuxppc-dev mailing list 2024-05-06 22:05:18 +10:00
sysfs-firmware-qemu_fw_cfg
sysfs-firmware-sgi_uv
sysfs-firmware-turris-mox-rwtm firmware: turris-mox-rwtm: Drop ECDSA signatures via debugfs 2025-03-20 17:56:57 +01:00
sysfs-fs-erofs erofs: support to readahead dirent blocks in erofs_readdir() 2025-07-24 19:44:08 +08:00
sysfs-fs-ext4
sysfs-fs-f2fs f2fs: add gc_boost_gc_greedy sysfs node 2025-07-29 15:02:36 +00:00
sysfs-fs-nilfs2
sysfs-fs-ubifs
sysfs-fs-virtiofs virtiofs: export filesystem tags through sysfs 2024-02-23 09:40:26 +01:00
sysfs-fs-xfs xfs: grant heads track byte counts, not LSNs 2024-07-04 12:46:47 +05:30
sysfs-hypervisor-xen
sysfs-ibft
sysfs-kernel-address_bits Docs/ABI: Fix sysfs-kernel-address_bits path 2025-07-01 12:18:47 +02:00
sysfs-kernel-boot_params
sysfs-kernel-btf
sysfs-kernel-cpu_byteorder
sysfs-kernel-dmabuf-buffers
sysfs-kernel-fadump Documentation/powerpc/fadump: add additional parameter feature details 2025-02-11 10:53:00 +05:30
sysfs-kernel-fscaps
sysfs-kernel-hardlockup_count kernel/watchdog: add /sys/kernel/{hard,soft}lockup_count 2025-05-21 10:48:22 -07:00
sysfs-kernel-iommu_groups
sysfs-kernel-irq
sysfs-kernel-livepatch livepatch: Add stack_order sysfs attribute 2024-12-09 11:44:03 +01:00
sysfs-kernel-mm
sysfs-kernel-mm-cma mm/cma: export total and free number of pages for CMA areas 2025-03-16 22:06:24 -07:00
sysfs-kernel-mm-damon Docs/ABI/damon: update for refresh_ms 2025-07-24 19:12:33 -07:00
sysfs-kernel-mm-hugepages
sysfs-kernel-mm-ksm
sysfs-kernel-mm-memory-tiers
sysfs-kernel-mm-mempolicy mm/mempolicy: implement the sysfs-based weighted_interleave interface 2024-02-22 10:24:46 -08:00
sysfs-kernel-mm-mempolicy-weighted-interleave mm/mempolicy: Weighted Interleave Auto-tuning 2025-05-21 09:55:15 -07:00
sysfs-kernel-mm-numa vmscan,cgroup: apply mems_effective to reclaim 2025-05-12 23:50:33 -07:00
sysfs-kernel-mm-swap
sysfs-kernel-mm-transparent-hugepage mm: add docs for per-order mTHP counters and transhuge_page ABI 2024-05-05 17:53:36 -07:00
sysfs-kernel-oops_count
sysfs-kernel-rcu_stall_count kernel/rcu/tree_stall: add /sys/kernel/rcu_stall_count 2025-05-21 10:48:22 -07:00
sysfs-kernel-reboot docs: ABI: replace mcroce@microsoft.com with new Meta address 2025-04-17 20:10:07 -07:00
sysfs-kernel-slab doc: Move SLUB documentation to the admin guide 2025-06-18 13:06:26 +02:00
sysfs-kernel-softlockup_count kernel/watchdog: add /sys/kernel/{hard,soft}lockup_count 2025-05-21 10:48:22 -07:00
sysfs-kernel-vmcoreinfo
sysfs-kernel-warn_count
sysfs-mce
sysfs-memory-page-offline
sysfs-module
sysfs-nvmem-cells nvmem: include bit index in cell sysfs file name 2024-02-14 16:28:16 +01:00
sysfs-ocfs2
sysfs-platform-alienware-wmi Documentation: ABI: Add sysfs platform and debugfs ABI documentation for alienware-wmi 2025-04-11 13:10:21 +03:00
sysfs-platform-asus-laptop
sysfs-platform-asus-wmi platform/x86: asus-wmi: Add support for MCU powersave 2024-04-08 18:30:27 +02:00
sysfs-platform-at91
sysfs-platform-brcmstb-gisb-arb
sysfs-platform-brcmstb-memc
sysfs-platform-chipidea-usb-otg
sysfs-platform-chipidea-usb2
sysfs-platform-dell-laptop
sysfs-platform-dell-privacy-wmi Documentation: ABI: Update WMI device paths in ABI docs 2025-06-13 12:33:31 +03:00
sysfs-platform-dell-smbios
sysfs-platform-dell-wmi-ddv
sysfs-platform-dfl-fme
sysfs-platform-dfl-port
sysfs-platform-dptf
sysfs-platform-eeepc-laptop
sysfs-platform-hidma
sysfs-platform-hidma-mgmt
sysfs-platform-i2c-demux-pinctrl
sysfs-platform-ideapad-laptop platform/x86: ideapad: Expose charge_types 2025-06-11 11:29:06 +03:00
sysfs-platform-intel-ifs
sysfs-platform-intel-pmc
sysfs-platform-intel-wmi-sbl-fw-update Documentation: ABI: Update WMI device paths in ABI docs 2025-06-13 12:33:31 +03:00
sysfs-platform-intel-wmi-thunderbolt Documentation: ABI: Update WMI device paths in ABI docs 2025-06-13 12:33:31 +03:00
sysfs-platform-kim
sysfs-platform-lg-laptop
sysfs-platform-mellanox-bootctl mlxbf-bootctl: Support sysfs entries for RTC battery status 2025-02-03 14:57:27 +02:00
sysfs-platform-mellanox-pmc Documentation/ABI: Add new sysfs field to sysfs-platform-mellanox-pmc 2025-01-15 16:26:36 +02:00
sysfs-platform-msi-laptop
sysfs-platform-oxp ABI: testing: sysfs-class-oxp: add tt_led attribute documentation 2025-04-30 14:05:29 +03:00
sysfs-platform-phy-rcar-gen3-usb2
sysfs-platform-power-on-reason
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
sysfs-platform-tahvo-usb
sysfs-platform-ts5500
sysfs-platform-twl4030-usb
sysfs-platform-usbip-vudc
sysfs-platform-wilco-ec
sysfs-platform_profile Documentation: Add documentation about class interface for platform profiles 2024-12-10 19:18:22 +02:00
sysfs-power PM: docs: Use my kernel.org address in ABI docs and DT bindings 2025-07-21 12:55:29 +02:00
sysfs-pps
sysfs-pps-gen Documentation ABI: add PPS generators documentation 2025-01-08 13:18:09 +01:00
sysfs-pps-gen-tio ABI: pps: Add ABI documentation for Intel TIO 2025-02-21 10:46:49 +01:00
sysfs-profiling
sysfs-ptp
sysfs-secvar powerpc/secvar: Expose secvars relevant to the key management mode 2025-07-09 09:16:17 +05:30
sysfs-timecard docs: ABI: update OCP TimeCard sysfs entries 2024-09-03 15:37:48 +02:00
sysfs-tty
sysfs-uevent
usb-charger-uevent
usb-uevent