Commit c2f4954c authored by Thomas Gleixner's avatar Thomas Gleixner
Browse files

Merge branch 'linus' into smp/urgent

Ensure that all usage sites of get/put_online_cpus() except for the
struggler in drivers/thermal are gone. So the last user and the deprecated
inlines can be removed.
parents 4b92d4ad 926de8c4
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -229,6 +229,7 @@ Matthew Wilcox <willy@infradead.org> <mawilcox@microsoft.com>
Matthew Wilcox <willy@infradead.org> <willy@debian.org>
Matthew Wilcox <willy@infradead.org> <willy@linux.intel.com>
Matthew Wilcox <willy@infradead.org> <willy@parisc-linux.org>
Matthias Fuchs <socketcan@esd.eu> <matthias.fuchs@esd.eu>
Matthieu CASTET <castet.matthieu@free.fr>
Matt Ranostay <matt.ranostay@konsulko.com> <matt@ranostay.consulting>
Matt Ranostay <mranostay@gmail.com> Matthew Ranostay <mranostay@embeddedalley.com>
@@ -341,6 +342,7 @@ Sumit Semwal <sumit.semwal@ti.com>
Takashi YOSHII <takashi.yoshii.zj@renesas.com>
Tejun Heo <htejun@gmail.com>
Thomas Graf <tgraf@suug.ch>
Thomas Körper <socketcan@esd.eu> <thomas.koerper@esd.eu>
Thomas Pedersen <twp@codeaurora.org>
Tiezhu Yang <yangtiezhu@loongson.cn> <kernelpatch@126.com>
Todor Tomov <todor.too@gmail.com> <todor.tomov@linaro.org>
+9 −0
Original line number Diff line number Diff line
@@ -128,6 +128,8 @@ Date: Aug 28, 2020
KernelVersion:	5.10.0
Contact:	dmaengine@vger.kernel.org
Description:	The last executed device administrative command's status/error.
		Also last configuration error overloaded.
		Writing to it will clear the status.

What:		/sys/bus/dsa/devices/wq<m>.<n>/block_on_fault
Date:		Oct 27, 2020
@@ -211,6 +213,13 @@ Contact: dmaengine@vger.kernel.org
Description:	Indicate whether ATS disable is turned on for the workqueue.
		0 indicates ATS is on, and 1 indicates ATS is off for the workqueue.

What:		/sys/bus/dsa/devices/wq<m>.<n>/occupancy
Date		May 25, 2021
KernelVersion:	5.14.0
Contact:	dmaengine@vger.kernel.org
Description:	Show the current number of entries in this WQ if WQ Occupancy
		Support bit WQ capabilities is 1.

What:           /sys/bus/dsa/devices/engine<m>.<n>/group_id
Date:           Oct 25, 2019
KernelVersion:  5.6.0
+10 −0
Original line number Diff line number Diff line
@@ -8,9 +8,19 @@ Description:
		c_chmask	capture channel mask
		c_srate		capture sampling rate
		c_ssize		capture sample size (bytes)
		c_mute_present	capture mute control enable
		c_volume_present	capture volume control enable
		c_volume_min	capture volume control min value (in 1/256 dB)
		c_volume_max	capture volume control max value (in 1/256 dB)
		c_volume_res	capture volume control resolution (in 1/256 dB)
		p_chmask	playback channel mask
		p_srate		playback sampling rate
		p_ssize		playback sample size (bytes)
		p_mute_present	playback mute control enable
		p_volume_present	playback volume control enable
		p_volume_min	playback volume control min value (in 1/256 dB)
		p_volume_max	playback volume control max value (in 1/256 dB)
		p_volume_res	playback volume control resolution (in 1/256 dB)
		req_number	the number of pre-allocated request
				for both capture and playback
		==========	===================================
+10 −0
Original line number Diff line number Diff line
@@ -9,8 +9,18 @@ Description:
		c_srate    capture sampling rate
		c_ssize    capture sample size (bytes)
		c_sync     capture synchronization type (async/adaptive)
		c_mute_present	capture mute control enable
		c_volume_present	capture volume control enable
		c_volume_min	capture volume control min value (in 1/256 dB)
		c_volume_max	capture volume control max value (in 1/256 dB)
		c_volume_res	capture volume control resolution (in 1/256 dB)
		fb_max     maximum extra bandwidth in async mode
		p_chmask   playback channel mask
		p_srate    playback sampling rate
		p_ssize    playback sample size (bytes)
		p_mute_present	playback mute control enable
		p_volume_present	playback volume control enable
		p_volume_min	playback volume control min value (in 1/256 dB)
		p_volume_max	playback volume control max value (in 1/256 dB)
		p_volume_res	playback volume control resolution (in 1/256 dB)
		=========  ============================
+19 −0
Original line number Diff line number Diff line
@@ -215,6 +215,17 @@ Description: Sets the skip reset on timeout option for the device. Value of
                "0" means device will be reset in case some CS has timed out,
                otherwise it will not be reset.

What:           /sys/kernel/debug/habanalabs/hl<n>/state_dump
Date:           Oct 2021
KernelVersion:  5.15
Contact:        ynudelman@habana.ai
Description:    Gets the state dump occurring on a CS timeout or failure.
                State dump is used for debug and is created each time in case of
                a problem in a CS execution, before reset.
                Reading from the node returns the newest state dump available.
                Writing an integer X discards X state dumps, so that the
                next read would return X+1-st newest state dump.

What:           /sys/kernel/debug/habanalabs/hl<n>/stop_on_err
Date:           Mar 2020
KernelVersion:  5.6
@@ -230,6 +241,14 @@ Description: Displays a list with information about the currently user
                pointers (user virtual addresses) that are pinned and mapped
                to DMA addresses

What:           /sys/kernel/debug/habanalabs/hl<n>/userptr_lookup
Date:           Aug 2021
KernelVersion:  5.15
Contact:        ogabbay@kernel.org
Description:    Allows to search for specific user pointers (user virtual
                addresses) that are pinned and mapped to DMA addresses, and see
                their resolution to the specific dma address.

What:           /sys/kernel/debug/habanalabs/hl<n>/vm
Date:           Jan 2019
KernelVersion:  5.1
Loading