| /linux/kernel/bpf/ |
| H A D | memalloc.c | 502 int bpf_mem_alloc_init(struct bpf_mem_alloc *ma, int size, bool percpu) in bpf_mem_alloc_init() argument 515 ma->percpu = percpu; in bpf_mem_alloc_init() 530 ma->objcg = objcg; in bpf_mem_alloc_init() 541 ma->cache = pc; in bpf_mem_alloc_init() 551 ma->objcg = objcg; in bpf_mem_alloc_init() 566 ma->caches = pcc; in bpf_mem_alloc_init() 570 int bpf_mem_alloc_percpu_init(struct bpf_mem_alloc *ma, struct obj_cgroup *objcg) in bpf_mem_alloc_percpu_init() argument 578 ma->caches = pcc; in bpf_mem_alloc_percpu_init() 579 ma->objcg = objcg; in bpf_mem_alloc_percpu_init() 580 ma->percpu = true; in bpf_mem_alloc_percpu_init() [all …]
|
| H A D | lpm_trie.c | 36 struct bpf_mem_alloc ma; member 297 node = bpf_mem_cache_alloc(&trie->ma); in lpm_trie_node_alloc() 450 bpf_mem_cache_free(&trie->ma, new_node); in trie_update_elem() 451 bpf_mem_cache_free_rcu(&trie->ma, free_node); in trie_update_elem() 551 bpf_mem_cache_free_rcu(&trie->ma, free_parent); in trie_delete_elem() 552 bpf_mem_cache_free_rcu(&trie->ma, free_node); in trie_delete_elem() 603 err = bpf_mem_alloc_init(&trie->ma, leaf_size, false); in trie_alloc() 652 bpf_mem_alloc_destroy(&trie->ma); in trie_free()
|
| /linux/arch/parisc/lib/ |
| H A D | lusercopy.S | 41 1: stbs,ma %r0,1(%sr3,%r26) 131 20: ldb,ma 1(srcspc,src),t1 132 21: stb,ma t1,1(dstspc,dst) 147 12: std,ma t1,8(dstspc,dst) 148 13: std,ma t2,8(dstspc,dst) 152 16: std,ma t1,8(dstspc,dst) 153 17: std,ma t2,8(dstspc,dst) 169 20: ldw,ma 4(srcspc,src),t1 170 21: stw,ma t1,4(dstspc,dst) 183 20: ldb,ma 1(srcspc,src),t1 [all …]
|
| /linux/include/linux/ |
| H A D | bpf_mem_alloc.h | 31 int bpf_mem_alloc_init(struct bpf_mem_alloc *ma, int size, bool percpu); 33 int bpf_mem_alloc_percpu_init(struct bpf_mem_alloc *ma, struct obj_cgroup *objcg); 35 int bpf_mem_alloc_percpu_unit_init(struct bpf_mem_alloc *ma, int size); 36 void bpf_mem_alloc_destroy(struct bpf_mem_alloc *ma); 37 void bpf_mem_alloc_set_dtor(struct bpf_mem_alloc *ma, 46 void *bpf_mem_alloc(struct bpf_mem_alloc *ma, size_t size); 47 void bpf_mem_free(struct bpf_mem_alloc *ma, void *ptr); 48 void bpf_mem_free_rcu(struct bpf_mem_alloc *ma, void *ptr); 51 void *bpf_mem_cache_alloc(struct bpf_mem_alloc *ma); 52 void bpf_mem_cache_free(struct bpf_mem_alloc *ma, void *ptr); [all …]
|
| H A D | kdev_t.h | 12 #define MKDEV(ma,mi) (((ma) << MINORBITS) | (mi)) argument
|
| /linux/arch/parisc/kernel/ |
| H A D | relocate_kernel.S | 79 LDREG,ma REG_SZ(%arg0), %r3 107 LDREG,ma REG_SZ(%r21), %r8 108 LDREG,ma REG_SZ(%r21), %r9 109 LDREG,ma REG_SZ(%r21), %r10 110 LDREG,ma REG_SZ(%r21), %r11 111 STREG,ma %r8, REG_SZ(%r20) 112 STREG,ma %r9, REG_SZ(%r20) 113 STREG,ma %r10, REG_SZ(%r20) 114 STREG,ma %r11, REG_SZ(%r20) 117 LDREG,ma REG_SZ(%r21), %r8 [all …]
|
| H A D | head.S | 65 stw,ma %r0,4(%r3) 69 stw,ma %arg0,4(%r1) 70 stw,ma %arg1,4(%r1) 71 stw,ma %arg2,4(%r1) 72 stw,ma %arg3,4(%r1)
|
| /linux/net/openvswitch/ |
| H A D | flow_table.c | 175 static void __mask_array_destroy(struct mask_array *ma) in __mask_array_destroy() argument 177 free_percpu(ma->masks_usage_stats); in __mask_array_destroy() 178 kfree(ma); in __mask_array_destroy() 183 struct mask_array *ma = container_of(rcu, struct mask_array, rcu); in mask_array_rcu_cb() local 185 __mask_array_destroy(ma); in mask_array_rcu_cb() 188 static void tbl_mask_array_reset_counters(struct mask_array *ma) in tbl_mask_array_reset_counters() argument 197 for (i = 0; i < ma->max; i++) { in tbl_mask_array_reset_counters() 198 ma->masks_usage_zero_cntr[i] = 0; in tbl_mask_array_reset_counters() 205 stats = per_cpu_ptr(ma->masks_usage_stats, cpu); in tbl_mask_array_reset_counters() 211 ma in tbl_mask_array_reset_counters() 271 struct mask_array *ma = ovsl_dereference(tbl->mask_array); tbl_mask_array_add_mask() local 299 struct mask_array *ma = ovsl_dereference(tbl->mask_array); tbl_mask_array_del_mask() local 413 struct mask_array *ma; ovs_flow_tbl_init() local 516 struct mask_array *ma = rcu_dereference_raw(table->mask_array); ovs_flow_tbl_destroy() local 727 flow_lookup(struct flow_table * tbl,struct table_instance * ti,struct mask_array * ma,const struct sw_flow_key * key,u32 * n_mask_hit,u32 * n_cache_hit,u32 * index) flow_lookup() argument 788 struct mask_array *ma = rcu_dereference(tbl->mask_array); ovs_flow_tbl_lookup_stats() local 849 struct mask_array *ma = rcu_dereference_ovsl(tbl->mask_array); ovs_flow_tbl_lookup() local 868 struct mask_array *ma = ovsl_dereference(tbl->mask_array); ovs_flow_tbl_lookup_exact() local 936 struct mask_array *ma = rcu_dereference_ovsl(table->mask_array); ovs_flow_tbl_num_masks() local 988 struct mask_array *ma; flow_mask_find() local 1105 struct mask_array *ma = rcu_dereference_ovsl(table->mask_array); ovs_flow_masks_rebalance() local [all...] |
| /linux/arch/parisc/include/asm/ |
| H A D | assembly.h | 63 #define STREGM std,ma 278 fstd,ma %fr0, 8(\regs) 279 fstd,ma %fr1, 8(\regs) 280 fstd,ma %fr2, 8(\regs) 281 fstd,ma %fr3, 8(\regs) 282 fstd,ma %fr4, 8(\regs) 283 fstd,ma %fr5, 8(\regs) 284 fstd,ma %fr6, 8(\regs) 285 fstd,ma %fr7, 8(\regs) 286 fstd,ma %fr8, 8(\regs) [all …]
|
| /linux/arch/riscv/crypto/ |
| H A D | aes-riscv64-zvkned-zvbb-zvkg.S | 92 vsetivli zero, 4, e32, m1, ta, ma 109 vsetvli VL, LEN32, e32, m4, ta, ma 113 vsetvli zero, t0, e32, m1, ta, ma 119 vsetvli zero, t0, e64, m2, ta, ma 123 vsetvli zero, t1, e32, m2, ta, ma 131 vsetvli zero, LEN32, e32, m4, ta, ma 143 vsetivli zero, 2, e64, m1, ta, ma 145 vsetivli zero, 1, e64, m1, tu, ma 148 vsetvli zero, LEN32, e32, m4, ta, ma 163 vsetivli zero, 4, e32, m1, ta, ma [all …]
|
| H A D | aes-riscv64-zvkned-zvkb.S | 71 vsetvli t1, zero, e8, m1, ta, ma 75 vsetivli zero, 4, e32, m1, ta, ma 84 vsetvli zero, LEN32, e32, m4, ta, ma 112 vsetvli t0, LEN, e8, m4, ta, ma
|
| H A D | sm4-riscv64-zvksed-zvkb.S | 54 vsetivli zero, 4, e32, m1, ta, ma 86 vsetivli zero, 4, e32, m1, ta, ma
|
| /linux/io_uring/ |
| H A D | advise.c | 34 struct io_madvise *ma = io_kiocb_to_cmd(req, struct io_madvise); in io_madvise_prep() local 39 ma->addr = READ_ONCE(sqe->addr); in io_madvise_prep() 40 ma->len = READ_ONCE(sqe->off); in io_madvise_prep() 41 if (!ma->len) in io_madvise_prep() 42 ma->len = READ_ONCE(sqe->len); in io_madvise_prep() 43 ma->advice = READ_ONCE(sqe->fadvise_advice); in io_madvise_prep() 54 struct io_madvise *ma = io_kiocb_to_cmd(req, struct io_madvise); in io_madvise() local 59 ret = do_madvise(current->mm, ma->addr, ma->len, ma in io_madvise() [all...] |
| /linux/arch/sh/kernel/ |
| H A D | traps_32.c | 104 struct mem_access *ma) in handle_unaligned_ins() argument 139 if (ma->from(dst, srcu, count)) in handle_unaligned_ins() 152 if (ma->to(dstu, src, count)) in handle_unaligned_ins() 163 if (ma->to(dstu, src, 4)) in handle_unaligned_ins() 176 if (ma->to(dstu, src, count)) in handle_unaligned_ins() 187 if (ma->from(dst, srcu, 4)) in handle_unaligned_ins() 202 if (ma->from(dst, srcu, count)) in handle_unaligned_ins() 218 if (ma->to(dstu, src, 2)) in handle_unaligned_ins() 232 if (ma->from(dst, srcu, 2)) in handle_unaligned_ins() 251 if (ma->from(dst, srcu, 2)) in handle_unaligned_ins() [all …]
|
| /linux/net/ipv6/ |
| H A D | mcast.c | 76 static void igmp6_join_group(struct ifmcaddr6 *ma); 77 static void igmp6_leave_group(struct ifmcaddr6 *ma); 990 struct ifmcaddr6 *ma, __rcu **map; in __ipv6_dev_mc_dec() local 995 (ma = mc_dereference(*map, idev)); in __ipv6_dev_mc_dec() 996 map = &ma->next) { in __ipv6_dev_mc_dec() 997 if (ipv6_addr_equal(&ma->mca_addr, addr)) { in __ipv6_dev_mc_dec() 998 if (--ma->mca_users == 0) { in __ipv6_dev_mc_dec() 999 *map = ma->next; in __ipv6_dev_mc_dec() 1001 igmp6_group_dropped(ma); in __ipv6_dev_mc_dec() 1002 inet6_ifmcaddr_notify(idev->dev, ma, in __ipv6_dev_mc_dec() [all …]
|
| /linux/arch/x86/boot/compressed/ |
| H A D | acpi.c | 299 struct acpi_srat_mem_affinity *ma; in count_immovable_mem_regions() local 301 ma = (struct acpi_srat_mem_affinity *)sub_table; in count_immovable_mem_regions() 302 if (!(ma->flags & ACPI_SRAT_MEM_HOT_PLUGGABLE) && ma->length) { in count_immovable_mem_regions() 303 immovable_mem[num].start = ma->base_address; in count_immovable_mem_regions() 304 immovable_mem[num].size = ma->length; in count_immovable_mem_regions()
|
| /linux/include/uapi/linux/ |
| H A D | kdev_t.h | 12 #define MKDEV(ma,mi) ((ma)<<8 | (mi)) argument
|
| /linux/drivers/gpu/drm/i915/gvt/ |
| H A D | debugfs.c | 48 struct diff_mmio *ma; in mmio_offset_compare() local 51 ma = container_of(a, struct diff_mmio, node); in mmio_offset_compare() 53 if (ma->offset < mb->offset) in mmio_offset_compare() 55 else if (ma->offset > mb->offset) in mmio_offset_compare()
|
| /linux/lib/crypto/riscv/ |
| H A D | sha256-riscv64-zvknha_or_zvknhb-zvkb.S | 114 vsetivli zero, 4, e32, m1, ta, ma 150 vsetivli zero, 1, e8, m1, ta, ma 158 vsetivli zero, 1, e32, m1, ta, ma 161 vsetivli zero, 4, e32, m1, ta, ma
|
| H A D | sha512-riscv64-zvknhb-zvkb.S | 102 vsetivli zero, 1, e8, m1, ta, ma 110 vsetivli zero, 1, e32, m1, ta, ma 113 vsetivli zero, 4, e64, m2, ta, ma
|
| /linux/drivers/net/ethernet/chelsio/cxgb/ |
| H A D | pm3393.c | 490 static int pm3393_macaddress_set(struct cmac *cmac, const u8 ma[6]) in pm3393_macaddress_set() 513 memcpy(cmac->instance->mac_addr, ma, ETH_ALEN); in pm3393_macaddress_set() 515 lo = ((u32) ma[1] << 8) | (u32) ma[0]; in pm3393_macaddress_set() 516 mid = ((u32) ma[3] << 8) | (u32) ma[2]; in pm3393_macaddress_set() 517 hi = ((u32) ma[5] << 8) | (u32) ma[4]; in pm3393_macaddress_set()
|
| /linux/arch/riscv/kernel/ |
| H A D | vec-copy-unaligned.S | 27 vsetivli t0, 8, WORD_SEW, m8, ta, ma 49 vsetivli t0, 8, e8, m8, ta, ma
|
| /linux/net/appletalk/ |
| H A D | aarp.c | 707 struct atalk_addr sa, *ma, da; in aarp_rcv() local 801 ma = __aarp_proxy_find(dev, &sa); in aarp_rcv() 802 if (!ma) in aarp_rcv() 803 ma = &ifa->address; in aarp_rcv() 807 ma = &da; in aarp_rcv() 833 if (sa.s_node != ma->s_node) in aarp_rcv() 836 if (sa.s_net && ma->s_net && sa.s_net != ma->s_net) in aarp_rcv() 844 aarp_send_reply(dev, ma, &sa, ea->hw_src); in aarp_rcv()
|
| /linux/Documentation/translations/it_IT/process/ |
| H A D | volatile-considered-harmful.rst | 15 *volatile* come una variabile atomica di facile utilizzo, ma non è così. 48 potrebbe pensare di sapere cosa ci sarà nel dato condiviso ma la chiamata 62 essere protetto dai lock, ma si potrebbe anche desiderare che il compilatore 92 - I codice *inline assembly* che fa cambiamenti nella memoria, ma che non 97 volta che viene letta ma può essere lette senza alcuna sincronizzazione. 98 Quindi jiffies può essere *volatile*, ma l'aggiunta ad altre variabili di
|
| /linux/drivers/net/ethernet/mellanox/mlx5/core/en/rep/ |
| H A D | tc.c | 151 struct tc_cls_matchall_offload *ma) in mlx5e_tc_stats_matchall() argument 160 flow_stats_update(&ma->stats, dbytes, dpkts, 0, jiffies, in mlx5e_tc_stats_matchall() 166 struct tc_cls_matchall_offload *ma) in mlx5e_rep_setup_tc_cls_matchall() argument 168 switch (ma->command) { in mlx5e_rep_setup_tc_cls_matchall() 170 return mlx5e_tc_configure_matchall(priv, ma); in mlx5e_rep_setup_tc_cls_matchall() 172 return mlx5e_tc_delete_matchall(priv, ma); in mlx5e_rep_setup_tc_cls_matchall() 174 mlx5e_tc_stats_matchall(priv, ma); in mlx5e_rep_setup_tc_cls_matchall()
|