linux-stable/Documentation/ABI/testing
Linus Torvalds d3cf405133 VFIO updates for v6.1-rc1
- Prune private items from vfio_pci_core.h to a new internal header,
    fix missed function rename, and refactor vfio-pci interrupt defines.
    (Jason Gunthorpe)
 
  - Create consistent naming and handling of ioctls with a function per
    ioctl for vfio-pci and vfio group handling, use proper type args
    where available. (Jason Gunthorpe)
 
  - Implement a set of low power device feature ioctls allowing userspace
    to make use of power states such as D3cold where supported.
    (Abhishek Sahu)
 
  - Remove device counter on vfio groups, which had restricted the page
    pinning interface to singleton groups to account for limitations in
    the type1 IOMMU backend.  Document usage as limited to emulated IOMMU
    devices, ie. traditional mdev devices where this restriction is
    consistent.  (Jason Gunthorpe)
 
  - Correct function prefix in hisi_acc driver incurred during previous
    refactoring. (Shameer Kolothum)
 
  - Correct typo and remove redundant warning triggers in vfio-fsl driver.
    (Christophe JAILLET)
 
  - Introduce device level DMA dirty tracking uAPI and implementation in
    the mlx5 variant driver (Yishai Hadas & Joao Martins)
 
  - Move much of the vfio_device life cycle management into vfio core,
    simplifying and avoiding duplication across drivers.  This also
    facilitates adding a struct device to vfio_device which begins the
    introduction of device rather than group level user support and fills
    a gap allowing userspace identify devices as vfio capable without
    implicit knowledge of the driver. (Kevin Tian & Yi Liu)
 
  - Split vfio container handling to a separate file, creating a more
    well defined API between the core and container code, masking IOMMU
    backend implementation from the core, allowing for an easier future
    transition to an iommufd based implementation of the same.
    (Jason Gunthorpe)
 
  - Attempt to resolve race accessing the iommu_group for a device
    between vfio releasing DMA ownership and removal of the device from
    the IOMMU driver.  Follow-up with support to allow vfio_group to
    exist with NULL iommu_group pointer to support existing userspace
    use cases of holding the group file open.  (Jason Gunthorpe)
 
  - Fix error code and hi/lo register manipulation issues in the hisi_acc
    variant driver, along with various code cleanups. (Longfang Liu)
 
  - Fix a prior regression in GVT-g group teardown, resulting in
    unreleased resources. (Jason Gunthorpe)
 
  - A significant cleanup and simplification of the mdev interface,
    consolidating much of the open coded per driver sysfs interface
    support into the mdev core. (Christoph Hellwig)
 
  - Simplification of tracking and locking around vfio_groups that
    fall out from previous refactoring. (Jason Gunthorpe)
 
  - Replace trivial open coded f_ops tests with new helper.
    (Alex Williamson)
 -----BEGIN PGP SIGNATURE-----
 
 iQJPBAABCAA5FiEEQvbATlQL0amee4qQI5ubbjuwiyIFAmNGz2AbHGFsZXgud2ls
 bGlhbXNvbkByZWRoYXQuY29tAAoJECObm247sIsiatYQAI+7bFjVsTKwCnWUhp/A
 WnFmLpnh/OsBIYiXRbXGZBgIO4iPmMyFkxqjnv6e8H1WnKhLbuPy/xCaAvPrtI8b
 YKCpzdrDnfrPfB4+0cyGLJx15Jqd3sOZy097kl2lQJTscELTjJxTl0uB/Fbf/s38
 t1K2nIhBm+sGK3rTf3JjY4Jc7vDbwX7HQt6rUVEbd3NoyLJV1T/HdeSgwSMdyiED
 WwkRZ0z/vU0hEDk5wk1ZyltkiUzdCSws3C8T0J39xRObPLHR1vYgKO8aeZhfQb4p
 luD1fzGRMt3JinSXCPPm5HfADXq2Rozx7Y7a454fvCa7lpX4MNAgaQdfIzI64lZj
 cMgSYAIskVq4vxCkO4bKec4FYrzJoxBMJwiXZvOZ4mF5SL4UIDwerMqQTA3fvtQ+
 puS6x+/DF9XXHrEewEX7teg6QYPQueneSS+fWeFpMGzDXSjdQB6qV+rMWS297t+4
 1KyITxkOxcZQ4+j1OLPGtxsRLKtWApawoNTpRMlaD+hSExxHLbUmKexOLXzuAoVP
 nhbjud+jzEbpCnwps24Og/iEBdRYJcl2KwEeSRPI856YRDrNa9jPtiDlsAtKZOK2
 gJnOixSss6R+wgVVYIyMDZ8tsvO+UDQruvqQ2kFku1FOlO86pvwD6UUVuTVosdNc
 fktw6Dx90N3fdb/o8jjAjssx
 =Z8+P
 -----END PGP SIGNATURE-----

Merge tag 'vfio-v6.1-rc1' of https://github.com/awilliam/linux-vfio

Pull VFIO updates from Alex Williamson:

 - Prune private items from vfio_pci_core.h to a new internal header,
   fix missed function rename, and refactor vfio-pci interrupt defines
   (Jason Gunthorpe)

 - Create consistent naming and handling of ioctls with a function per
   ioctl for vfio-pci and vfio group handling, use proper type args
   where available (Jason Gunthorpe)

 - Implement a set of low power device feature ioctls allowing userspace
   to make use of power states such as D3cold where supported (Abhishek
   Sahu)

 - Remove device counter on vfio groups, which had restricted the page
   pinning interface to singleton groups to account for limitations in
   the type1 IOMMU backend. Document usage as limited to emulated IOMMU
   devices, ie. traditional mdev devices where this restriction is
   consistent (Jason Gunthorpe)

 - Correct function prefix in hisi_acc driver incurred during previous
   refactoring (Shameer Kolothum)

 - Correct typo and remove redundant warning triggers in vfio-fsl driver
   (Christophe JAILLET)

 - Introduce device level DMA dirty tracking uAPI and implementation in
   the mlx5 variant driver (Yishai Hadas & Joao Martins)

 - Move much of the vfio_device life cycle management into vfio core,
   simplifying and avoiding duplication across drivers. This also
   facilitates adding a struct device to vfio_device which begins the
   introduction of device rather than group level user support and fills
   a gap allowing userspace identify devices as vfio capable without
   implicit knowledge of the driver (Kevin Tian & Yi Liu)

 - Split vfio container handling to a separate file, creating a more
   well defined API between the core and container code, masking IOMMU
   backend implementation from the core, allowing for an easier future
   transition to an iommufd based implementation of the same (Jason
   Gunthorpe)

 - Attempt to resolve race accessing the iommu_group for a device
   between vfio releasing DMA ownership and removal of the device from
   the IOMMU driver. Follow-up with support to allow vfio_group to exist
   with NULL iommu_group pointer to support existing userspace use cases
   of holding the group file open (Jason Gunthorpe)

 - Fix error code and hi/lo register manipulation issues in the hisi_acc
   variant driver, along with various code cleanups (Longfang Liu)

 - Fix a prior regression in GVT-g group teardown, resulting in
   unreleased resources (Jason Gunthorpe)

 - A significant cleanup and simplification of the mdev interface,
   consolidating much of the open coded per driver sysfs interface
   support into the mdev core (Christoph Hellwig)

 - Simplification of tracking and locking around vfio_groups that fall
   out from previous refactoring (Jason Gunthorpe)

 - Replace trivial open coded f_ops tests with new helper (Alex
   Williamson)

* tag 'vfio-v6.1-rc1' of https://github.com/awilliam/linux-vfio: (77 commits)
  vfio: More vfio_file_is_group() use cases
  vfio: Make the group FD disassociate from the iommu_group
  vfio: Hold a reference to the iommu_group in kvm for SPAPR
  vfio: Add vfio_file_is_group()
  vfio: Change vfio_group->group_rwsem to a mutex
  vfio: Remove the vfio_group->users and users_comp
  vfio/mdev: add mdev available instance checking to the core
  vfio/mdev: consolidate all the description sysfs into the core code
  vfio/mdev: consolidate all the available_instance sysfs into the core code
  vfio/mdev: consolidate all the name sysfs into the core code
  vfio/mdev: consolidate all the device_api sysfs into the core code
  vfio/mdev: remove mtype_get_parent_dev
  vfio/mdev: remove mdev_parent_dev
  vfio/mdev: unexport mdev_bus_type
  vfio/mdev: remove mdev_from_dev
  vfio/mdev: simplify mdev_type handling
  vfio/mdev: embedd struct mdev_parent in the parent data structure
  vfio/mdev: make mdev.h standalone includable
  drm/i915/gvt: simplify vgpu configuration management
  drm/i915/gvt: fix a memory leak in intel_gvt_init_vgpu_types
  ...
2022-10-12 14:46:48 -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-usb-gadget docs: typo fixes in Documentation/ABI/ 2021-05-13 09:13:25 -06: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-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: Optionally determine bInterval for HS and SS 2022-01-31 14:26:18 +01:00
configfs-usb-gadget-uvc usb: gadget: uvc: allow changing interface name via configfs 2022-04-21 18:14:34 +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-driver-genwqe docs: typo fixes in Documentation/ABI/ 2021-05-13 09:13:25 -06:00
debugfs-driver-habanalabs habanalabs: expose only valid debugfs nodes 2022-07-12 09:09:31 +03:00
debugfs-ec
debugfs-hisi-hpre Documentation: update debugfs doc for Hisilicon HPRE 2022-04-15 16:34:29 +08:00
debugfs-hisi-sec Documentation: update debugfs doc for Hisilicon SEC 2022-04-15 16:34:29 +08:00
debugfs-hisi-zip Documentation: update debugfs doc for Hisilicon ZIP 2022-04-15 16:34:29 +08:00
debugfs-hyperv
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
debugfs-pktcdvd
debugfs-turris-mox-rwtm treewide: change my e-mail address, fix my name 2021-04-09 14:54:23 -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 ima: support fs-verity file digest based version 3 signatures 2022-05-05 17:41:51 -04:00
ppc-memtrace
procfs-attr-current
procfs-attr-exec
procfs-attr-prev
procfs-diskstats
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 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
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-coresight-devices-cti
sysfs-bus-coresight-devices-etb10
sysfs-bus-coresight-devices-etm3x
sysfs-bus-coresight-devices-etm4x coresight: etm4x: docs: Add documentation for 'ts_source' sysfs interface 2022-08-26 13:38:35 -06:00
sysfs-bus-coresight-devices-funnel
sysfs-bus-coresight-devices-stm
sysfs-bus-coresight-devices-tmc
sysfs-bus-coresight-devices-trbe Documentation: coresight: trbe: Sysfs ABI description 2021-04-06 16:05:38 -06:00
sysfs-bus-counter Documentation: ABI: sysfs-bus-counter: add frequency & num_overflows items 2022-09-30 14:32:35 +02:00
sysfs-bus-css
sysfs-bus-cxl cxl/hdm: Commit decoder state to hardware 2022-07-25 12:18:07 -07:00
sysfs-bus-dfl
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-caps docs: ABI: sysfs-bus-event_source-devices: Document sysfs caps entry for PMU 2022-07-18 10:39:54 +10:00
sysfs-bus-event_source-devices-dfl_fme
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
sysfs-bus-event_source-devices-hv_24x7
sysfs-bus-event_source-devices-hv_gpci
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 docs: ABI: testing: Document the SBEFIFO timeout interface 2021-10-22 09:54:33 +10:30
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-i3c
sysfs-bus-iio iio: document "serialnumber" sysfs attribute 2022-09-21 18:42:56 +01:00
sysfs-bus-iio-accel-adxl372
sysfs-bus-iio-accel-bmc150
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-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 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-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 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
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
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 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
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 iio:ABI docs: Combine the two instances of docs for sensor_sensitivity 2021-03-25 19:13:49 +00: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 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: Document sysfs event format entries for nvdimm pmu 2022-03-09 17:51:03 -08:00
sysfs-bus-optee-devices
sysfs-bus-papr-pmem powerpc/papr_scm: Implement initial support for injecting smart errors 2022-02-16 23:10:47 +11:00
sysfs-bus-pci PCI: Expose PCIe Resizable BAR support via sysfs 2022-10-05 12:21:02 -05:00
sysfs-bus-pci-devices-aer_stats
sysfs-bus-pci-devices-catpt
sysfs-bus-pci-devices-cciss
sysfs-bus-pci-devices-pvpanic misc/pvpanic: add PCI driver 2021-03-28 14:57:11 +02:00
sysfs-bus-pci-drivers-ehci_hcd
sysfs-bus-pci-drivers-janz-cmodio
sysfs-bus-pci-drivers-xhci_hcd
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-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: add initial sysfs support 2021-06-15 23:18:32 +05:30
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 thunderbolt: Fix spelling mistake "simultaneusly" -> "simultaneously" 2022-09-07 09:09:46 +03:00
sysfs-bus-typec
sysfs-bus-umc
sysfs-bus-usb usb: hub: port: add sysfs entry to switch port power 2022-06-12 06:49:46 +02:00
sysfs-bus-usb-devices-usbsevseg
sysfs-bus-usb-lvstest
sysfs-bus-vdpa vdpa: add driver_override support 2022-01-14 18:50:52 -05:00
sysfs-bus-vfio-mdev
sysfs-bus-vmbus
sysfs-c2port
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
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
sysfs-class-chromeos-driver-cros-ec-lightbar
sysfs-class-chromeos-driver-cros-ec-vbc
sysfs-class-cxl Documentation: Fix typo in testing/sysfs-class-cxl 2022-05-04 19:37:45 +10: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
sysfs-class-fc_remote_ports
sysfs-class-firmware firmware_loader: Add sysfs nodes to monitor fw_upload 2022-04-26 12:35:55 +02:00
sysfs-class-firmware-attributes Documentation/ABI: sysfs-class-firmware-attributes: Misc. cleanups 2022-04-04 15:50:23 +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 hwmon: (pmbus) Move pec attribute to I2C device 2022-07-13 08:38:17 -07:00
sysfs-class-intel_pmt
sysfs-class-iommu
sysfs-class-iommu-amd-iommu
sysfs-class-iommu-intel-iommu
sysfs-class-lcd
sysfs-class-led
sysfs-class-led-driver-lm3533
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
sysfs-class-led-multicolor
sysfs-class-led-trigger-netdev
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
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
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
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
sysfs-class-net-statistics
sysfs-class-ocxl
sysfs-class-pktcdvd
sysfs-class-power docs: ABI: charge_control_end_threshold may not support all values 2022-09-09 21:58:16 +02:00
sysfs-class-power-ltc4162l power/supply: Add ltc4162-l-charger 2021-01-13 00:46:34 +01:00
sysfs-class-power-mp2629
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
sysfs-class-power-wilco
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
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
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 thermal: fix Documentation bullet list warning 2022-01-25 18:31:29 +01: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: typec: Separate USB Power Delivery from USB Type-C 2022-06-12 06:49:47 +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-vduse Docs/ABI/testing: Add VDUSE sysfs interface ABI document 2022-06-27 16:42:52 +02:00
sysfs-class-wakeup
sysfs-class-watchdog
sysfs-class-zram
sysfs-dev
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-hisi_ptt docs: trace: Add HiSilicon PTT device driver documentation 2022-09-08 18:41:22 -06:00
sysfs-devices-lpss_ltr
sysfs-devices-mapping
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-physical_location driver core: Add sysfs support for physical location of a device 2022-04-27 09:51:57 +02:00
sysfs-devices-platform-_UDC_-gadget
sysfs-devices-platform-ACPI-TAD sysfs docs: ABI: Fix typo in comment 2022-07-28 16:32:33 +02:00
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-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
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 There's not a huge amount of activity in the docs tree this time around, 2022-10-03 10:23:32 -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 xen/events: add per-xenbus device event statistics and settings 2021-02-23 10:07:11 -06:00
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 - Export PSP security bits to userspace 2022-04-08 16:26:43 +08:00
sysfs-driver-chromeos-acpi platform/chrome: Use imperative mood for ChromeOS ACPI sysfs ABI descriptions 2022-05-24 08:46:21 +08:00
sysfs-driver-eud usb: misc: eud: Add driver support for Embedded USB Debugger(EUD) 2022-02-11 12:01:02 +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
sysfs-driver-habanalabs habanalabs: fix missing info in sysfs documentation 2022-09-18 13:29:52 +03: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 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-m10-bmc-sec-update fpga: m10bmc-sec: expose max10 canceled keys in sysfs 2022-06-08 17:04:38 +08:00
sysfs-driver-intel-rapid-start
sysfs-driver-intel_sdsi Documentation/ABI: sysfs-driver-intel_sdsi: Fix sphinx warnings 2022-04-04 15:50:23 +02:00
sysfs-driver-jz4780-efuse
sysfs-driver-pciback
sysfs-driver-ppi
sysfs-driver-qat Documentation: qat: rewrite description 2022-07-22 16:22:03 +08:00
sysfs-driver-samsung-laptop
sysfs-driver-st
sysfs-driver-tegra-fuse
sysfs-driver-toshiba_acpi
sysfs-driver-toshiba_haps
sysfs-driver-typec-displayport
sysfs-driver-uacce
sysfs-driver-ucsi-ccg
sysfs-driver-ufs scsi: ufs: core: Print UFSHCD capabilities in controller's sysfs node 2022-09-06 22:18:06 -04:00
sysfs-driver-w1_ds28e17
sysfs-driver-w1_therm
sysfs-driver-wacom
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 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-firmware-acpi ACPI: tables: introduce support for FPDT table 2021-01-29 19:24:13 +01:00
sysfs-firmware-dmi-entries
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-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 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 Documentation/ABI: sysfs-fs-erofs: Fix Sphinx errors 2022-04-15 23:51:54 +08:00
sysfs-fs-ext4
sysfs-fs-f2fs f2fs: introduce cp_status sysfs entry 2022-10-04 13:31:44 -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
sysfs-ibft
sysfs-kernel-boot_params
sysfs-kernel-btf
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: Expose DMA domain strictness via sysfs 2021-08-18 13:27:49 +02: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 mm: cma: support sysfs 2021-05-05 11:27:24 -07:00
sysfs-kernel-mm-damon Docs/{ABI,admin-guide}/damon: Update for 'state' sysfs file input keyword, 'commit' 2022-05-13 07:20:09 -07:00
sysfs-kernel-mm-hugepages
sysfs-kernel-mm-ksm docs: rename Documentation/vm to Documentation/mm 2022-06-27 12:52:53 -07:00
sysfs-kernel-mm-memory-tiers mm/demotion: expose memory tier details via sysfs 2022-09-26 19:46:13 -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-reboot
sysfs-kernel-slab docs: rename Documentation/vm to Documentation/mm 2022-06-27 12:52:53 -07:00
sysfs-kernel-vmcoreinfo
sysfs-mce x86/mce: Remove the tolerance level control 2022-02-23 11:09:25 +01: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
sysfs-platform-asus-wmi platform/x86: asus-wmi: Support the hardware GPU MUX on some laptops 2022-08-25 16:23:53 +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
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
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
sysfs-platform-hidma-mgmt
sysfs-platform-i2c-demux-pinctrl
sysfs-platform-ideapad-laptop Documentation/ABI: sysfs-platform-ideapad-laptop: conservation_mode attribute 2021-02-04 10:21:50 +01:00
sysfs-platform-intel-ifs platform/x86/intel/ifs: add ABI documentation for IFS 2022-05-12 15:35:29 +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 sfi: Remove framework for deprecated firmware 2021-02-15 20:09:46 +01: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
sysfs-platform-msi-laptop
sysfs-platform-phy-rcar-gen3-usb2
sysfs-platform-renesas_usb3
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
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 Documentation/ABI: correct possessive "its" typos 2022-09-27 13:21:43 -06: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
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
sysfs-wusb_cbaf
usb-charger-uevent
usb-uevent