<div dir="ltr"><div dir="ltr"><div class="gmail_default" style="font-family:monospace"><br></div></div><div class="gmail_quote"><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex"><div dir="ltr"><div class="gmail_quote"><div style="font-family:monospace" class="gmail_default"><br></div><div style="font-size:small">Or, If we want something more precise, just cancel the</div><div style="font-size:small">check_policy_pref_or_local on kernel >= 5.14.</div><div style="font-size:small"><br></div><div style="font-size:small">Is this sound better?</div><div><br></div><div><div style="font-size:small">-       if ((tst_kvercmp(3, 8, 0)) < 0 && (tc->policy == MPOL_LOCAL)) {</div>-               tst_res(TCONF, "%s is not supported", tst_mempolicy_mode_name(tc->policy));<br>-               return;</div><div><br>+       if (tc->policy == MPOL_LOCAL) {<br>+               if ((tst_kvercmp(3, 8, 0)) < 0) {<br>+                       tst_res(TCONF, "%s is not supported",<span class="gmail_default" style="font-size:small"> </span>tst_mempolicy_mode_name(tc->policy));<br>+                       return;<br>+               }<br>+<br>+               if ((tst_kvercmp(5, 14, 0)) >= 0)<br>+                       tc->check_policy = NULL;<br></div></div><br></div></blockquote></div><div class="gmail_quote"><br></div><div class="gmail_quote"><div style="font-family:monospace" class="gmail_default">Yes, that works too.</div><br></div></div>