We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 175c4d9 commit bb4328fCopy full SHA for bb4328f
drivers/gpu/drm/i915/gt/selftest_lrc.c
@@ -5290,8 +5290,9 @@ static int live_lrc_isolation(void *arg)
5290
const u32 poison[] = {
5291
STACK_MAGIC,
5292
0x3a3a3a3a,
5293
- 0xc5c5c5c5,
+ 0x5c5c5c5c,
5294
0xffffffff,
5295
+ 0xffff0000,
5296
};
5297
5298
/*
@@ -5317,6 +5318,10 @@ static int live_lrc_isolation(void *arg)
5317
5318
err = __lrc_isolation(engine, poison[i]);
5319
if (err)
5320
break;
5321
+
5322
+ err = __lrc_isolation(engine, ~poison[i]);
5323
+ if (err)
5324
+ break;
5325
}
5326
5327
intel_engine_pm_put(engine);
0 commit comments