Skip to content

Commit c37d181

Browse files
committed
drivers: hv: dxgkrnl: Remove usage of __get_task_comm
See 4cc0473 ("get rid of __get_task_comm()") Signed-off-by: Mitchell Levy <levymitchell0@gmail.com>
1 parent 9db7c07 commit c37d181

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

drivers/hv/dxgkrnl/dxgvmbus.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -690,7 +690,7 @@ int dxgvmb_send_create_process(struct dxgprocess *process)
690690
command->process_id = process->pid;
691691
command->linux_process = 1;
692692
s[0] = 0;
693-
__get_task_comm(s, WIN_MAX_PATH, current);
693+
get_task_comm(s, current);
694694
for (i = 0; i < WIN_MAX_PATH; i++) {
695695
command->process_name[i] = s[i];
696696
if (s[i] == 0)

0 commit comments

Comments
 (0)