Christian Göttsche <cgzones@xxxxxxxxxxxxxx> writes: > Signed-off-by: Christian Göttsche <cgzones@xxxxxxxxxxxxxx> Already merged from https://patchwork.kernel.org/project/selinux/patch/20220331144752.31495-3-cgzones@xxxxxxxxxxxxxx/ based on ack from https://lore.kernel.org/all/CAP+JOzTokM6k+wTVneEeSLGGhH5A2r7XayLLotiu8XuFn=GW7g@xxxxxxxxxxxxxx/ > --- > libsepol/cil/src/cil_post.c | 6 ++++++ > 1 file changed, 6 insertions(+) > > diff --git a/libsepol/cil/src/cil_post.c b/libsepol/cil/src/cil_post.c > index 7f33cd9e..714ce227 100644 > --- a/libsepol/cil/src/cil_post.c > +++ b/libsepol/cil/src/cil_post.c > @@ -2434,6 +2434,12 @@ static int cil_post_db(struct cil_db *db) > goto exit; > } > > + rc = __cil_post_process_context_rules(db->pirqcon, cil_post_pirqcon_compare, cil_post_pirqcon_context_compare, db, CIL_PIRQCON, CIL_KEY_IOMEMCON); > + if (rc != SEPOL_OK) { > + cil_log(CIL_ERR, "Problems processing pirqcon rules\n"); > + goto exit; > + } > + > rc = __cil_post_process_context_rules(db->iomemcon, cil_post_iomemcon_compare, cil_post_iomemcon_context_compare, db, CIL_IOMEMCON, CIL_KEY_IOMEMCON); > if (rc != SEPOL_OK) { > cil_log(CIL_ERR, "Problems processing iomemcon rules\n"); > -- > 2.35.1