浏览代码

[S390] ap bus poll thread priority.

The ap bus is supposed to have a low priority. We must use 19 instead
of -20, which is just the opposite.

Signed-off-by: Christian Borntraeger <cborntra@de.ibm.com>
Signed-off-by: Martin Schwidefsky <schwidefsky@de.ibm.com>
Christian Borntraeger 18 年之前
父节点
当前提交
d83682b397
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      drivers/s390/crypto/ap_bus.c

+ 1 - 1
drivers/s390/crypto/ap_bus.c

@@ -1062,7 +1062,7 @@ static int ap_poll_thread(void *data)
 	unsigned long flags;
 	int requests;
 
-	set_user_nice(current, -20);
+	set_user_nice(current, 19);
 	while (1) {
 		if (need_resched()) {
 			schedule();