Home
last modified time | relevance | path

Searched refs:av (Results 1 – 70 of 70) sorted by relevance

/linux-4.4.14/net/dccp/
Dackvec.c22 struct dccp_ackvec *av = kmem_cache_zalloc(dccp_ackvec_slab, priority); in dccp_ackvec_alloc() local
24 if (av != NULL) { in dccp_ackvec_alloc()
25 av->av_buf_head = av->av_buf_tail = DCCPAV_MAX_ACKVEC_LEN - 1; in dccp_ackvec_alloc()
26 INIT_LIST_HEAD(&av->av_records); in dccp_ackvec_alloc()
28 return av; in dccp_ackvec_alloc()
31 static void dccp_ackvec_purge_records(struct dccp_ackvec *av) in dccp_ackvec_purge_records() argument
35 list_for_each_entry_safe(cur, next, &av->av_records, avr_node) in dccp_ackvec_purge_records()
37 INIT_LIST_HEAD(&av->av_records); in dccp_ackvec_purge_records()
40 void dccp_ackvec_free(struct dccp_ackvec *av) in dccp_ackvec_free() argument
42 if (likely(av != NULL)) { in dccp_ackvec_free()
[all …]
Dackvec.h108 void dccp_ackvec_free(struct dccp_ackvec *av);
110 void dccp_ackvec_input(struct dccp_ackvec *av, struct sk_buff *skb);
111 int dccp_ackvec_update_records(struct dccp_ackvec *av, u64 seq, u8 sum);
112 void dccp_ackvec_clear_state(struct dccp_ackvec *av, const u64 ackno);
113 u16 dccp_ackvec_buflen(const struct dccp_ackvec *av);
115 static inline bool dccp_ackvec_is_empty(const struct dccp_ackvec *av) in dccp_ackvec_is_empty() argument
117 return av->av_overflow == 0 && av->av_buf_head == av->av_buf_tail; in dccp_ackvec_is_empty()
Doptions.c402 struct dccp_ackvec *av = dp->dccps_hc_rx_ackvec; in dccp_insert_option_ackvec() local
404 const u16 buflen = dccp_ackvec_buflen(av); in dccp_insert_option_ackvec()
434 from = av->av_buf + av->av_buf_head; in dccp_insert_option_ackvec()
435 tail = av->av_buf + DCCPAV_MAX_ACKVEC_LEN; in dccp_insert_option_ackvec()
447 nonce ^= av->av_buf_nonce[i]; in dccp_insert_option_ackvec()
449 *to++ = DCCPO_ACK_VECTOR_0 + av->av_buf_nonce[i]; in dccp_insert_option_ackvec()
460 from = av->av_buf; in dccp_insert_option_ackvec()
471 if (dccp_ackvec_update_records(av, dcb->dccpd_seq, nonce)) in dccp_insert_option_ackvec()
Dinput.c165 struct dccp_ackvec *av = dccp_sk(sk)->dccps_hc_rx_ackvec; in dccp_handle_ackvec_processing() local
167 if (av == NULL) in dccp_handle_ackvec_processing()
170 dccp_ackvec_clear_state(av, DCCP_SKB_CB(skb)->dccpd_ack_seq); in dccp_handle_ackvec_processing()
171 dccp_ackvec_input(av, skb); in dccp_handle_ackvec_processing()
/linux-4.4.14/drivers/staging/rdma/ehca/
Dehca_av.c91 struct ehca_av *av; in ehca_create_ah() local
95 av = kmem_cache_alloc(av_cache, GFP_KERNEL); in ehca_create_ah()
96 if (!av) { in ehca_create_ah()
102 av->av.sl = ah_attr->sl; in ehca_create_ah()
103 av->av.dlid = ah_attr->dlid; in ehca_create_ah()
104 av->av.slid_path_bits = ah_attr->src_path_bits; in ehca_create_ah()
113 av->av.ipd = ipd; in ehca_create_ah()
115 av->av.ipd = ehca_static_rate; in ehca_create_ah()
117 av->av.lnh = ah_attr->ah_flags; in ehca_create_ah()
118 av->av.grh.word_0 = EHCA_BMASK_SET(GRH_IPVERSION_MASK, 6); in ehca_create_ah()
[all …]
Dehca_classes.h354 struct ehca_ud_av av; member
Dehca_reqs.c241 wqe_p->u.ud_av.ud_av = my_av->av; in ehca_write_swqe()
/linux-4.4.14/drivers/infiniband/hw/mthca/
Dmthca_av.c159 struct mthca_av *av = NULL; in mthca_create_ah() local
164 ah->av = kmalloc(sizeof *ah->av, GFP_ATOMIC); in mthca_create_ah()
165 if (!ah->av) in mthca_create_ah()
169 av = ah->av; in mthca_create_ah()
178 av = kmalloc(sizeof *av, GFP_ATOMIC); in mthca_create_ah()
179 if (!av) in mthca_create_ah()
189 ah->av = pci_pool_alloc(dev->av_table.pool, in mthca_create_ah()
191 if (!ah->av) in mthca_create_ah()
194 av = ah->av; in mthca_create_ah()
199 memset(av, 0, MTHCA_AV_SIZE); in mthca_create_ah()
[all …]
Dmthca_wqe.h75 __be32 av[8]; member
Dmthca_provider.h131 struct mthca_av *av; member
Dmthca_qp.c1597 memcpy(useg->av, to_mah(wr->ah)->av, MTHCA_AV_SIZE); in set_arbel_ud_seg()
/linux-4.4.14/drivers/infiniband/hw/mlx4/
Dah.c48 ah->av.ib.port_pd = cpu_to_be32(to_mpd(pd)->pdn | (ah_attr->port_num << 24)); in create_ib_ah()
49 ah->av.ib.g_slid = ah_attr->src_path_bits; in create_ib_ah()
51 ah->av.ib.g_slid |= 0x80; in create_ib_ah()
52 ah->av.ib.gid_index = ah_attr->grh.sgid_index; in create_ib_ah()
53 ah->av.ib.hop_limit = ah_attr->grh.hop_limit; in create_ib_ah()
54 ah->av.ib.sl_tclass_flowlabel |= in create_ib_ah()
57 memcpy(ah->av.ib.dgid, ah_attr->grh.dgid.raw, 16); in create_ib_ah()
60 ah->av.ib.dlid = cpu_to_be16(ah_attr->dlid); in create_ib_ah()
62 ah->av.ib.stat_rate = ah_attr->static_rate + MLX4_STAT_RATE_OFFSET; in create_ib_ah()
63 while (ah->av.ib.stat_rate > IB_RATE_2_5_GBPS + MLX4_STAT_RATE_OFFSET && in create_ib_ah()
[all …]
Dqp.c250 struct mlx4_av *av = (struct mlx4_av *)dgram->av; in post_nop_wqe() local
252 av->port_pd = cpu_to_be32((qp->port << 24) | to_mpd(qp->ibqp.pd)->pdn); in post_nop_wqe()
2175 be32_to_cpu(ah->av.ib.sl_tclass_flowlabel) >> 28; in build_sriov_qp0_header()
2177 cpu_to_be16(ah->av.ib.g_slid & 0x7f); in build_sriov_qp0_header()
2179 cpu_to_be16(ah->av.ib.g_slid & 0x7f); in build_sriov_qp0_header()
2297 be32_to_cpu(ah->av.ib.port_pd) >> 24, in build_mlx_header()
2298 ah->av.ib.gid_index, &sgid.raw[0]); in build_mlx_header()
2303 be32_to_cpu(ah->av.ib.port_pd) >> 24, in build_mlx_header()
2304 ah->av.ib.gid_index, &sgid, in build_mlx_header()
2312 if (ah->av.eth.vlan != cpu_to_be16(0xffff)) { in build_mlx_header()
[all …]
Dmlx4_ib.h239 struct mlx4_av av; member
344 union mlx4_ext_av av; member
783 u8 port = be32_to_cpu(ah->av.ib.port_pd) >> 24 & 3; in mlx4_ib_ah_grh_present()
788 return !!(ah->av.ib.g_slid & 0x80); in mlx4_ib_ah_grh_present()
Dmad.c1229 to_mah(ah)->av.ib.gid_index = sgid_index; in mlx4_ib_send_to_wire()
1231 to_mah(ah)->av.ib.port_pd &= cpu_to_be32(0x7FFFFFFF); in mlx4_ib_send_to_wire()
1274 memcpy(to_mah(ah)->av.eth.s_mac, s_mac, 6); in mlx4_ib_send_to_wire()
1277 to_mah(ah)->av.eth.vlan = cpu_to_be16(vlan_id); in mlx4_ib_send_to_wire()
1389 memcpy(&ah.av, &tunnel->hdr.av, sizeof (struct mlx4_av)); in mlx4_ib_multiplex_mad()
1392 port = be32_to_cpu(ah.av.ib.port_pd) >> 24; in mlx4_ib_multiplex_mad()
1396 ah.av.ib.port_pd = cpu_to_be32(port << 24 | (be32_to_cpu(ah.av.ib.port_pd) & 0xffffff)); in mlx4_ib_multiplex_mad()
/linux-4.4.14/drivers/mtd/ubi/
Dattach.c194 const struct ubi_ainf_volume *av, int pnum) in validate_vid_hdr() argument
201 if (av->leb_count != 0) { in validate_vid_hdr()
210 if (vol_id != av->vol_id) { in validate_vid_hdr()
215 if (av->vol_type == UBI_STATIC_VOLUME) in validate_vid_hdr()
225 if (used_ebs != av->used_ebs) { in validate_vid_hdr()
230 if (data_pad != av->data_pad) { in validate_vid_hdr()
241 ubi_dump_av(av); in validate_vid_hdr()
262 struct ubi_ainf_volume *av; in add_volume() local
270 av = rb_entry(parent, struct ubi_ainf_volume, rb); in add_volume()
272 if (vol_id == av->vol_id) in add_volume()
[all …]
Dvtbl.c373 struct ubi_ainf_volume *av) in process_lvol() argument
409 ubi_rb_for_each_entry(rb, aeb, &av->root, u.rb) { in process_lvol()
535 struct ubi_ainf_volume *av; in init_volumes() local
591 av = ubi_find_av(ai, i); in init_volumes()
592 if (!av || !av->leb_count) { in init_volumes()
604 if (av->leb_count != av->used_ebs) { in init_volumes()
610 av->vol_id, av->used_ebs - av->leb_count); in init_volumes()
615 vol->used_ebs = av->used_ebs; in init_volumes()
618 vol->used_bytes += av->last_data_size; in init_volumes()
619 vol->last_eb_bytes = av->last_data_size; in init_volumes()
[all …]
Dfastmap.c186 struct ubi_ainf_volume *av; in add_vol() local
191 av = rb_entry(parent, struct ubi_ainf_volume, rb); in add_vol()
193 if (vol_id > av->vol_id) in add_vol()
195 else if (vol_id < av->vol_id) in add_vol()
201 av = kmalloc(sizeof(struct ubi_ainf_volume), GFP_KERNEL); in add_vol()
202 if (!av) in add_vol()
205 av->highest_lnum = av->leb_count = av->used_ebs = 0; in add_vol()
206 av->vol_id = vol_id; in add_vol()
207 av->data_pad = data_pad; in add_vol()
208 av->last_data_size = last_eb_bytes; in add_vol()
[all …]
Ddebug.c170 void ubi_dump_av(const struct ubi_ainf_volume *av) in ubi_dump_av() argument
173 pr_err("\tvol_id %d\n", av->vol_id); in ubi_dump_av()
174 pr_err("\thighest_lnum %d\n", av->highest_lnum); in ubi_dump_av()
175 pr_err("\tleb_count %d\n", av->leb_count); in ubi_dump_av()
176 pr_err("\tcompat %d\n", av->compat); in ubi_dump_av()
177 pr_err("\tvol_type %d\n", av->vol_type); in ubi_dump_av()
178 pr_err("\tused_ebs %d\n", av->used_ebs); in ubi_dump_av()
179 pr_err("\tlast_data_size %d\n", av->last_data_size); in ubi_dump_av()
180 pr_err("\tdata_pad %d\n", av->data_pad); in ubi_dump_av()
Deba.c1318 struct ubi_ainf_volume *av; in self_check_eba() local
1357 av = ubi_find_av(ai_scan, idx2vol_id(ubi, i)); in self_check_eba()
1358 if (!av) in self_check_eba()
1361 ubi_rb_for_each_entry(rb, aeb, &av->root, u.rb) in self_check_eba()
1364 av = ubi_find_av(ai_fastmap, idx2vol_id(ubi, i)); in self_check_eba()
1365 if (!av) in self_check_eba()
1368 ubi_rb_for_each_entry(rb, aeb, &av->root, u.rb) in self_check_eba()
1410 struct ubi_ainf_volume *av; in ubi_eba_init() local
1441 av = ubi_find_av(ai, idx2vol_id(ubi, i)); in ubi_eba_init()
1442 if (!av) in ubi_eba_init()
[all …]
Ddebug.h58 void ubi_dump_av(const struct ubi_ainf_volume *av);
Dubi.h789 void ubi_remove_av(struct ubi_attach_info *ai, struct ubi_ainf_volume *av);
992 static inline void ubi_move_aeb_to_list(struct ubi_ainf_volume *av, in ubi_move_aeb_to_list() argument
996 rb_erase(&aeb->u.rb, &av->root); in ubi_move_aeb_to_list()
Dwl.c1500 struct ubi_ainf_volume *av; local
1560 ubi_rb_for_each_entry(rb1, av, &ai->volumes, rb) {
1561 ubi_rb_for_each_entry(rb2, aeb, &av->root, u.rb) {
/linux-4.4.14/drivers/infiniband/hw/mlx5/
Dah.c39 memcpy(ah->av.rgid, &ah_attr->grh.dgid, 16); in create_ib_ah()
40 ah->av.grh_gid_fl = cpu_to_be32(ah_attr->grh.flow_label | in create_ib_ah()
43 ah->av.hop_limit = ah_attr->grh.hop_limit; in create_ib_ah()
44 ah->av.tclass = ah_attr->grh.traffic_class; in create_ib_ah()
47 ah->av.rlid = cpu_to_be16(ah_attr->dlid); in create_ib_ah()
48 ah->av.fl_mlid = ah_attr->src_path_bits & 0x7f; in create_ib_ah()
49 ah->av.stat_rate_sl = (ah_attr->static_rate << 4) | (ah_attr->sl & 0xf); in create_ib_ah()
72 tmp = be32_to_cpu(ah->av.grh_gid_fl); in mlx5_ib_query_ah()
77 memcpy(&ah_attr->grh.dgid, ah->av.rgid, 16); in mlx5_ib_query_ah()
78 ah_attr->grh.hop_limit = ah->av.hop_limit; in mlx5_ib_query_ah()
[all …]
Dmlx5_ib.h493 struct mlx5_av av; member
Dqp.c1841 memcpy(&dseg->av, &to_mah(ud_wr(wr)->ah)->av, sizeof(struct mlx5_av)); in set_datagram_seg()
1842 dseg->av.dqp_dct = cpu_to_be32(ud_wr(wr)->remote_qpn | MLX5_EXTENDED_UD_AV); in set_datagram_seg()
1843 dseg->av.key.qkey.qkey = cpu_to_be32(ud_wr(wr)->remote_qkey); in set_datagram_seg()
/linux-4.4.14/arch/powerpc/boot/
Dhack-coff.c32 main(int ac, char **av) in main() argument
45 if ((fd = open(av[1], 2)) == -1) { in main()
46 perror(av[2]); in main()
53 fprintf(stderr, "%s: not an xcoff file\n", av[1]); in main()
75 fprintf(stderr, "%s: write error\n", av[1]); in main()
82 fprintf(stderr, "%s: read error or file too short\n", av[1]); in main()
Daddnote.c119 main(int ac, char **av) in main() argument
126 fprintf(stderr, "Usage: %s elf-file\n", av[0]); in main()
129 fd = open(av[1], O_RDWR); in main()
131 perror(av[1]); in main()
166 av[1]); in main()
233 fprintf(stderr, "%s: write truncated\n", av[1]); in main()
240 fprintf(stderr, "%s does not appear to be an ELF file\n", av[1]); in main()
245 av[1]); in main()
/linux-4.4.14/drivers/infiniband/hw/ocrdma/
Docrdma_ah.c106 memcpy(&ah->av->eth_hdr, &eth, eth_sz); in set_av_attr()
107 memcpy((u8 *)ah->av + eth_sz, &grh, sizeof(struct ocrdma_grh)); in set_av_attr()
109 ah->av->valid |= OCRDMA_AV_VLAN_VALID; in set_av_attr()
110 ah->av->valid = cpu_to_le32(ah->av->valid); in set_av_attr()
201 struct ocrdma_av *av = ah->av; in ocrdma_query_ah() local
204 if (ah->av->valid & OCRDMA_AV_VALID) { in ocrdma_query_ah()
205 grh = (struct ocrdma_grh *)((u8 *)ah->av + in ocrdma_query_ah()
207 attr->sl = be16_to_cpu(av->eth_hdr.vlan_tag) >> 13; in ocrdma_query_ah()
209 grh = (struct ocrdma_grh *)((u8 *)ah->av + in ocrdma_query_ah()
Docrdma_hw.c3037 struct ocrdma_av *av; in ocrdma_alloc_av() local
3040 av = dev->av_tbl.va; in ocrdma_alloc_av()
3043 if (av->valid == 0) { in ocrdma_alloc_av()
3044 av->valid = OCRDMA_AV_VALID; in ocrdma_alloc_av()
3045 ah->av = av; in ocrdma_alloc_av()
3050 av++; in ocrdma_alloc_av()
3062 ah->av->valid = 0; in ocrdma_free_av()
Docrdma.h359 struct ocrdma_av *av; member
Docrdma_verbs.c2009 if (ah->av->valid & OCRDMA_AV_VLAN_VALID) in ocrdma_build_ud_hdr()
/linux-4.4.14/drivers/gpu/drm/nouveau/nvkm/engine/gr/
Dgk20a.c59 struct gk20a_fw_av *av = &((struct gk20a_fw_av *)fuc->data)[i]; in gk20a_gr_av_to_init() local
61 ent->addr = av->addr; in gk20a_gr_av_to_init()
62 ent->data = av->data; in gk20a_gr_av_to_init()
95 struct gk20a_fw_aiv *av = &((struct gk20a_fw_aiv *)fuc->data)[i]; in gk20a_gr_aiv_to_init() local
97 ent->addr = av->addr; in gk20a_gr_aiv_to_init()
98 ent->data = av->data; in gk20a_gr_aiv_to_init()
126 struct gk20a_fw_av *av = &((struct gk20a_fw_av *)fuc->data)[i]; in gk20a_gr_av_to_method() local
127 u32 class = av->addr & 0xffff; in gk20a_gr_av_to_method()
128 u32 addr = (av->addr & 0xffff0000) >> 14; in gk20a_gr_av_to_method()
141 ent->data = av->data; in gk20a_gr_av_to_method()
/linux-4.4.14/drivers/media/pci/cx18/
DMakefile4 cx18-av-core.o cx18-av-audio.o cx18-av-firmware.o cx18-av-vbi.o cx18-scb.o \
/linux-4.4.14/drivers/net/wan/lmc/
Dlmc_media.c638 lmc_av9110_t *av; in lmc_ssi_set_speed() local
648 av = &ictl->cardspec.ssi; in lmc_ssi_set_speed()
650 av->f = ictl->clock_rate; in lmc_ssi_set_speed()
651 av->n = 120; in lmc_ssi_set_speed()
652 av->m = 100; in lmc_ssi_set_speed()
653 av->v = 1; in lmc_ssi_set_speed()
654 av->x = 1; in lmc_ssi_set_speed()
655 av->r = 2; in lmc_ssi_set_speed()
657 write_av9110 (sc, av->n, av->m, av->v, av->x, av->r); in lmc_ssi_set_speed()
661 av = &ctl->cardspec.ssi; in lmc_ssi_set_speed()
[all …]
/linux-4.4.14/drivers/media/pci/ttpci/
Dav7110_av.h14 extern int av7110_av_stop(struct av7110 *av7110, int av);
15 extern int av7110_av_start_record(struct av7110 *av7110, int av,
17 extern int av7110_av_start_play(struct av7110 *av7110, int av);
Dav7110_av.c119 int av7110_av_start_record(struct av7110 *av7110, int av, in av7110_av_start_record() argument
127 if (av7110->playing || (av7110->rec_mode & av)) in av7110_av_start_record()
131 av7110->rec_mode |= av; in av7110_av_start_record()
165 int av7110_av_start_play(struct av7110 *av7110, int av) in av7110_av_start_play() argument
172 if (av7110->playing & av) in av7110_av_start_play()
182 av7110->playing |= av; in av7110_av_start_play()
199 int av7110_av_stop(struct av7110 *av7110, int av) in av7110_av_stop() argument
204 if (!(av7110->playing & av) && !(av7110->rec_mode & av)) in av7110_av_stop()
208 av7110->playing &= ~av; in av7110_av_stop()
221 av7110->rec_mode &= ~av; in av7110_av_stop()
DMakefile15 obj-$(CONFIG_DVB_BUDGET_AV) += budget-av.o
DKconfig136 module will be called budget-av.
/linux-4.4.14/drivers/ps3/
Dps3av_cmd.c41 u32 av; member
46 .av = PS3AV_CMD_AV_CS_RGB_8,
50 .av = PS3AV_CMD_AV_CS_RGB_8,
54 .av = PS3AV_CMD_AV_CS_RGB_8,
58 .av = PS3AV_CMD_AV_CS_YUV444_8,
62 .av = PS3AV_CMD_AV_CS_YUV444_8,
66 .av = PS3AV_CMD_AV_CS_YUV444_8,
70 .av = PS3AV_CMD_AV_CS_YUV422_8,
74 .av = PS3AV_CMD_AV_CS_YUV422_8,
78 .av = PS3AV_CMD_AV_CS_YUV422_8,
[all …]
/linux-4.4.14/drivers/infiniband/core/
Dcm.c221 struct cm_av av; member
263 mad_agent = cm_id_priv->av.port->mad_agent; in cm_alloc_msg()
264 ah = ib_create_ah(mad_agent->qp->pd, &cm_id_priv->av.ah_attr); in cm_alloc_msg()
269 cm_id_priv->av.pkey_index, in cm_alloc_msg()
347 struct ib_grh *grh, struct cm_av *av) in cm_init_av_for_response() argument
349 av->port = port; in cm_init_av_for_response()
350 av->pkey_index = wc->pkey_index; in cm_init_av_for_response()
352 grh, &av->ah_attr); in cm_init_av_for_response()
355 static int cm_init_av_by_path(struct ib_sa_path_rec *path, struct cm_av *av) in cm_init_av_by_path() argument
381 be16_to_cpu(path->pkey), &av->pkey_index); in cm_init_av_by_path()
[all …]
/linux-4.4.14/drivers/gpu/drm/i915/
Dintel_tv.c95 u16 rv, gv, bv, av; member
223 .rv = 0x0340, .gv = 0x030c, .bv = 0x06d0, .av = 0x0200,
233 .rv = 0x037a, .gv = 0x033d, .bv = 0x06f6, .av = 0x0200,
243 .rv = 0x035a, .gv = 0x0322, .bv = 0x06e1, .av = 0x0200,
253 .rv = 0x0399, .gv = 0x0356, .bv = 0x070a, .av = 0x0200,
263 .rv = 0x0353, .gv = 0x031c, .bv = 0x06dc, .av = 0x0200,
273 .rv = 0x0390, .gv = 0x034f, .bv = 0x0705, .av = 0x0200,
283 .rv = 0x0340, .gv = 0x030c, .bv = 0x06d0, .av = 0x0200,
293 .rv = 0x037a, .gv = 0x033d, .bv = 0x06f6, .av = 0x0200,
303 .rv = 0x0340, .gv = 0x030c, .bv = 0x06d0, .av = 0x0200,
[all …]
/linux-4.4.14/Documentation/devicetree/bindings/sound/
Dtlv320aic32x4.txt12 "av" - Analog core power supply
13 If you supply ldoin, dv and av are optional. Otherwise they are required
/linux-4.4.14/security/selinux/
Dhooks.c1570 u32 av = CAP_TO_MASK(cap); in cred_has_capability() local
1590 rc = avc_has_perm_noaudit(sid, sid, sclass, av, 0, &avd); in cred_has_capability()
1592 int rc2 = avc_audit(sid, sid, sclass, av, &avd, rc, &ad, 0); in cred_has_capability()
1636 u32 av) in dentry_has_perm() argument
1643 return inode_has_perm(cred, inode, av, &ad); in dentry_has_perm()
1651 u32 av) in path_has_perm() argument
1658 return inode_has_perm(cred, inode, av, &ad); in path_has_perm()
1664 u32 av) in file_path_has_perm() argument
1670 return inode_has_perm(cred, file_inode(file), av, &ad); in file_path_has_perm()
1683 u32 av) in file_has_perm() argument
[all …]
Davc.c109 static void avc_dump_av(struct audit_buffer *ab, u16 tclass, u32 av) in avc_dump_av() argument
114 if (av == 0) { in avc_dump_av()
125 while (i < (sizeof(av) * 8)) { in avc_dump_av()
126 if ((perm & av) && perms[i]) { in avc_dump_av()
128 av &= ~perm; in avc_dump_av()
134 if (av) in avc_dump_av()
135 audit_log_format(ab, " 0x%x", av); in avc_dump_av()
/linux-4.4.14/scripts/
Dsortextable.h82 Elf_Addr av = _r(a); in compare_extable() local
85 if (av < bv) in compare_extable()
87 if (av > bv) in compare_extable()
Dsortextable.c202 int32_t av = (int32_t)r(a); in compare_relative_table() local
205 if (av < bv) in compare_relative_table()
207 if (av > bv) in compare_relative_table()
/linux-4.4.14/scripts/kconfig/
Dconf.c491 int main(int ac, char **av) in main() argument
493 const char *progname = av[0]; in main()
504 while ((opt = getopt_long(ac, av, "s", long_opts, NULL)) != -1) { in main()
559 printf(_("%s: Kconfig file missing\n"), av[0]); in main()
563 name = av[optind]; in main()
Dgconf.c1444 int main(int ac, char *av[]) in main() argument
1456 gtk_init(&ac, &av); in main()
1466 else if (av[0][0] == '/') in main()
1467 glade_file = g_strconcat(av[0], ".glade", NULL); in main()
1469 glade_file = g_strconcat(g_get_current_dir(), "/", av[0], ".glade", NULL); in main()
1472 if (ac > 1 && av[1][0] == '-') { in main()
1473 switch (av[1][1]) { in main()
1482 printf("%s [-s] <config>\n", av[0]); in main()
1485 name = av[2]; in main()
1487 name = av[1]; in main()
Dkxgettext.c228 int main(int ac, char **av) in main() argument
230 conf_parse(av[1]); in main()
Dmconf.c1007 int main(int ac, char **av) in main() argument
1018 if (ac > 1 && strcmp(av[1], "-s") == 0) { in main()
1022 av++; in main()
1024 conf_parse(av[1]); in main()
Dqconf.cc1824 int main(int ac, char** av) in main() argument
1832 progname = av[0]; in main()
1833 configApp = new QApplication(ac, av); in main()
1834 if (ac > 1 && av[1][0] == '-') { in main()
1835 switch (av[1][1]) { in main()
1843 name = av[2]; in main()
1845 name = av[1]; in main()
Dnconf.c1476 int main(int ac, char **av) in main() argument
1485 if (ac > 1 && strcmp(av[1], "-s") == 0) { in main()
1488 av++; in main()
1490 conf_parse(av[1]); in main()
/linux-4.4.14/drivers/media/pci/cx23885/
DMakefile3 cx23885-ioctl.o cx23885-ir.o cx23885-av.o cx23885-input.o \
/linux-4.4.14/arch/xtensa/include/asm/
Duaccess.h73 .macro set_fs at, av, sp
75 s32i \av, \at, THREAD_CURRENT_DS
/linux-4.4.14/mm/
Dmemory-failure.c410 struct anon_vma *av; in collect_procs_anon() local
413 av = page_lock_anon_vma_read(page); in collect_procs_anon()
414 if (av == NULL) /* Not actually mapped anymore */ in collect_procs_anon()
425 anon_vma_interval_tree_foreach(vmac, &av->rb_root, in collect_procs_anon()
435 page_unlock_anon_vma_read(av); in collect_procs_anon()
/linux-4.4.14/arch/ia64/kernel/
Dpalinfo.c603 pal_bus_features_u_t av, st, ct; in bus_info() local
608 if ((ret=ia64_pal_bus_get_features(&av, &st, &ct)) != 0) in bus_info()
611 avail = av.pal_bus_features_val; in bus_info()
/linux-4.4.14/drivers/gpu/drm/radeon/
Dni_dpm.h79 u32 av; member
Dsi_dpm.c1774 s64 temperature, t_slope, t_intercept, av, bv, t_ref; in si_calculate_leakage_for_v_and_t_formula() local
1783 av = div64_s64(drm_int2fixp(coeff->av), 100000000); in si_calculate_leakage_for_v_and_t_formula()
1790 kv = drm_fixp_mul(av, drm_fixp_exp(drm_fixp_mul(bv, vddc))); in si_calculate_leakage_for_v_and_t_formula()
1817 kv = drm_fixp_mul(div64_s64(drm_int2fixp(coeff->av), 100000000), in si_calculate_leakage_for_v_formula()
Dni_dpm.c753 kv = drm_fixp_mul(div64_s64(drm_int2fixp(coeff->av), 1000), in ni_calculate_leakage_for_v_and_t_formula()
4205 ni_pi->cac_data.leakage_coefficients.av = 51; in ni_dpm_init()
/linux-4.4.14/drivers/infiniband/ulp/ipoib/
Dipoib_multicast.c272 struct ib_ah_attr av = { in ipoib_mcast_join_finish() local
285 av.grh.dgid = mcast->mcmember.mgid; in ipoib_mcast_join_finish()
287 ah = ipoib_create_ah(dev, priv->pd, &av); in ipoib_mcast_join_finish()
Dipoib_main.c685 struct ib_ah_attr av; in path_rec_completion() local
687 if (!ib_init_ah_from_path(priv->ca, priv->port, pathrec, &av)) in path_rec_completion()
688 ah = ipoib_create_ah(dev, priv->pd, &av); in path_rec_completion()
/linux-4.4.14/include/linux/mlx4/
Dqp.h351 __be32 av[8]; member
/linux-4.4.14/arch/x86/xen/
Denlighten.c532 void *av = __va(PFN_PHYS(pfn)); in set_aliased_prot() local
534 if (av != v) in set_aliased_prot()
535 if (HYPERVISOR_update_va_mapping((unsigned long)av, pte, 0)) in set_aliased_prot()
/linux-4.4.14/drivers/net/ethernet/stmicro/stmmac/
Dcommon.h263 unsigned int av; member
Dstmmac_main.c1591 priv->dma_cap.av = (hw_cap & DMA_HW_FEAT_AVSEL) >> 15; in stmmac_get_hw_features()
2632 seq_printf(seq, "\tAV features: %s\n", (priv->dma_cap.av) ? "Y" : "N"); in stmmac_sysfs_dma_cap_read()
/linux-4.4.14/arch/s390/kvm/
Dgaccess.c84 unsigned long av : 1; /* ACCF-Validity Control */ member
126 unsigned long av : 1; /* ACCF-Validity Control */ member
/linux-4.4.14/include/linux/mlx5/
Dqp.h260 struct mlx5_av av; member
/linux-4.4.14/Documentation/DocBook/media/
Dfieldseq_bt.gif.b64109 meYant5Y8Q1jUP3Wf/3Yn/3av/3c3/3e//3gX/3fgPufoukL6/zoL18hkPyoLRl/HurwH//yj+iO
/linux-4.4.14/Documentation/DocBook/
Dgpu.xml.db421 API-drm-av-sync-delay