浏览代码

dm crypt: use cond_resched

Add cond_resched() to prevent monopolising CPU when processing large bios.

dm-crypt processes encryption of bios in sector units.  If the bio request
is big it can spend a long time in the encryption call.

Signed-off-by: Milan Broz <mbroz@redhat.com>
Tested-by: Yan Li <elliot.li.tech@gmail.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Alasdair G Kergon <agk@redhat.com>
Milan Broz 17 年之前
父节点
当前提交
c7f1b20441
共有 1 个文件被更改,包括 1 次插入0 次删除
  1. 1 0
      drivers/md/dm-crypt.c

+ 1 - 0
drivers/md/dm-crypt.c

@@ -432,6 +432,7 @@ static int crypt_convert(struct crypt_config *cc,
 		case 0:
 		case 0:
 			atomic_dec(&ctx->pending);
 			atomic_dec(&ctx->pending);
 			ctx->sector++;
 			ctx->sector++;
+			cond_resched();
 			continue;
 			continue;
 
 
 		/* error */
 		/* error */