Lines Matching full:aspect
25 "Each configurable DEXCR aspect is exposed as an option.\n" in help()
27 "The normal option sets the aspect in the DEXCR. The --no- variant\n" in help()
28 "clears that aspect. For example, --ibrtpd sets the IBRTPD aspect bit,\n" in help()
30 "Conversely, --no-ibrtpd clears the aspect bit, so indirect branch\n" in help()
36 const struct dexcr_aspect *aspect = &aspects[i]; in help() local
38 if (aspect->prctl == -1) in help()
41 printf(" --%-6s / --no-%-6s : %s\n", aspect->opt, aspect->opt, aspect->desc); in help()
56 const struct dexcr_aspect *aspect; in apply_option() local
80 aspect = opt_to_aspect(opt); in apply_option()
81 if (!aspect) in apply_option()
82 die("unknown aspect"); in apply_option()
84 err = pr_set_dexcr(aspect->prctl, ctrl); in apply_option()