https://github.com/torvalds/linux
Revision 11e38360cc15e2d5995449d19030b13a67d73cb3 authored by Jiadong.Zhu on 23 September 2022, 13:17:53 UTC, committed by Alex Deucher on 27 September 2022, 22:03:09 UTC
The function amdgpu_fence_count_emitted used in work_hander should not call
amdgpu_fence_process which must be used in irq handler.

Reviewed-by: Christian König <christian.koenig@amd.com>
Signed-off-by: Jiadong.Zhu <Jiadong.Zhu@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
1 parent b3e45b1
Raw File
Tip revision: 11e38360cc15e2d5995449d19030b13a67d73cb3 authored by Jiadong.Zhu on 23 September 2022, 13:17:53 UTC
drm/amdgpu: Remove fence_process in count_emitted
Tip revision: 11e3836
Kconfig
# SPDX-License-Identifier: GPL-2.0-or-later

config BLK_DEV_RNBD
	bool

config BLK_DEV_RNBD_CLIENT
	tristate "RDMA Network Block Device driver client"
	depends on INFINIBAND_RTRS_CLIENT
	select BLK_DEV_RNBD
	select SG_POOL
	help
	  RNBD client is a network block device driver using rdma transport.

	  RNBD client allows for mapping of a remote block devices over
	  RTRS protocol from a target system where RNBD server is running.

	  If unsure, say N.

config BLK_DEV_RNBD_SERVER
	tristate "RDMA Network Block Device driver server"
	depends on INFINIBAND_RTRS_SERVER
	select BLK_DEV_RNBD
	help
	  RNBD server is the server side of RNBD using rdma transport.

	  RNBD server allows for exporting local block devices to a remote client
	  over RTRS protocol.

	  If unsure, say N.
back to top