Lines Matching defs:ax
2742 struct audit_aux_data_bprm_fcaps *ax;
2746 ax = kmalloc_obj(*ax);
2747 if (!ax)
2750 ax->d.type = AUDIT_BPRM_FCAPS;
2751 ax->d.next = context->aux;
2752 context->aux = (void *)ax;
2757 ax->fcap.permitted = vcaps.permitted;
2758 ax->fcap.inheritable = vcaps.inheritable;
2759 ax->fcap.fE = !!(vcaps.magic_etc & VFS_CAP_FLAGS_EFFECTIVE);
2760 ax->fcap.rootid = vcaps.rootid;
2761 ax->fcap_ver = (vcaps.magic_etc & VFS_CAP_REVISION_MASK) >> VFS_CAP_REVISION_SHIFT;
2763 ax->old_pcap.permitted = old->cap_permitted;
2764 ax->old_pcap.inheritable = old->cap_inheritable;
2765 ax->old_pcap.effective = old->cap_effective;
2766 ax->old_pcap.ambient = old->cap_ambient;
2768 ax->new_pcap.permitted = new->cap_permitted;
2769 ax->new_pcap.inheritable = new->cap_inheritable;
2770 ax->new_pcap.effective = new->cap_effective;
2771 ax->new_pcap.ambient = new->cap_ambient;