linux-stable/Documentation/ABI/testing
Linus Torvalds 8096acd744 Networking fixes for 5.14-rc2, including fixes from bpf and netfilter.
Current release - regressions:
 
  - sock: fix parameter order in sock_setsockopt()
 
 Current release - new code bugs:
 
  - netfilter: nft_last:
      - fix incorrect arithmetic when restoring last used
      - honor NFTA_LAST_SET on restoration
 
 Previous releases - regressions:
 
  - udp: properly flush normal packet at GRO time
 
  - sfc: ensure correct number of XDP queues; don't allow enabling the
         feature if there isn't sufficient resources to Tx from any CPU
 
  - dsa: sja1105: fix address learning getting disabled on the CPU port
 
  - mptcp: addresses a rmem accounting issue that could keep packets
         in subflow receive buffers longer than necessary, delaying
 	MPTCP-level ACKs
 
  - ip_tunnel: fix mtu calculation for ETHER tunnel devices
 
  - do not reuse skbs allocated from skbuff_fclone_cache in the napi
    skb cache, we'd try to return them to the wrong slab cache
 
  - tcp: consistently disable header prediction for mptcp
 
 Previous releases - always broken:
 
  - bpf: fix subprog poke descriptor tracking use-after-free
 
  - ipv6:
       - allocate enough headroom in ip6_finish_output2() in case
         iptables TEE is used
       - tcp: drop silly ICMPv6 packet too big messages to avoid
         expensive and pointless lookups (which may serve as a DDOS
 	vector)
       - make sure fwmark is copied in SYNACK packets
       - fix 'disable_policy' for forwarded packets (align with IPv4)
 
  - netfilter: conntrack: do not renew entry stuck in tcp SYN_SENT state
 
  - netfilter: conntrack: do not mark RST in the reply direction coming
       after SYN packet for an out-of-sync entry
 
  - mptcp: cleanly handle error conditions with MP_JOIN and syncookies
 
  - mptcp: fix double free when rejecting a join due to port mismatch
 
  - validate lwtstate->data before returning from skb_tunnel_info()
 
  - tcp: call sk_wmem_schedule before sk_mem_charge in zerocopy path
 
  - mt76: mt7921: continue to probe driver when fw already downloaded
 
  - bonding: fix multiple issues with offloading IPsec to (thru?) bond
 
  - stmmac: ptp: fix issues around Qbv support and setting time back
 
  - bcmgenet: always clear wake-up based on energy detection
 
 Misc:
 
  - sctp: move 198 addresses from unusable to private scope
 
  - ptp: support virtual clocks and timestamping
 
  - openvswitch: optimize operation for key comparison
 -----BEGIN PGP SIGNATURE-----
 
 iQIzBAABCAAdFiEE6jPA+I1ugmIBA4hXMUZtbf5SIrsFAmDu3mMACgkQMUZtbf5S
 Irsjxg//UwcPJMYFmXV+fGkEsWYe1Kf29FcUDEeANFtbltfAcIfZ0GoTbSDRnrVb
 HcYAKcm4XRx5bWWdQrQsQq/yiLbnS/rSLc7VRB+uRHWRKl3eYcaUB2rnCXsxrjGw
 wQJgOmztDCJS4BIky24iQpF/8lg7p/Gj2Ih532gh93XiYo612FrEJKkYb2/OQfYX
 GkbnZ0kL2Y1SV+bhy6aT5azvhHKM4/3eA4fHeJ2p8e2gOZ5ni0vpX0xEzdzKOCd0
 vwR/Wu3h/+2QuFYVcSsVguuM++JXACG8MAS/Tof78dtNM4a3kQxzqeh5Bv6IkfTu
 rokENLq4pjNRy+nBAOeQZj8Jd0K0kkf/PN9WMdGQtplMoFhjjV25R6PeRrV9wwPo
 peozIz2MuQo7Kfof1D+44h2foyLfdC28/Z0CvRbDpr5EHOfYynvBbrnhzIGdQp6V
 xgftKTOdgz2Djgg8HiblZund1FA44OYerddVAASrIsnSFnIz1VLVQIsfV+GLBwwc
 FawrIZ6WfIjzRSrDGOvDsbAQI47T/1jbaPJeK6XgjWkQmjEd6UtRWRZLYCxemQEw
 4HP3sWC96BOehuD8ylipVE1oFqrxCiOB/fZxezXqjo8dSX3NLdak4cCHTHoW5SuZ
 eEAxQRaBliKd+P7hoy9cZ57CAu3zUa8kijfM5QRlCAHF+zSxaPs=
 =QFnb
 -----END PGP SIGNATURE-----

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

Pull networking fixes from Jakub Kicinski.
 "Including fixes from bpf and netfilter.

  Current release - regressions:

   - sock: fix parameter order in sock_setsockopt()

  Current release - new code bugs:

   - netfilter: nft_last:
       - fix incorrect arithmetic when restoring last used
       - honor NFTA_LAST_SET on restoration

  Previous releases - regressions:

   - udp: properly flush normal packet at GRO time

   - sfc: ensure correct number of XDP queues; don't allow enabling the
     feature if there isn't sufficient resources to Tx from any CPU

   - dsa: sja1105: fix address learning getting disabled on the CPU port

   - mptcp: addresses a rmem accounting issue that could keep packets in
     subflow receive buffers longer than necessary, delaying MPTCP-level
     ACKs

   - ip_tunnel: fix mtu calculation for ETHER tunnel devices

   - do not reuse skbs allocated from skbuff_fclone_cache in the napi
     skb cache, we'd try to return them to the wrong slab cache

   - tcp: consistently disable header prediction for mptcp

  Previous releases - always broken:

   - bpf: fix subprog poke descriptor tracking use-after-free

   - ipv6:
       - allocate enough headroom in ip6_finish_output2() in case
         iptables TEE is used
       - tcp: drop silly ICMPv6 packet too big messages to avoid
         expensive and pointless lookups (which may serve as a DDOS
         vector)
       - make sure fwmark is copied in SYNACK packets
       - fix 'disable_policy' for forwarded packets (align with IPv4)

   - netfilter: conntrack:
       - do not renew entry stuck in tcp SYN_SENT state
       - do not mark RST in the reply direction coming after SYN packet
         for an out-of-sync entry

   - mptcp: cleanly handle error conditions with MP_JOIN and syncookies

   - mptcp: fix double free when rejecting a join due to port mismatch

   - validate lwtstate->data before returning from skb_tunnel_info()

   - tcp: call sk_wmem_schedule before sk_mem_charge in zerocopy path

   - mt76: mt7921: continue to probe driver when fw already downloaded

   - bonding: fix multiple issues with offloading IPsec to (thru?) bond

   - stmmac: ptp: fix issues around Qbv support and setting time back

   - bcmgenet: always clear wake-up based on energy detection

  Misc:

   - sctp: move 198 addresses from unusable to private scope

   - ptp: support virtual clocks and timestamping

   - openvswitch: optimize operation for key comparison"

* tag 'net-5.14-rc2' of git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net: (158 commits)
  net: dsa: properly check for the bridge_leave methods in dsa_switch_bridge_leave()
  sfc: add logs explaining XDP_TX/REDIRECT is not available
  sfc: ensure correct number of XDP queues
  sfc: fix lack of XDP TX queues - error XDP TX failed (-22)
  net: fddi: fix UAF in fza_probe
  net: dsa: sja1105: fix address learning getting disabled on the CPU port
  net: ocelot: fix switchdev objects synced for wrong netdev with LAG offload
  net: Use nlmsg_unicast() instead of netlink_unicast()
  octeontx2-pf: Fix uninitialized boolean variable pps
  ipv6: allocate enough headroom in ip6_finish_output2()
  net: hdlc: rename 'mod_init' & 'mod_exit' functions to be module-specific
  net: bridge: multicast: fix MRD advertisement router port marking race
  net: bridge: multicast: fix PIM hello router port marking race
  net: phy: marvell10g: fix differentiation of 88X3310 from 88X3340
  dsa: fix for_each_child.cocci warnings
  virtio_net: check virtqueue_add_sgs() return value
  mptcp: properly account bulk freed memory
  selftests: mptcp: fix case multiple subflows limited by server
  mptcp: avoid processing packet if a subflow reset
  mptcp: fix syncookie process if mptcp can not_accept new subflow
  ...
2021-07-14 09:24:32 -07:00
..
configfs-acpi docs: ABI: convert testing/configfs-acpi to ReST 2020-10-30 13:10:03 +01:00
configfs-iio docs: typo fixes in Documentation/ABI/ 2021-05-13 09:13:25 -06:00
configfs-most docs: typo fixes in Documentation/ABI/ 2021-05-13 09:13:25 -06:00
configfs-rdma_cm
configfs-spear-pcie-gadget docs: ABI: testing: make the files compatible with ReST output 2020-10-30 13:07:01 +01:00
configfs-stp-policy
configfs-stp-policy-p_sys-t
configfs-usb-gadget docs: typo fixes in Documentation/ABI/ 2021-05-13 09:13:25 -06:00
configfs-usb-gadget-acm
configfs-usb-gadget-ecm docs: ABI: Drop trailing whitespace 2020-11-13 15:03:49 -07:00
configfs-usb-gadget-eem docs: ABI: cleanup several ABI documents 2020-10-30 13:14:29 +01:00
configfs-usb-gadget-ffs
configfs-usb-gadget-hid docs: ABI: testing: make the files compatible with ReST output 2020-10-30 13:07:01 +01:00
configfs-usb-gadget-loopback docs: ABI: cleanup several ABI documents 2020-10-30 13:14:29 +01:00
configfs-usb-gadget-mass-storage docs: ABI: cleanup several ABI documents 2020-10-30 13:14:29 +01:00
configfs-usb-gadget-midi docs: ABI: cleanup several ABI documents 2020-10-30 13:14:29 +01:00
configfs-usb-gadget-ncm
configfs-usb-gadget-obex
configfs-usb-gadget-phonet
configfs-usb-gadget-printer docs: ABI: cleanup several ABI documents 2020-10-30 13:14:29 +01:00
configfs-usb-gadget-rndis docs: ABI: testing: make the files compatible with ReST output 2020-10-30 13:07:01 +01:00
configfs-usb-gadget-serial
configfs-usb-gadget-sourcesink docs: ABI: cleanup several ABI documents 2020-10-30 13:14:29 +01:00
configfs-usb-gadget-subset docs: ABI: cleanup several ABI documents 2020-10-30 13:14:29 +01:00
configfs-usb-gadget-tcm
configfs-usb-gadget-uac1 docs: ABI: testing: make the files compatible with ReST output 2020-10-30 13:07:01 +01:00
configfs-usb-gadget-uac1_legacy
configfs-usb-gadget-uac2 usb: gadget: u_audio: add real feedback implementation 2021-06-09 11:26:49 +02:00
configfs-usb-gadget-uvc docs: typo fixes in Documentation/ABI/ 2021-05-13 09:13:25 -06:00
debugfs-cec-error-inj docs: ABI: cleanup several ABI documents 2020-10-30 13:14:29 +01:00
debugfs-cros-ec
debugfs-driver-genwqe docs: typo fixes in Documentation/ABI/ 2021-05-13 09:13:25 -06:00
debugfs-driver-habanalabs Char / Misc driver updates for 5.14-rc1 2021-07-05 13:42:16 -07:00
debugfs-ec docs: ABI: testing: make the files compatible with ReST output 2020-10-30 13:07:01 +01:00
debugfs-hisi-hpre crypto: hisilicon/qm - change debugfs file name from qm_regs to regs 2020-05-23 00:08:23 +10:00
debugfs-hisi-sec crypto: hisilicon/qm - change debugfs file name from qm_regs to regs 2020-05-23 00:08:23 +10:00
debugfs-hisi-zip crypto: hisilicon/qm - change debugfs file name from qm_regs to regs 2020-05-23 00:08:23 +10: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 docs: ABI: cleanup several ABI documents 2020-10-30 13:14:29 +01:00
debugfs-pktcdvd docs: ABI: cleanup several ABI documents 2020-10-30 13:14:29 +01:00
debugfs-turris-mox-rwtm treewide: change my e-mail address, fix my name 2021-04-09 14:54:23 -07:00
debugfs-wilco-ec docs: ABI: cleanup several ABI documents 2020-10-30 13:14:29 +01:00
dell-smbios-wmi docs: ABI: cleanup several ABI documents 2020-10-30 13:14:29 +01:00
dev-kmsg docs: ABI: testing: make the files compatible with ReST output 2020-10-30 13:07:01 +01:00
devlink-resource-mlxsw
evm evm: Deprecate EVM_ALLOW_METADATA_WRITES 2021-06-01 12:30:51 -04:00
gpio-cdev docs: ABI: cleanup several ABI documents 2020-10-30 13:14:29 +01:00
ima_policy A handful of late-arriving documentation fixes, nothing all that notable. 2021-02-26 14:21:18 -08:00
ppc-memtrace
procfs-attr-current docs: ABI: ABI documentation for procfs attribute files used by multiple LSMs 2020-11-13 15:02:19 -07:00
procfs-attr-exec docs: ABI: ABI documentation for procfs attribute files used by multiple LSMs 2020-11-13 15:02:19 -07:00
procfs-attr-prev docs: ABI: ABI documentation for procfs attribute files used by multiple LSMs 2020-11-13 15:02:19 -07:00
procfs-diskstats docs: ABI: cleanup several ABI documents 2020-10-30 13:14:29 +01:00
procfs-smaps_rollup docs: ABI: cleanup several ABI documents 2020-10-30 13:14:29 +01:00
pstore docs: ABI: cleanup several ABI documents 2020-10-30 13:14:29 +01:00
rtc-cdev
sysfs-ata
sysfs-block docs: ABI: testing: make the files compatible with ReST output 2020-10-30 13:07:01 +01:00
sysfs-block-aoe
sysfs-block-bcache
sysfs-block-device docs: ABI: testing: make the files compatible with ReST output 2020-10-30 13:07:01 +01: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 docs: ABI: cleanup several ABI documents 2020-10-30 13:14:29 +01:00
sysfs-bus-amba
sysfs-bus-bcma
sysfs-bus-coresight-devices-cti docs: ABI: change read/write attributes 2020-10-30 13:14:31 +01:00
sysfs-bus-coresight-devices-etb10 docs: ABI: change read/write attributes 2020-10-30 13:14:31 +01:00
sysfs-bus-coresight-devices-etm3x docs: ABI: change read/write attributes 2020-10-30 13:14:31 +01:00
sysfs-bus-coresight-devices-etm4x coresight: etm4x: Expose trcdevarch via sysfs 2021-02-04 17:00:33 +01:00
sysfs-bus-coresight-devices-funnel
sysfs-bus-coresight-devices-stm docs: ABI: change read/write attributes 2020-10-30 13:14:31 +01:00
sysfs-bus-coresight-devices-tmc docs: ABI: change read/write attributes 2020-10-30 13:14:31 +01:00
sysfs-bus-coresight-devices-trbe Documentation: coresight: trbe: Sysfs ABI description 2021-04-06 16:05:38 -06:00
sysfs-bus-counter docs: counter: Consolidate Counter sysfs attributes documentation 2021-06-09 15:55:15 +01:00
sysfs-bus-css docs: ABI: cleanup several ABI documents 2020-10-30 13:14:29 +01:00
sysfs-bus-cxl cxl/acpi: Introduce cxl_decoder objects 2021-06-09 18:02:39 -07:00
sysfs-bus-dfl docs: ABI: cleanup several ABI documents 2020-10-30 13:14:29 +01:00
sysfs-bus-dfl-devices-emif memory: dfl-emif: add the DFL EMIF private feature driver 2021-01-07 15:21:27 +01:00
sysfs-bus-dfl-devices-n3000-nios fpga: dfl: add support for N3000 Nios private feature 2021-01-07 15:21:27 +01:00
sysfs-bus-event_source-devices-dfl_fme docs: ABI: fix syntax to be parsed using ReST notation 2020-10-30 13:12:39 +01:00
sysfs-bus-event_source-devices-dsa dmaengine: idxd: Add IDXD performance monitor support 2021-04-25 21:46:12 +05:30
sysfs-bus-event_source-devices-events
sysfs-bus-event_source-devices-format docs: ABI: testing: make the files compatible with ReST output 2020-10-30 13:07:01 +01:00
sysfs-bus-event_source-devices-hv_24x7 docs: ABI: cleanup several ABI documents 2020-10-30 13:14:29 +01:00
sysfs-bus-event_source-devices-hv_gpci docs: ABI: cleanup several ABI documents 2020-10-30 13:14:29 +01:00
sysfs-bus-fcoe docs: ABI: cleanup several ABI documents 2020-10-30 13:14:29 +01:00
sysfs-bus-fsi docs: typo fixes in Documentation/ABI/ 2021-05-13 09:13:25 -06:00
sysfs-bus-fsl-mc docs: ABI: cleanup several ABI documents 2020-10-30 13:14:29 +01:00
sysfs-bus-hsi
sysfs-bus-i2c-devices-bq32k
sysfs-bus-i2c-devices-fsa9480 docs: ABI: cleanup several ABI documents 2020-10-30 13:14:29 +01:00
sysfs-bus-i2c-devices-hm6352
sysfs-bus-i2c-devices-lm3533
sysfs-bus-i2c-devices-pca954x docs: ABI: testing: make the files compatible with ReST output 2020-10-30 13:07:01 +01:00
sysfs-bus-i3c docs: ABI: cleanup several ABI documents 2020-10-30 13:14:29 +01:00
sysfs-bus-iio Staging / IIO driver patches for 5.14-rc1 2021-07-05 14:01:53 -07:00
sysfs-bus-iio-accel-adxl372 iio: accel: adxl372: Add additional trigger ABI docs 2020-09-03 19:40:56 +01:00
sysfs-bus-iio-accel-bmc150
sysfs-bus-iio-adc-ad7192
sysfs-bus-iio-adc-envelope-detector docs: ABI: testing: make the files compatible with ReST output 2020-10-30 13:07:01 +01:00
sysfs-bus-iio-adc-hi8435 docs: ABI: cleanup several ABI documents 2020-10-30 13:14:29 +01:00
sysfs-bus-iio-adc-max9611
sysfs-bus-iio-adc-mt6360 Documentation: ABI: testing: mt6360: Add ADC sysfs guideline 2020-11-08 16:20:18 +00:00
sysfs-bus-iio-adc-stm32 docs: ABI: cleanup several ABI documents 2020-10-30 13:14:29 +01:00
sysfs-bus-iio-chemical-vz89x
sysfs-bus-iio-cros-ec docs: ABI: testing: make the files compatible with ReST output 2020-10-30 13:07:01 +01:00
sysfs-bus-iio-dac-ad5766 Documentation/ABI/testing: Add documentation for AD5766 new ABI 2021-01-22 08:52:05 +00:00
sysfs-bus-iio-dac-dpot-dac
sysfs-bus-iio-dfsdm-adc-stm32 docs: ABI: testing: make the files compatible with ReST output 2020-10-30 13:07:01 +01:00
sysfs-bus-iio-distance-srf08 iio:ABI docs: Combine the two instances of docs for sensor_sensitivity 2021-03-25 19:13:49 +00:00
sysfs-bus-iio-dma-buffer
sysfs-bus-iio-frequency-ad9523 docs: ABI: cleanup several ABI documents 2020-10-30 13:14:29 +01:00
sysfs-bus-iio-frequency-adf4350
sysfs-bus-iio-frequency-adf4371 iio:ABI docs: Move specific description of out_altvoltageX_frequency to main docs. 2021-05-17 13:49:10 +01:00
sysfs-bus-iio-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 docs: ABI: cleanup several ABI documents 2020-10-30 13:14:29 +01:00
sysfs-bus-iio-light-lm3533-als iio:ABI docs: Fix issue around repeated definition of out_currentY_raw 2021-05-17 13:49:10 +01:00
sysfs-bus-iio-light-si1133
sysfs-bus-iio-light-tsl2583
sysfs-bus-iio-light-tsl2772 staging:iio:light: Move tsl2x7x ABI docs to correct location. 2020-09-16 19:11:59 +01:00
sysfs-bus-iio-magnetometer-hmc5843 docs: ABI: testing: make the files compatible with ReST output 2020-10-30 13:07:01 +01:00
sysfs-bus-iio-meas-spec
sysfs-bus-iio-mpu6050
sysfs-bus-iio-potentiometer-mcp4531
sysfs-bus-iio-proximity iio:ABI docs: Combine the two instances of docs for sensor_sensitivity 2021-03-25 19:13:49 +00:00
sysfs-bus-iio-proximity-as3935 iio:ABI docs: Combine the two instances of docs for sensor_sensitivity 2021-03-25 19:13:49 +00:00
sysfs-bus-iio-scd30 iio: chemical: scd30: add core driver 2020-06-27 14:46:44 +01:00
sysfs-bus-iio-sps30
sysfs-bus-iio-sx9310
sysfs-bus-iio-temperature-max31856 docs: ABI: testing: make the files compatible with ReST output 2020-10-30 13:07:01 +01:00
sysfs-bus-iio-timer-stm32 docs: ABI: testing: iio: stm32: remove re-introduced unsupported ABI 2020-11-13 16:42:54 +01:00
sysfs-bus-iio-trigger-sysfs
sysfs-bus-iio-vf610
sysfs-bus-intel_th-devices-gth docs: ABI: cleanup several ABI documents 2020-10-30 13:14:29 +01:00
sysfs-bus-intel_th-devices-msc docs: ABI: testing: make the files compatible with ReST output 2020-10-30 13:07:01 +01:00
sysfs-bus-intel_th-devices-pti
sysfs-bus-intel_th-output-devices
sysfs-bus-mcb
sysfs-bus-mdio
sysfs-bus-media
sysfs-bus-mei mei: add vtag support bit in client properties 2020-08-18 15:44:43 +02:00
sysfs-bus-mmc
sysfs-bus-most docs: ABI: fix syntax to be parsed using ReST notation 2020-10-30 13:12:39 +01:00
sysfs-bus-moxtet-devices treewide: change my e-mail address, fix my name 2021-04-09 14:54:23 -07:00
sysfs-bus-nfit MAINTAINERS: Move nvdimm mailing list 2021-05-12 12:37:15 -07:00
sysfs-bus-nvdimm docs: ABI: sysfs-bus-nvdimm: use the right format for ABI 2020-10-30 13:12:53 +01:00
sysfs-bus-optee-devices optee: use uuid for sysfs driver entry 2020-07-10 09:41:48 +02:00
sysfs-bus-papr-pmem powerpc/papr_scm: Make 'perf_stats' invisible if perf-stats unavailable 2021-06-25 14:47:18 +10:00
sysfs-bus-pci docs: typo fixes in Documentation/ABI/ 2021-05-13 09:13:25 -06:00
sysfs-bus-pci-devices-aer_stats docs: ABI: testing: make the files compatible with ReST output 2020-10-30 13:07:01 +01:00
sysfs-bus-pci-devices-catpt docs: ABI: cleanup several ABI documents 2020-10-30 13:14:29 +01:00
sysfs-bus-pci-devices-cciss
sysfs-bus-pci-devices-pvpanic misc/pvpanic: add PCI driver 2021-03-28 14:57:11 +02:00
sysfs-bus-pci-drivers-ehci_hcd docs: ABI: cleanup several ABI documents 2020-10-30 13:14:29 +01:00
sysfs-bus-pci-drivers-janz-cmodio
sysfs-bus-pci-drivers-xhci_hcd
sysfs-bus-platform driver core: platform: expose numa_node to users in sysfs 2020-07-10 14:14:37 +02:00
sysfs-bus-rapidio docs: ABI: testing: make the files compatible with ReST output 2020-10-30 13:07:01 +01:00
sysfs-bus-rbd docs: ABI: cleanup several ABI documents 2020-10-30 13:14:29 +01:00
sysfs-bus-rpmsg
sysfs-bus-siox docs: ABI: cleanup several ABI documents 2020-10-30 13:14:29 +01:00
sysfs-bus-soundwire-master soundwire: master: add sysfs support 2020-05-20 17:22:36 +05:30
sysfs-bus-soundwire-slave soundwire: sysfs: add slave status and device number before probe 2020-09-28 11:17:43 +05:30
sysfs-bus-spi-devices-spi-nor mtd: spi-nor: add initial sysfs support 2021-06-15 23:18:32 +05:30
sysfs-bus-thunderbolt thunderbolt: Add WRITE_ONLY and AUTHENTICATE_ONLY NVM operations for retimers 2021-06-01 10:53:32 +03:00
sysfs-bus-typec
sysfs-bus-umc
sysfs-bus-usb driver core: Move the "removable" attribute from USB to core 2021-05-27 09:36:31 +02:00
sysfs-bus-usb-devices-usbsevseg docs: ABI: testing: make the files compatible with ReST output 2020-10-30 13:07:01 +01:00
sysfs-bus-usb-lvstest
sysfs-bus-vfio-mdev docs: ABI: testing: make the files compatible with ReST output 2020-10-30 13:07:01 +01:00
sysfs-bus-vmbus
sysfs-c2port docs: ABI: sysfs-c2port: remove a duplicated entry 2020-10-30 13:14:52 +01:00
sysfs-cfq-target-latency
sysfs-class
sysfs-class-backlight docs: ABI: sysfs-class-backlight: unify ambient light zone nodes 2021-05-20 13:44:14 -06:00
sysfs-class-backlight-driver-lm3533 docs: ABI: cleanup several ABI documents 2020-10-30 13:14:29 +01:00
sysfs-class-backlight-lm3639
sysfs-class-bdi docs: ABI: cleanup several ABI documents 2020-10-30 13:14:29 +01:00
sysfs-class-bsr
sysfs-class-chromeos docs: ABI: cleanup several ABI documents 2020-10-30 13:14:29 +01:00
sysfs-class-chromeos-driver-cros-ec-lightbar
sysfs-class-chromeos-driver-cros-ec-vbc
sysfs-class-cxl docs: ABI: cleanup several ABI documents 2020-10-30 13:14:29 +01: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
sysfs-class-devlink driver core: Fix device link device name collision 2021-01-21 20:12:40 +01:00
sysfs-class-extcon docs: ABI: cleanup several ABI documents 2020-10-30 13:14:29 +01:00
sysfs-class-fc_host scsi: fc: Update documentation of sysfs nodes for FPIN stats 2020-10-26 18:06:45 -04:00
sysfs-class-fc_remote_ports scsi: fc: Update documentation of sysfs nodes for FPIN stats 2020-10-26 18:06:45 -04:00
sysfs-class-firmware-attributes platform/x86: think-lmi: Add WMI interface support on Lenovo platforms 2021-06-16 17:47:52 +02:00
sysfs-class-fpga-bridge
sysfs-class-fpga-manager docs: ABI: cleanup several ABI documents 2020-10-30 13:14:29 +01:00
sysfs-class-fpga-region
sysfs-class-gnss docs: ABI: cleanup several ABI documents 2020-10-30 13:14:29 +01:00
sysfs-class-intel_pmt platform/x86: Intel PMT Crashlog capability driver 2020-11-04 11:14:38 +00:00
sysfs-class-iommu
sysfs-class-iommu-amd-iommu
sysfs-class-iommu-intel-iommu
sysfs-class-lcd
sysfs-class-led docs: ABI: unify /sys/class/leds/<led>/brightness documentation 2020-10-30 13:14:48 +01:00
sysfs-class-led-driver-lm3533 docs: ABI: cleanup several ABI documents 2020-10-30 13:14:29 +01:00
sysfs-class-led-driver-turris-omnia treewide: change my e-mail address, fix my name 2021-04-09 14:54:23 -07:00
sysfs-class-led-flash docs: ABI: cleanup several ABI documents 2020-10-30 13:14:29 +01:00
sysfs-class-led-multicolor docs: ABI: unify /sys/class/leds/<led>/brightness documentation 2020-10-30 13:14:48 +01:00
sysfs-class-led-trigger-netdev docs: ABI: cleanup several ABI documents 2020-10-30 13:14:29 +01:00
sysfs-class-led-trigger-oneshot
sysfs-class-led-trigger-pattern docs: ABI: sysfs-class-led-trigger-pattern: remove repeat duplication 2021-05-20 13:44:14 -06:00
sysfs-class-led-trigger-tty leds: trigger: implement a tty trigger 2021-01-15 10:22:26 +01:00
sysfs-class-led-trigger-usbport docs: ABI: cleanup several ABI documents 2020-10-30 13:14:29 +01:00
sysfs-class-leds-gt683r docs: ABI: cleanup several ABI documents 2020-10-30 13:14:29 +01:00
sysfs-class-mei mei: add device kind to sysfs 2020-07-29 16:21:13 +02:00
sysfs-class-mic docs: ABI: testing: make the files compatible with ReST output 2020-10-30 13:07:01 +01:00
sysfs-class-mtd
sysfs-class-mux
sysfs-class-net net: add sysfs attribute to control napi threaded mode 2021-02-09 15:27:28 -08:00
sysfs-class-net-cdc_ncm docs: ABI: cleanup several ABI documents 2020-10-30 13:14:29 +01:00
sysfs-class-net-dsa net: dsa: allow changing the tag protocol via the "tagging" device attribute 2021-01-29 21:24:39 -08:00
sysfs-class-net-grcan
sysfs-class-net-janz-ican3
sysfs-class-net-phydev net: phy: Expose phydev::dev_flags through sysfs 2021-03-11 12:47:27 -08:00
sysfs-class-net-qmi Documentation: ABI: sysfs-class-net-qmi: document pass-through file 2021-05-03 13:40:17 -07:00
sysfs-class-net-queues
sysfs-class-net-statistics
sysfs-class-ocxl docs: ABI: fix syntax to be parsed using ReST notation 2020-10-30 13:12:39 +01:00
sysfs-class-pktcdvd docs: ABI: cleanup several ABI documents 2020-10-30 13:14:29 +01:00
sysfs-class-power docs: ABI: sysfs-class-power: unify duplicated properties 2020-10-30 13:14:50 +01:00
sysfs-class-power-ltc4162l power/supply: Add ltc4162-l-charger 2021-01-13 00:46:34 +01:00
sysfs-class-power-mp2629 docs: ABI: cleanup several ABI documents 2020-10-30 13:14:29 +01:00
sysfs-class-power-surface power: supply: Add battery driver for Surface Aggregator Module 2021-04-08 14:30:28 +02:00
sysfs-class-power-twl4030 docs: ABI: cleanup several ABI documents 2020-10-30 13:14:29 +01:00
sysfs-class-power-wilco docs: ABI: fix syntax to be parsed using ReST notation 2020-10-30 13:12:39 +01:00
sysfs-class-powercap
sysfs-class-pwm
sysfs-class-rapidio docs: ABI: cleanup several ABI documents 2020-10-30 13:14:29 +01:00
sysfs-class-rc docs: ABI: testing: make the files compatible with ReST output 2020-10-30 13:07:01 +01:00
sysfs-class-rc-nuvoton
sysfs-class-regulator docs: ABI: cleanup several ABI documents 2020-10-30 13:14:29 +01:00
sysfs-class-remoteproc docs: ABI: cleanup several ABI documents 2020-10-30 13:14:29 +01:00
sysfs-class-rnbd-client Documentation/ABI/rnbd-clt: Add description for nr_poll_queues 2021-04-20 08:59:04 -06:00
sysfs-class-rnbd-server Documentation/ABI/rnbd-srv: add document for force_close 2020-12-04 09:41:10 -07:00
sysfs-class-rtc
sysfs-class-rtc-rtc0-device-rtc_calibration docs: ABI: cleanup several ABI documents 2020-10-30 13:14:29 +01:00
sysfs-class-rtrs-client Documentation/ABI/rtrs-clt: Add descriptions for min-latency policy 2021-04-13 19:44:54 -03:00
sysfs-class-rtrs-server RDMA/rtrs: a bit of documentation 2020-05-17 18:57:15 -03:00
sysfs-class-scsi_host docs: ABI: testing: make the files compatible with ReST output 2020-10-30 13:07:01 +01:00
sysfs-class-scsi_tape
sysfs-class-spi-eeprom nvmem: prepare basics for FRAM support 2021-06-11 12:23:10 +02:00
sysfs-class-stm
sysfs-class-stm_source
sysfs-class-switchtec
sysfs-class-typec usb: typec: Provide PD Specification Revision for cable and partner 2021-02-01 15:31:34 +01:00
sysfs-class-usb_role
sysfs-class-uwb_rc docs: ABI: cleanup several ABI documents 2020-10-30 13:14:29 +01:00
sysfs-class-uwb_rc-wusbhc
sysfs-class-wakeup
sysfs-class-watchdog docs: ABI: cleanup several ABI documents 2020-10-30 13:14:29 +01:00
sysfs-class-zram
sysfs-dev docs: ABI: cleanup several ABI documents 2020-10-30 13:14:29 +01:00
sysfs-devices
sysfs-devices-consumer driver core: Fix device link device name collision 2021-01-21 20:12:40 +01:00
sysfs-devices-coredump
sysfs-devices-edac
sysfs-devices-firmware_node
sysfs-devices-lpss_ltr
sysfs-devices-mapping docs: ABI: cleanup several ABI documents 2020-10-30 13:14:29 +01:00
sysfs-devices-memory Documentation: sysfs/memory: clarify some memory block device properties 2021-02-26 09:41:00 -08:00
sysfs-devices-mmc
sysfs-devices-online
sysfs-devices-platform-_UDC_-gadget docs: ABI: cleanup several ABI documents 2020-10-30 13:14:29 +01:00
sysfs-devices-platform-ACPI-TAD docs: ABI: testing: make the files compatible with ReST output 2020-10-30 13:07:01 +01:00
sysfs-devices-platform-docg3 docs: ABI: testing: make the files compatible with ReST output 2020-10-30 13:07:01 +01:00
sysfs-devices-platform-dock
sysfs-devices-platform-ipmi docs: ABI: cleanup several ABI documents 2020-10-30 13:14:29 +01:00
sysfs-devices-platform-sh_mobile_lcdc_fb docs: ABI: testing: make the files compatible with ReST output 2020-10-30 13:07:01 +01:00
sysfs-devices-platform-soc-ipa net: ipa: introduce sysfs code 2021-06-11 14:13:18 -07:00
sysfs-devices-platform-stratix10-rsu docs: ABI: fix syntax to be parsed using ReST notation 2020-10-30 13:12:39 +01:00
sysfs-devices-platform-trackpoint
sysfs-devices-power
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 PCI: Add sysfs "removable" attribute 2021-05-27 09:36:31 +02:00
sysfs-devices-resource_in_use
sysfs-devices-soc firmware: smccc: Add ARCH_SOC_ID support 2020-07-06 09:48:06 +01:00
sysfs-devices-software_node
sysfs-devices-state_synced driver core: Add state_synced sysfs file for devices that support it 2020-07-10 15:24:56 +02:00
sysfs-devices-sun
sysfs-devices-supplier driver core: Fix device link device name collision 2021-01-21 20:12:40 +01:00
sysfs-devices-system-cpu docs: typo fixes in Documentation/ABI/ 2021-05-13 09:13:25 -06:00
sysfs-devices-system-ibm-rtl docs: ABI: testing: make the files compatible with ReST output 2020-10-30 13:07:01 +01:00
sysfs-devices-system-xen_cpu
sysfs-devices-waiting_for_supplier driver core: Add waiting_for_supplier sysfs file for devices 2020-07-10 15:24:56 +02:00
sysfs-devices-xenbus xen/events: add per-xenbus device event statistics and settings 2021-02-23 10:07:11 -06:00
sysfs-driver-altera-cvp
sysfs-driver-bd9571mwv-regulator docs: ABI: testing: make the files compatible with ReST output 2020-10-30 13:07:01 +01:00
sysfs-driver-fsi-master-gpio
sysfs-driver-genwqe docs: ABI: testing: make the files compatible with ReST output 2020-10-30 13:07:01 +01:00
sysfs-driver-habanalabs habanalabs: update email address in sysfs/debugfs docs 2021-01-27 21:03:50 +02:00
sysfs-driver-hid
sysfs-driver-hid-corsair
sysfs-driver-hid-lenovo docs: ABI: cleanup several ABI documents 2020-10-30 13:14:29 +01:00
sysfs-driver-hid-logitech-hidpp
sysfs-driver-hid-logitech-lg4ff docs: ABI: testing: make the files compatible with ReST output 2020-10-30 13:07:01 +01:00
sysfs-driver-hid-multitouch
sysfs-driver-hid-ntrig docs: ABI: cleanup several ABI documents 2020-10-30 13:14:29 +01:00
sysfs-driver-hid-picolcd
sysfs-driver-hid-prodikeys
sysfs-driver-hid-roccat-kone docs: ABI: cleanup several ABI documents 2020-10-30 13:14:29 +01:00
sysfs-driver-hid-srws1
sysfs-driver-hid-wiimote docs: ABI: cleanup several ABI documents 2020-10-30 13:14:29 +01:00
sysfs-driver-input-axp-pek
sysfs-driver-input-cros-ec-keyb Input: cros-ec-keyb - expose function row physical map to userspace 2021-02-22 21:22:15 -08:00
sysfs-driver-input-exc3000 Input: exc3000 - add type sysfs attribute 2021-03-07 21:56:50 -08:00
sysfs-driver-intel-m10-bmc mfd: intel-m10-bmc: Expose MAC address and count 2021-02-08 13:54:25 +00:00
sysfs-driver-intel-rapid-start
sysfs-driver-jz4780-efuse docs: ABI: cleanup several ABI documents 2020-10-30 13:14:29 +01:00
sysfs-driver-pciback docs: ABI: cleanup several ABI documents 2020-10-30 13:14:29 +01:00
sysfs-driver-ppi
sysfs-driver-samsung-laptop docs: ABI: testing: make the files compatible with ReST output 2020-10-30 13:07:01 +01:00
sysfs-driver-st
sysfs-driver-tegra-fuse
sysfs-driver-toshiba_acpi docs: ABI: testing: make the files compatible with ReST output 2020-10-30 13:07:01 +01:00
sysfs-driver-toshiba_haps docs: ABI: testing: make the files compatible with ReST output 2020-10-30 13:07:01 +01:00
sysfs-driver-typec-displayport
sysfs-driver-uacce
sysfs-driver-ucsi-ccg
sysfs-driver-ufs SCSI misc on 20210702 2021-07-02 15:14:36 -07:00
sysfs-driver-w1_ds28e17 docs: ABI: cleanup several ABI documents 2020-10-30 13:14:29 +01:00
sysfs-driver-w1_therm w1: w1_therm: Rename conflicting sysfs attribute 'eeprom' to 'eeprom_cmd' 2020-11-12 08:50:13 +01:00
sysfs-driver-wacom docs: ABI: testing: make the files compatible with ReST output 2020-10-30 13:07:01 +01:00
sysfs-driver-xdata docs: ABI: Add sysfs documentation interface of dw-xdata-pcie driver 2021-04-05 13:15:52 +02:00
sysfs-driver-xen-blkback xen-blkback: add a parameter for disabling of persistent grants 2020-10-21 07:15:13 -05:00
sysfs-driver-xen-blkfront xen-blkfront: Apply changed parameter name to the document 2020-10-21 07:15:17 -05:00
sysfs-firmware-acpi ACPI: tables: introduce support for FPDT table 2021-01-29 19:24:13 +01:00
sysfs-firmware-dmi-entries docs: ABI: testing: make the files compatible with ReST output 2020-10-30 13:07:01 +01:00
sysfs-firmware-dmi-tables
sysfs-firmware-efi
sysfs-firmware-efi-esrt docs: ABI: cleanup several ABI documents 2020-10-30 13:14:29 +01:00
sysfs-firmware-efi-runtime-map docs: ABI: cleanup several ABI documents 2020-10-30 13:14:29 +01:00
sysfs-firmware-gsmi docs: ABI: testing: make the files compatible with ReST output 2020-10-30 13:07:01 +01:00
sysfs-firmware-lefi-boardinfo Documentation: ABI: Add /sys/firmware/lefi/boardinfo description for Loongson64 2020-10-27 12:46:35 +01:00
sysfs-firmware-log
sysfs-firmware-memmap docs: ABI: testing: sysfs-firmware-memmap: add some memmap types. 2021-06-24 16:24:51 +02:00
sysfs-firmware-ofw
sysfs-firmware-opal-powercap
sysfs-firmware-opal-psr
sysfs-firmware-opal-sensor-groups
sysfs-firmware-qemu_fw_cfg docs: ABI: cleanup several ABI documents 2020-10-30 13:14:29 +01:00
sysfs-firmware-sgi_uv x86/platform/uv: Fix indentation warning in Documentation/ABI/testing/sysfs-firmware-sgi_uv 2021-03-06 12:28:35 +01:00
sysfs-firmware-turris-mox-rwtm treewide: change my e-mail address, fix my name 2021-04-09 14:54:23 -07:00
sysfs-fs-ext4 docs: ABI: Drop trailing whitespace 2020-11-13 15:03:49 -07:00
sysfs-fs-f2fs f2fs-for-5.14-rc1 2021-07-09 09:37:56 -07:00
sysfs-fs-nilfs2
sysfs-fs-xfs docs: ABI: Fix the spelling oustanding to outstanding in the file sysfs-fs-xfs 2021-03-15 08:50:40 -07:00
sysfs-hypervisor-xen docs: ABI: testing: make the files compatible with ReST output 2020-10-30 13:07:01 +01:00
sysfs-ibft
sysfs-kernel-boot_params docs: ABI: testing: make the files compatible with ReST output 2020-10-30 13:07:01 +01:00
sysfs-kernel-btf bpf: Load and verify kernel module BTFs 2020-11-10 15:25:53 -08:00
sysfs-kernel-fadump
sysfs-kernel-fscaps
sysfs-kernel-iommu_groups docs: ABI: iommu: remove duplicated definition for sysfs-kernel-iommu_groups 2021-05-20 13:44:14 -06:00
sysfs-kernel-irq
sysfs-kernel-livepatch
sysfs-kernel-mm
sysfs-kernel-mm-cma mm: cma: support sysfs 2021-05-05 11:27:24 -07:00
sysfs-kernel-mm-hugepages docs: ABI: testing: make the files compatible with ReST output 2020-10-30 13:07:01 +01:00
sysfs-kernel-mm-ksm docs: ABI: cleanup several ABI documents 2020-10-30 13:14:29 +01:00
sysfs-kernel-mm-swap
sysfs-kernel-reboot reboot: allow to specify reboot mode via sysfs 2020-12-15 22:46:19 -08:00
sysfs-kernel-slab docs: ABI: cleanup several ABI documents 2020-10-30 13:14:29 +01:00
sysfs-kernel-vmcoreinfo
sysfs-memory-page-offline
sysfs-module docs: ABI: remove some spurious characters 2021-05-11 11:00:18 -06:00
sysfs-ocfs2
sysfs-platform-asus-laptop docs: ABI: testing: make the files compatible with ReST output 2020-10-30 13:07:01 +01:00
sysfs-platform-asus-wmi docs: ABI: testing: make the files compatible with ReST output 2020-10-30 13:07:01 +01:00
sysfs-platform-at91 docs: ABI: testing: make the files compatible with ReST output 2020-10-30 13:07:01 +01:00
sysfs-platform-brcmstb-gisb-arb
sysfs-platform-chipidea-usb-otg Documentation: ABI: usb: chipidea: Update Li Jun's e-mail 2020-06-18 10:40:56 +02:00
sysfs-platform-chipidea-usb2
sysfs-platform-dell-laptop docs: ABI: cleanup several ABI documents 2020-10-30 13:14:29 +01:00
sysfs-platform-dell-privacy-wmi platform/x86: dell-privacy: Add support for Dell hardware privacy 2021-06-16 17:47:51 +02:00
sysfs-platform-dell-smbios docs: ABI: cleanup several ABI documents 2020-10-30 13:14:29 +01:00
sysfs-platform-dfl-fme docs: ABI: fix syntax to be parsed using ReST notation 2020-10-30 13:12:39 +01:00
sysfs-platform-dfl-port
sysfs-platform-dptf docs: ABI: fix syntax to be parsed using ReST notation 2020-10-30 13:12:39 +01:00
sysfs-platform-eeepc-laptop docs: ABI: testing: make the files compatible with ReST output 2020-10-30 13:07:01 +01:00
sysfs-platform-hidma
sysfs-platform-hidma-mgmt
sysfs-platform-i2c-demux-pinctrl docs: ABI: cleanup several ABI documents 2020-10-30 13:14:29 +01:00
sysfs-platform-ideapad-laptop Documentation/ABI: sysfs-platform-ideapad-laptop: conservation_mode attribute 2021-02-04 10:21:50 +01:00
sysfs-platform-intel-pmc platform/x86: intel_pmc_core: export platform global reset bits via etr3 sysfs file 2021-04-13 09:26:40 +02:00
sysfs-platform-intel-wmi-sbl-fw-update docs: ABI: fix syntax to be parsed using ReST notation 2020-10-30 13:12:39 +01:00
sysfs-platform-intel-wmi-thunderbolt docs: ABI: testing: make the files compatible with ReST output 2020-10-30 13:07:01 +01:00
sysfs-platform-kim sfi: Remove framework for deprecated firmware 2021-02-15 20:09:46 +01:00
sysfs-platform-lg-laptop
sysfs-platform-mellanox-bootctl docs: ABI: fix syntax to be parsed using ReST notation 2020-10-30 13:12:39 +01:00
sysfs-platform-msi-laptop
sysfs-platform-phy-rcar-gen3-usb2 docs: ABI: cleanup several ABI documents 2020-10-30 13:14:29 +01:00
sysfs-platform-renesas_usb3 docs: ABI: Drop trailing whitespace 2020-11-13 15:03:49 -07:00
sysfs-platform-sst-atom docs: ABI: testing: make the files compatible with ReST output 2020-10-30 13:07:01 +01:00
sysfs-platform-tahvo-usb
sysfs-platform-ts5500
sysfs-platform-twl4030-usb
sysfs-platform-usbip-vudc docs: ABI: testing: make the files compatible with ReST output 2020-10-30 13:07:01 +01:00
sysfs-platform-wilco-ec docs: ABI: fix syntax to be parsed using ReST notation 2020-10-30 13:12:39 +01:00
sysfs-platform_profile ACPI: platform: Add balanced-performance platform profile 2021-02-24 14:52:41 +01:00
sysfs-power docs: ABI: cleanup several ABI documents 2020-10-30 13:14:29 +01:00
sysfs-pps
sysfs-profiling docs: ABI: cleanup several ABI documents 2020-10-30 13:14:29 +01:00
sysfs-ptp ptp: support ptp physical/virtual clocks conversion 2021-07-01 13:08:18 -07:00
sysfs-secvar
sysfs-tty
sysfs-uevent docs: ABI: sysfs-uevent: make it compatible with ReST output 2020-10-30 13:07:02 +01:00
sysfs-wusb_cbaf docs: ABI: cleanup several ABI documents 2020-10-30 13:14:29 +01:00
usb-charger-uevent docs: ABI: cleanup several ABI documents 2020-10-30 13:14:29 +01:00
usb-uevent docs: ABI: cleanup several ABI documents 2020-10-30 13:14:29 +01:00