Lines Matching defs:ax
2795 struct audit_aux_data_bprm_fcaps *ax;
2799 ax = kmalloc(sizeof(*ax), GFP_KERNEL);
2800 if (!ax)
2803 ax->d.type = AUDIT_BPRM_FCAPS;
2804 ax->d.next = context->aux;
2805 context->aux = (void *)ax;
2810 ax->fcap.permitted = vcaps.permitted;
2811 ax->fcap.inheritable = vcaps.inheritable;
2812 ax->fcap.fE = !!(vcaps.magic_etc & VFS_CAP_FLAGS_EFFECTIVE);
2813 ax->fcap.rootid = vcaps.rootid;
2814 ax->fcap_ver = (vcaps.magic_etc & VFS_CAP_REVISION_MASK) >> VFS_CAP_REVISION_SHIFT;
2816 ax->old_pcap.permitted = old->cap_permitted;
2817 ax->old_pcap.inheritable = old->cap_inheritable;
2818 ax->old_pcap.effective = old->cap_effective;
2819 ax->old_pcap.ambient = old->cap_ambient;
2821 ax->new_pcap.permitted = new->cap_permitted;
2822 ax->new_pcap.inheritable = new->cap_inheritable;
2823 ax->new_pcap.effective = new->cap_effective;
2824 ax->new_pcap.ambient = new->cap_ambient;