Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge tag 'driver-core-5.10-rc3' of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core

Pull driver core documentation fixes from Greg KH:
"Some small Documentation fixes that were fallout from the larger
documentation update we did in 5.10-rc2.

Nothing major here at all, but all of these have been in linux-next
and resolve build warnings when building the documentation files"

* tag 'driver-core-5.10-rc3' of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core:
Documentation: remove mic/index from misc-devices/index.rst
scripts: get_api.pl: Add sub-titles to ABI output
scripts: get_abi.pl: Don't let ABI files to create subtitles
docs: leds: index.rst: add a missing file
docs: ABI: sysfs-class-net: fix a typo
docs: ABI: sysfs-driver-dma-ioatdma: what starts with /sys

+30 -7
+5 -5
Documentation/ABI/stable/sysfs-driver-dma-ioatdma
··· 1 - What: sys/devices/pciXXXX:XX/0000:XX:XX.X/dma/dma<n>chan<n>/quickdata/cap 1 + What: /sys/devices/pciXXXX:XX/0000:XX:XX.X/dma/dma<n>chan<n>/quickdata/cap 2 2 Date: December 3, 2009 3 3 KernelVersion: 2.6.32 4 4 Contact: dmaengine@vger.kernel.org 5 5 Description: Capabilities the DMA supports.Currently there are DMA_PQ, DMA_PQ_VAL, 6 6 DMA_XOR,DMA_XOR_VAL,DMA_INTERRUPT. 7 7 8 - What: sys/devices/pciXXXX:XX/0000:XX:XX.X/dma/dma<n>chan<n>/quickdata/ring_active 8 + What: /sys/devices/pciXXXX:XX/0000:XX:XX.X/dma/dma<n>chan<n>/quickdata/ring_active 9 9 Date: December 3, 2009 10 10 KernelVersion: 2.6.32 11 11 Contact: dmaengine@vger.kernel.org 12 12 Description: The number of descriptors active in the ring. 13 13 14 - What: sys/devices/pciXXXX:XX/0000:XX:XX.X/dma/dma<n>chan<n>/quickdata/ring_size 14 + What: /sys/devices/pciXXXX:XX/0000:XX:XX.X/dma/dma<n>chan<n>/quickdata/ring_size 15 15 Date: December 3, 2009 16 16 KernelVersion: 2.6.32 17 17 Contact: dmaengine@vger.kernel.org 18 18 Description: Descriptor ring size, total number of descriptors available. 19 19 20 - What: sys/devices/pciXXXX:XX/0000:XX:XX.X/dma/dma<n>chan<n>/quickdata/version 20 + What: /sys/devices/pciXXXX:XX/0000:XX:XX.X/dma/dma<n>chan<n>/quickdata/version 21 21 Date: December 3, 2009 22 22 KernelVersion: 2.6.32 23 23 Contact: dmaengine@vger.kernel.org 24 24 Description: Version of ioatdma device. 25 25 26 - What: sys/devices/pciXXXX:XX/0000:XX:XX.X/dma/dma<n>chan<n>/quickdata/intr_coalesce 26 + What: /sys/devices/pciXXXX:XX/0000:XX:XX.X/dma/dma<n>chan<n>/quickdata/intr_coalesce 27 27 Date: August 8, 2017 28 28 KernelVersion: 4.14 29 29 Contact: dmaengine@vger.kernel.org
+1 -1
Documentation/ABI/testing/sysfs-class-net
··· 152 152 When an interface is under test, it cannot be expected 153 153 to pass packets as normal. 154 154 155 - What: /sys/clas/net/<iface>/duplex 155 + What: /sys/class/net/<iface>/duplex 156 156 Date: October 2009 157 157 KernelVersion: 2.6.33 158 158 Contact: netdev@vger.kernel.org
+1
Documentation/leds/index.rst
··· 25 25 leds-lp5562 26 26 leds-lp55xx 27 27 leds-mlxcpld 28 + leds-sc27xx
-1
Documentation/misc-devices/index.rst
··· 24 24 isl29003 25 25 lis3lv02d 26 26 max6875 27 - mic/index 28 27 pci-endpoint-test 29 28 spear-pcie-gadget 30 29 uacce
+23
scripts/get_abi.pl
··· 287 287 sub output_rest { 288 288 create_labels(); 289 289 290 + my $part = ""; 291 + 290 292 foreach my $what (sort { 291 293 ($data{$a}->{type} eq "File") cmp ($data{$b}->{type} eq "File") || 292 294 $a cmp $b ··· 308 306 $w =~ s/([\(\)\_\-\*\=\^\~\\])/\\$1/g; 309 307 310 308 if ($type ne "File") { 309 + my $cur_part = $what; 310 + if ($what =~ '/') { 311 + if ($what =~ m#^(\/?(?:[\w\-]+\/?){1,2})#) { 312 + $cur_part = "Symbols under $1"; 313 + $cur_part =~ s,/$,,; 314 + } 315 + } 316 + 317 + if ($cur_part ne "" && $part ne $cur_part) { 318 + $part = $cur_part; 319 + my $bar = $part; 320 + $bar =~ s/./-/g; 321 + print "$part\n$bar\n\n"; 322 + } 323 + 311 324 printf ".. _%s:\n\n", $data{$what}->{label}; 312 325 313 326 my @names = split /, /,$w; ··· 369 352 370 353 if (!($desc =~ /^\s*$/)) { 371 354 if ($description_is_rst) { 355 + # Remove title markups from the description 356 + # Having titles inside ABI files will only work if extra 357 + # care would be taken in order to strictly follow the same 358 + # level order for each markup. 359 + $desc =~ s/\n[\-\*\=\^\~]+\n/\n\n/g; 360 + 372 361 # Enrich text by creating cross-references 373 362 374 363 $desc =~ s,Documentation/(?!devicetree)(\S+)\.rst,:doc:`/$1`,g;