| /linux/arch/x86/boot/compressed/ |
| H A D | efi.c | 22 enum efi_type et; in efi_get_type() local 29 et = EFI_TYPE_64; in efi_get_type() 31 et = EFI_TYPE_32; in efi_get_type() 34 et = EFI_TYPE_NONE; in efi_get_type() 45 et = EFI_TYPE_NONE; in efi_get_type() 49 return et; in efi_get_type() 64 enum efi_type et; in efi_get_system_table() local 88 enum efi_type et) in get_kexec_setup_data() argument 135 enum efi_type et; in efi_get_conf_table() local 146 et = efi_get_type(bp); in efi_get_conf_table() [all …]
|
| H A D | mem.c | 54 enum efi_type et; in init_unaccepted_memory() local 57 et = efi_get_type(boot_params_ptr); in init_unaccepted_memory() 58 if (et == EFI_TYPE_NONE) in init_unaccepted_memory()
|
| H A D | acpi.c | 58 enum efi_type et; in efi_get_rsdp_addr() local 61 et = efi_get_type(boot_params_ptr); in efi_get_rsdp_addr() 62 if (et == EFI_TYPE_NONE) in efi_get_rsdp_addr()
|
| /linux/block/ |
| H A D | blk-mq-sched.c | 415 void blk_mq_free_sched_tags(struct elevator_tags *et, in blk_mq_free_sched_tags() argument 422 blk_mq_free_map_and_rqs(set, et->tags[0], BLK_MQ_NO_HCTX_IDX); in blk_mq_free_sched_tags() 424 for (i = 0; i < et->nr_hw_queues; i++) in blk_mq_free_sched_tags() 425 blk_mq_free_map_and_rqs(set, et->tags[i], i); in blk_mq_free_sched_tags() 428 kfree(et); in blk_mq_free_sched_tags() 435 if (res->et) { in blk_mq_free_sched_res() 436 blk_mq_free_sched_tags(res->et, set); in blk_mq_free_sched_res() 437 res->et = NULL; in blk_mq_free_sched_res() 509 struct elevator_tags *et; in blk_mq_alloc_sched_tags() local 517 et = kmalloc_flex(*et, tags, nr_tags, gfp); in blk_mq_alloc_sched_tags() [all …]
|
| H A D | blk-ioc.c | 41 struct elevator_type *et = icq->q->elevator->type; in ioc_exit_icq() local 46 if (et->ops.exit_icq) in ioc_exit_icq() 47 et->ops.exit_icq(icq); in ioc_exit_icq() 70 struct elevator_type *et = q->elevator->type; in ioc_destroy_icq() local 96 icq->__rcu_icq_cache = et->icq_cache; in ioc_destroy_icq() 358 struct elevator_type *et = q->elevator->type; in ioc_create_icq() local 362 icq = kmem_cache_alloc_node(et->icq_cache, GFP_ATOMIC | __GFP_ZERO, in ioc_create_icq() 368 kmem_cache_free(et->icq_cache, icq); in ioc_create_icq() 384 if (et->ops.init_icq) in ioc_create_icq() 385 et->ops.init_icq(icq); in ioc_create_icq() [all …]
|
| H A D | blk-sysfs.c | 69 struct elevator_tags *et = NULL; in queue_requests_store() local 110 nr > q->elevator->et->nr_requests) { in queue_requests_store() 115 et = blk_mq_alloc_sched_tags(set, q->nr_hw_queues, nr); in queue_requests_store() 116 if (!et) { in queue_requests_store() 124 et = blk_mq_update_nr_requests(q, et, nr); in queue_requests_store() 128 if (et) in queue_requests_store() 129 blk_mq_free_sched_tags(et, set); in queue_requests_store()
|
| H A D | elevator.h | 39 struct elevator_tags *et; member 149 struct elevator_tags *et; member
|
| H A D | elevator.c | 137 eq->et = res->et; in elevator_alloc() 634 .et = ctx->old->et, in elevator_change_done()
|
| /linux/tools/testing/selftests/net/forwarding/ |
| H A D | tc_tunnel_key.sh | 17 tunnel_create h1-et vxlan 192.0.2.1 192.0.2.2 dev $h1 dstport 0 external 18 tc qdisc add dev h1-et clsact 19 mtu_set h1-et 1230 26 tc qdisc del dev h1-et clsact 27 tunnel_destroy h1-et 115 tc filter add dev h1-et egress protocol all pref 1 handle 1 matchall $tcflags \ 117 $MZ h1-et -c 1 -p 930 -a 00:aa:bb:cc:dd:ee -b 00:ee:dd:cc:bb:aa -t ip -q 121 $MZ h1-et -c 1 -p 931 -a 00:aa:bb:cc:dd:ee -b 00:ee:dd:cc:bb:aa -t ip -q 131 $MZ h1-et -c 1 -p 931 -a 00:aa:bb:cc:dd:ee -b 00:ee:dd:cc:bb:aa -t ip -q 142 tc filter del dev h1-et egress pref 1 handle 1 matchall
|
| /linux/tools/perf/util/cs-etm-decoder/ |
| H A D | cs-etm-decoder.c | 377 u32 et = 0; in cs_etm_decoder__buffer_packet() local 386 et = packet_queue->tail; in cs_etm_decoder__buffer_packet() 387 et = (et + 1) & (CS_ETM_PACKET_MAX_BUFFER - 1); in cs_etm_decoder__buffer_packet() 388 packet_queue->tail = et; in cs_etm_decoder__buffer_packet() 391 packet_queue->packet_buffer[et].sample_type = sample_type; in cs_etm_decoder__buffer_packet() 392 packet_queue->packet_buffer[et].isa = CS_ETM_ISA_UNKNOWN; in cs_etm_decoder__buffer_packet() 393 packet_queue->packet_buffer[et].cpu = cpu; in cs_etm_decoder__buffer_packet() 394 packet_queue->packet_buffer[et].start_addr = CS_ETM_INVAL_ADDR; in cs_etm_decoder__buffer_packet() 395 packet_queue->packet_buffer[et].end_addr = CS_ETM_INVAL_ADDR; in cs_etm_decoder__buffer_packet() 396 packet_queue->packet_buffer[et].instr_count = 0; in cs_etm_decoder__buffer_packet() [all …]
|
| /linux/drivers/gpu/drm/lima/ |
| H A D | lima_drv.c | 318 struct lima_sched_error_task *et; in lima_error_state_read() local 328 list_for_each_entry(et, &ldev->error_task_list, list) { in lima_error_state_read() 329 if (!lima_read_block(&reader, et->data, et->size)) in lima_error_state_read() 344 struct lima_sched_error_task *et, *tmp; in lima_error_state_write() local 348 list_for_each_entry_safe(et, tmp, &ldev->error_task_list, list) { in lima_error_state_write() 349 list_del(&et->list); in lima_error_state_write() 350 kvfree(et); in lima_error_state_write()
|
| H A D | lima_device.c | 443 struct lima_sched_error_task *et, *tmp; in lima_device_fini() local 445 list_for_each_entry_safe(et, tmp, &ldev->error_task_list, list) { in lima_device_fini() 446 list_del(&et->list); in lima_device_fini() 447 kvfree(et); in lima_device_fini()
|
| /linux/arch/nios2/kernel/ |
| H A D | entry.S | 58 movui et, (KUSER_BASE + 4 + (cmpxchg_stw - __kuser_helper_start)) 59 bgtu ea, et, 1f 61 subi et, et, (cmpxchg_stw - cmpxchg_ldw) /* et = cmpxchg_ldw + 4 */ 62 bltu ea, et, 1f 63 stw et, PT_EA(sp) /* fix up EA */ 64 mov ea, et
|
| H A D | insnemu.S | 39 ldw et, PT_ESTATUS(sp) 40 wrctl estatus, et 42 ldw et, PT_SP(sp) /* backup sp in et */ 144 stw et, 108(sp) /* et contains previous sp value. */
|
| /linux/fs/ocfs2/ |
| H A D | move_extents.c | 43 struct ocfs2_extent_tree et; member 60 u64 ino = ocfs2_metadata_cache_owner(context->et.et_ci); in __ocfs2_move_extent() 76 path = ocfs2_new_path_from_et(&context->et); in __ocfs2_move_extent() 114 ret = ocfs2_split_extent(handle, &context->et, path, index, in __ocfs2_move_extent() 150 struct ocfs2_extent_tree *et, in ocfs2_lock_meta_allocator_move_extents() argument 161 num_free_extents = ocfs2_num_free_extents(et); in ocfs2_lock_meta_allocator_move_extents() 170 extra_blocks += ocfs2_extend_meta_needed(et->et_root_el); in ocfs2_lock_meta_allocator_move_extents() 179 *credits += ocfs2_calc_extend_credits(osb->sb, et->et_root_el); in ocfs2_lock_meta_allocator_move_extents() 237 ret = ocfs2_lock_meta_allocator_move_extents(inode, &context->et, in ocfs2_defrag_extent() 611 ret = ocfs2_lock_meta_allocator_move_extents(inode, &context->et, in ocfs2_move_extent() [all …]
|
| H A D | file.c | 548 struct ocfs2_extent_tree et; in ocfs2_add_inode_data() local 550 ocfs2_init_dinode_extent_tree(&et, INODE_CACHE(inode), fe_bh); in ocfs2_add_inode_data() 551 return ocfs2_add_clusters_in_btree(handle, &et, logical_offset, in ocfs2_add_inode_data() 570 struct ocfs2_extent_tree et; in ocfs2_extend_allocation() local 589 ocfs2_init_dinode_extent_tree(&et, INODE_CACHE(inode), bh); in ocfs2_extend_allocation() 590 status = ocfs2_lock_allocators(inode, &et, clusters_to_add, 0, in ocfs2_extend_allocation() 1778 struct ocfs2_extent_tree et; in ocfs2_remove_inode_range() local 1785 ocfs2_init_dinode_extent_tree(&et, INODE_CACHE(inode), di_bh); in ocfs2_remove_inode_range() 1852 path = ocfs2_new_path_from_et(&et); in ocfs2_remove_inode_range() 1914 ret = ocfs2_remove_btree_range(inode, &et, trunc_cpos, in ocfs2_remove_inode_range()
|
| /linux/drivers/mtd/spi-nor/ |
| H A D | debugfs.c | 132 struct spi_nor_erase_type *et = &erase_map->erase_type[i]; in spi_nor_params_show() local 134 if (et->size) { in spi_nor_params_show() 135 string_get_size(et->size, 1, STRING_UNITS_2, buf, in spi_nor_params_show() 137 seq_printf(s, " %02x (%s) [%d]\n", et->opcode, buf, i); in spi_nor_params_show()
|
| /linux/drivers/md/ |
| H A D | dm-snap.c | 629 static uint32_t exception_hash(struct dm_exception_table *et, chunk_t chunk); 659 static int dm_exception_table_init(struct dm_exception_table *et, in dm_exception_table_init() argument 664 et->hash_shift = hash_shift; in dm_exception_table_init() 665 et->hash_mask = size - 1; in dm_exception_table_init() 666 et->table = kvmalloc_objs(struct dm_hlist_head, size); in dm_exception_table_init() 667 if (!et->table) in dm_exception_table_init() 671 INIT_HLIST_HEAD(&et->table[i].head); in dm_exception_table_init() 672 spin_lock_init(&et->table[i].lock); in dm_exception_table_init() 678 static void dm_exception_table_exit(struct dm_exception_table *et, in dm_exception_table_exit() argument 686 size = et->hash_mask + 1; in dm_exception_table_exit() [all …]
|
| /linux/arch/x86/kernel/cpu/microcode/ |
| H A D | amd.c | 345 static u16 find_equiv_id(struct equiv_cpu_table *et, u32 sig) in find_equiv_id() argument 353 if (!et || !et->num_entries) in find_equiv_id() 356 for (i = 0; i < et->num_entries; i++) { in find_equiv_id() 357 struct equiv_cpu_entry *e = &et->entry[i]; in find_equiv_id()
|
| /linux/tools/power/cpupower/po/ |
| H A D | fr.po | 215 msgstr "Veuillez rapportez les erreurs et les bogues à %s, s'il vous plait.\n" 340 msgstr " et " 406 " -l, --hwlimits Affiche les fréquences minimales et maximales du CPU " 456 " -l, --hwlimits Affiche les fréquences minimales et maximales du CPU " 474 " 2.4 et les anciennes versions 2.6 du noyau\n" 483 " pour les options -f, -w et -s (MHz, GHz)\n" 575 " et activé.\n" 647 "l'option -f/--freq est incompatible avec les options -d/--min, -u/--max et\n" 656 "L'un de ces paramètres est obligatoire : -f/--freq, -d/--min, -u/--max et\n" 926 " 2.4 et les anciennes versions 2.6 du noyau\n"
|
| /linux/tools/perf/scripts/python/ |
| H A D | intel-pt-events.py | 212 et = data[0] & 0x3f 213 s = glb_evd[et] 217 print("EVD_%u: %#x" % (et, data[1]), end=' ')
|
| /linux/net/netfilter/ |
| H A D | x_tables.c | 900 const struct compat_xt_error_target *et = (const void *)t; in xt_compat_check_entry_offsets() local 902 if (!error_tg_ok(t->u.target_size, sizeof(*et), in xt_compat_check_entry_offsets() 903 et->errorname, sizeof(et->errorname))) in xt_compat_check_entry_offsets() 994 const struct xt_error_target *et = (const void *)t; in xt_check_entry_offsets() local 996 if (!error_tg_ok(t->u.target_size, sizeof(*et), in xt_check_entry_offsets() 997 et->errorname, sizeof(et->errorname))) in xt_check_entry_offsets()
|
| /linux/drivers/block/drbd/ |
| H A D | drbd_req.c | 1709 unsigned long ent = 0, dt = 0, et, nt; /* effective timeout = ko_count * timeout */ in request_timer_fn() local 1728 et = min_not_zero(dt, ent); in request_timer_fn() 1730 if (!et) in request_timer_fn() 1734 nt = now + et; in request_timer_fn() 1784 ? req_peer->pre_send_jif + ent : now + et; in request_timer_fn() 1786 ? oldest_submit_jif + dt : now + et; in request_timer_fn()
|
| /linux/drivers/gpu/drm/ |
| H A D | drm_file.c | 202 struct drm_pending_event *e, *et; in drm_events_release() local 208 list_for_each_entry_safe(e, et, &file_priv->pending_event_list, in drm_events_release() 215 list_for_each_entry_safe(e, et, &file_priv->event_list, link) { in drm_events_release()
|
| /linux/drivers/net/ethernet/mellanox/mlxsw/ |
| H A D | core_acl_flex_actions.h | 73 u16 vid, u8 pcp, u8 et,
|