Home
last modified time | relevance | path

Searched refs:es (Results 1 – 178 of 178) sorted by relevance

/linux-4.1.27/fs/ext4/
Dextents_status.c184 struct extent_status *es; in ext4_es_print_tree() local
185 es = rb_entry(node, struct extent_status, rb_node); in ext4_es_print_tree()
187 es->es_lblk, es->es_len, in ext4_es_print_tree()
188 ext4_es_pblock(es), ext4_es_status(es)); in ext4_es_print_tree()
197 static inline ext4_lblk_t ext4_es_end(struct extent_status *es) in ext4_es_end() argument
199 BUG_ON(es->es_lblk + es->es_len < es->es_lblk); in ext4_es_end()
200 return es->es_lblk + es->es_len - 1; in ext4_es_end()
211 struct extent_status *es = NULL; in __es_tree_search() local
214 es = rb_entry(node, struct extent_status, rb_node); in __es_tree_search()
215 if (lblk < es->es_lblk) in __es_tree_search()
[all …]
Dextents_status.h94 struct extent_status *es);
96 struct extent_status *es);
98 static inline unsigned int ext4_es_status(struct extent_status *es) in ext4_es_status() argument
100 return es->es_pblk >> ES_SHIFT; in ext4_es_status()
103 static inline unsigned int ext4_es_type(struct extent_status *es) in ext4_es_type() argument
105 return (es->es_pblk & ES_TYPE_MASK) >> ES_SHIFT; in ext4_es_type()
108 static inline int ext4_es_is_written(struct extent_status *es) in ext4_es_is_written() argument
110 return (ext4_es_type(es) & EXTENT_STATUS_WRITTEN) != 0; in ext4_es_is_written()
113 static inline int ext4_es_is_unwritten(struct extent_status *es) in ext4_es_is_unwritten() argument
115 return (ext4_es_type(es) & EXTENT_STATUS_UNWRITTEN) != 0; in ext4_es_is_unwritten()
[all …]
Dsuper.c68 struct ext4_super_block *es);
70 struct ext4_super_block *es);
118 struct ext4_super_block *es) in ext4_verify_csum_type() argument
124 return es->s_checksum_type == EXT4_CRC32C_CHKSUM; in ext4_verify_csum_type()
128 struct ext4_super_block *es) in ext4_superblock_csum() argument
134 csum = ext4_chksum(sbi, ~0, (char *)es, offset); in ext4_superblock_csum()
140 struct ext4_super_block *es) in ext4_superblock_csum_verify() argument
145 return es->s_checksum == ext4_superblock_csum(sb, es); in ext4_superblock_csum_verify()
150 struct ext4_super_block *es = EXT4_SB(sb)->s_es; in ext4_superblock_csum_set() local
155 es->s_checksum = ext4_superblock_csum(sb, es); in ext4_superblock_csum_set()
[all …]
Dresize.c89 struct ext4_super_block *es = sbi->s_es; in verify_group_input() local
90 ext4_fsblk_t start = ext4_blocks_count(es); in verify_group_input()
480 struct ext4_super_block *es = sbi->s_es; in setup_new_flex_group_blocks() local
492 reserved_gdb = le16_to_cpu(es->s_reserved_gdt_blocks); in setup_new_flex_group_blocks()
757 struct ext4_super_block *es = EXT4_SB(sb)->s_es; in add_new_gdb() local
861 le16_add_cpu(&es->s_reserved_gdt_blocks, -1); in add_new_gdb()
1156 struct ext4_super_block *es = sbi->s_es; in ext4_add_new_descs() local
1164 le16_to_cpu(es->s_reserved_gdt_blocks) : 0; in ext4_add_new_descs()
1314 struct ext4_super_block *es = sbi->s_es; in ext4_update_super() local
1333 reserved_blocks = ext4_r_blocks_count(es) * 100; in ext4_update_super()
[all …]
Dmmp.c129 struct ext4_super_block *es = EXT4_SB(sb)->s_es; in kmmpd() local
134 int mmp_update_interval = le16_to_cpu(es->s_mmp_update_interval); in kmmpd()
140 mmp_block = le64_to_cpu(es->s_mmp_block); in kmmpd()
174 if (!(le32_to_cpu(es->s_feature_incompat) & in kmmpd()
272 struct ext4_super_block *es = EXT4_SB(sb)->s_es; in ext4_multi_mount_protect() local
277 unsigned int mmp_check_interval = le16_to_cpu(es->s_mmp_update_interval); in ext4_multi_mount_protect()
281 if (mmp_block < le32_to_cpu(es->s_first_data_block) || in ext4_multi_mount_protect()
282 mmp_block >= ext4_blocks_count(es)) { in ext4_multi_mount_protect()
Dfile.c463 struct extent_status es; in ext4_seek_data() local
497 ext4_es_find_delayed_extent_range(inode, last, last, &es); in ext4_seek_data()
498 if (es.es_len != 0 && in_range(last, es.es_lblk, es.es_len)) { in ext4_seek_data()
536 struct extent_status es; in ext4_seek_hole() local
570 ext4_es_find_delayed_extent_range(inode, last, last, &es); in ext4_seek_hole()
571 if (es.es_len != 0 && in_range(last, es.es_lblk, es.es_len)) { in ext4_seek_hole()
572 last = es.es_lblk + es.es_len; in ext4_seek_hole()
Dballoc.c55 struct ext4_super_block *es = EXT4_SB(sb)->s_es; in ext4_get_group_no_and_offset() local
58 blocknr = blocknr - le32_to_cpu(es->s_first_data_block); in ext4_get_group_no_and_offset()
663 struct ext4_super_block *es; in ext4_count_free_clusters() local
668 es = EXT4_SB(sb)->s_es; in ext4_count_free_clusters()
696 EXT4_NUM_B2C(EXT4_SB(sb), ext4_free_blocks_count(es)), in ext4_count_free_clusters()
739 struct ext4_super_block *es = EXT4_SB(sb)->s_es; in ext4_bg_has_super() local
744 if (group == le32_to_cpu(es->s_backup_bgs[0]) || in ext4_bg_has_super()
745 group == le32_to_cpu(es->s_backup_bgs[1])) in ext4_bg_has_super()
Dextents.c406 struct ext4_super_block *es = EXT4_SB(inode->i_sb)->s_es; in ext4_valid_extent_entries() local
420 es->s_last_error_block = cpu_to_le64(pblock); in ext4_valid_extent_entries()
1269 struct ext4_super_block *es = EXT4_SB(inode->i_sb)->s_es; in ext4_ext_grow_indepth() local
1275 if (goal > le32_to_cpu(es->s_first_data_block)) { in ext4_ext_grow_indepth()
2150 struct extent_status es; in ext4_fill_fiemap_extents() local
2217 es.es_lblk = start; in ext4_fill_fiemap_extents()
2218 es.es_len = end - start; in ext4_fill_fiemap_extents()
2219 es.es_pblk = 0; in ext4_fill_fiemap_extents()
2221 es.es_lblk = le32_to_cpu(ex->ee_block); in ext4_fill_fiemap_extents()
2222 es.es_len = ext4_ext_get_actual_len(ex); in ext4_fill_fiemap_extents()
[all …]
Dext4_jbd2.c297 struct ext4_super_block *es; in __ext4_handle_dirty_metadata() local
299 es = EXT4_SB(inode->i_sb)->s_es; in __ext4_handle_dirty_metadata()
300 es->s_last_error_block = in __ext4_handle_dirty_metadata()
Dext4.h2373 struct ext4_super_block *es,
2534 static inline ext4_fsblk_t ext4_blocks_count(struct ext4_super_block *es) in ext4_blocks_count() argument
2536 return ((ext4_fsblk_t)le32_to_cpu(es->s_blocks_count_hi) << 32) | in ext4_blocks_count()
2537 le32_to_cpu(es->s_blocks_count_lo); in ext4_blocks_count()
2540 static inline ext4_fsblk_t ext4_r_blocks_count(struct ext4_super_block *es) in ext4_r_blocks_count() argument
2542 return ((ext4_fsblk_t)le32_to_cpu(es->s_r_blocks_count_hi) << 32) | in ext4_r_blocks_count()
2543 le32_to_cpu(es->s_r_blocks_count_lo); in ext4_r_blocks_count()
2546 static inline ext4_fsblk_t ext4_free_blocks_count(struct ext4_super_block *es) in ext4_free_blocks_count() argument
2548 return ((ext4_fsblk_t)le32_to_cpu(es->s_free_blocks_count_hi) << 32) | in ext4_free_blocks_count()
2549 le32_to_cpu(es->s_free_blocks_count_lo); in ext4_free_blocks_count()
[all …]
Dblock_validity.c225 struct ext4_super_block *es = EXT4_SB(inode->i_sb)->s_es; in ext4_check_blockref() local
234 es->s_last_error_block = cpu_to_le64(blk); in ext4_check_blockref()
Dinode.c460 struct extent_status es; in ext4_map_blocks() local
485 if (ext4_es_lookup_extent(inode, map->m_lblk, &es)) { in ext4_map_blocks()
486 if (ext4_es_is_written(&es) || ext4_es_is_unwritten(&es)) { in ext4_map_blocks()
487 map->m_pblk = ext4_es_pblock(&es) + in ext4_map_blocks()
488 map->m_lblk - es.es_lblk; in ext4_map_blocks()
489 map->m_flags |= ext4_es_is_written(&es) ? in ext4_map_blocks()
491 retval = es.es_len - (map->m_lblk - es.es_lblk); in ext4_map_blocks()
495 } else if (ext4_es_is_delayed(&es) || ext4_es_is_hole(&es)) { in ext4_map_blocks()
632 ext4_es_lookup_extent(inode, map->m_lblk, &es)) { in ext4_map_blocks()
633 if (ext4_es_is_written(&es)) in ext4_map_blocks()
[all …]
Dialloc.c238 struct ext4_super_block *es; in ext4_free_inode() local
279 es = EXT4_SB(sb)->s_es; in ext4_free_inode()
280 if (ino < EXT4_FIRST_INO(sb) || ino > le32_to_cpu(es->s_inodes_count)) { in ext4_free_inode()
1189 struct ext4_super_block *es; in ext4_count_free_inodes() local
1193 es = EXT4_SB(sb)->s_es; in ext4_count_free_inodes()
1216 le32_to_cpu(es->s_free_inodes_count), desc_count, bitmap_count); in ext4_count_free_inodes()
Dmigrate.c619 struct ext4_super_block *es = EXT4_SB(inode->i_sb)->s_es; in ext4_ind_migrate() local
656 if (ext4_blocks_count(es) > EXT4_MAX_BLOCK_FILE_PHYS || in ext4_ind_migrate()
Dmballoc.c4154 struct ext4_super_block *es = sbi->s_es; in ext4_mb_initialize_context() local
4169 if (goal < le32_to_cpu(es->s_first_data_block) || in ext4_mb_initialize_context()
4170 goal >= ext4_blocks_count(es)) in ext4_mb_initialize_context()
4171 goal = le32_to_cpu(es->s_first_data_block); in ext4_mb_initialize_context()
/linux-4.1.27/sound/pci/
Des1968.c873 struct esschan *es; in snd_es1968_bob_dec() local
874 list_for_each_entry(es, &chip->substream_list, list) { in snd_es1968_bob_dec()
875 if (max_freq < es->bob_freq) in snd_es1968_bob_dec()
876 max_freq = es->bob_freq; in snd_es1968_bob_dec()
887 snd_es1968_calc_bob_rate(struct es1968 *chip, struct esschan *es, in snd_es1968_calc_bob_rate() argument
892 if (es->fmt & ESS_FMT_STEREO) in snd_es1968_calc_bob_rate()
894 if (es->fmt & ESS_FMT_16BIT) in snd_es1968_calc_bob_rate()
896 freq /= es->frag_size; in snd_es1968_calc_bob_rate()
921 snd_es1968_get_dma_ptr(struct es1968 *chip, struct esschan *es) in snd_es1968_get_dma_ptr() argument
925 offset = apu_get_register(chip, es->apu[0], 5); in snd_es1968_get_dma_ptr()
[all …]
/linux-4.1.27/drivers/parisc/
Deisa_enumerator.c319 struct eeprom_eisa_slot_info *es, in parse_slot_config() argument
337 print_eisa_id(board, es->eisa_slot_id); in parse_slot_config()
339 slot, board, es->flags&HPEE_FLAG_BOARD_IS_ISA ? "ISA" : "EISA"); in parse_slot_config()
341 maxlen = es->config_data_length < HPEE_MAX_LENGTH ? in parse_slot_config()
342 es->config_data_length : HPEE_MAX_LENGTH; in parse_slot_config()
343 while ((pos < maxlen) && (num_func <= es->num_functions)) { in parse_slot_config()
414 if (pos != es->config_data_length) { in parse_slot_config()
416 pos, es->config_data_length); in parse_slot_config()
420 if (num_func != es->num_functions) { in parse_slot_config()
422 num_func, es->num_functions); in parse_slot_config()
[all …]
/linux-4.1.27/fs/ext2/
Dsuper.c40 struct ext2_super_block *es, int wait);
53 struct ext2_super_block *es = sbi->s_es; in ext2_error() local
58 es->s_state |= cpu_to_le16(EXT2_ERROR_FS); in ext2_error()
60 ext2_sync_super(sb, es, 1); in ext2_error()
103 struct ext2_super_block *es = EXT2_SB(sb)->s_es; in ext2_update_dynamic_rev() local
105 if (le32_to_cpu(es->s_rev_level) > EXT2_GOOD_OLD_REV) in ext2_update_dynamic_rev()
113 es->s_first_ino = cpu_to_le32(EXT2_GOOD_OLD_FIRST_INO); in ext2_update_dynamic_rev()
114 es->s_inode_size = cpu_to_le16(EXT2_GOOD_OLD_INODE_SIZE); in ext2_update_dynamic_rev()
115 es->s_rev_level = cpu_to_le32(EXT2_DYNAMIC_REV); in ext2_update_dynamic_rev()
136 struct ext2_super_block *es = sbi->s_es; in ext2_put_super() local
[all …]
Dballoc.c488 struct ext2_super_block * es = sbi->s_es; in ext2_free_blocks() local
491 if (block < le32_to_cpu(es->s_first_data_block) || in ext2_free_blocks()
493 block + count > le32_to_cpu(es->s_blocks_count)) { in ext2_free_blocks()
504 block_group = (block - le32_to_cpu(es->s_first_data_block)) / in ext2_free_blocks()
506 bit = (block - le32_to_cpu(es->s_first_data_block)) % in ext2_free_blocks()
1225 struct ext2_super_block *es; in ext2_new_blocks() local
1247 es = EXT2_SB(sb)->s_es; in ext2_new_blocks()
1272 if (goal < le32_to_cpu(es->s_first_data_block) || in ext2_new_blocks()
1273 goal >= le32_to_cpu(es->s_blocks_count)) in ext2_new_blocks()
1274 goal = le32_to_cpu(es->s_first_data_block); in ext2_new_blocks()
[all …]
Dialloc.c111 struct ext2_super_block * es; in ext2_free_inode() local
124 es = EXT2_SB(sb)->s_es; in ext2_free_inode()
128 ino > le32_to_cpu(es->s_inodes_count)) { in ext2_free_inode()
262 struct ext2_super_block *es = sbi->s_es; in find_group_orlov() local
315 blocks_per_dir = (le32_to_cpu(es->s_blocks_count)-free_blocks) / ndirs; in find_group_orlov()
440 struct ext2_super_block *es; in ext2_new_inode() local
452 es = sbi->s_es; in ext2_new_inode()
519 if (ino < EXT2_FIRST_INO(sb) || ino > le32_to_cpu(es->s_inodes_count)) { in ext2_new_inode()
622 struct ext2_super_block *es; in ext2_count_free_inodes() local
626 es = EXT2_SB(sb)->s_es; in ext2_count_free_inodes()
/linux-4.1.27/fs/ext3/
Dsuper.c52 struct ext3_super_block *es,
55 struct ext3_super_block * es);
57 struct ext3_super_block * es);
160 struct ext3_super_block *es = EXT3_SB(sb)->s_es; in ext3_handle_error() local
163 es->s_state |= cpu_to_le16(EXT3_ERROR_FS); in ext3_handle_error()
185 ext3_commit_super(sb, es, 1); in ext3_handle_error()
331 struct ext3_super_block *es = EXT3_SB(sb)->s_es; in ext3_update_dynamic_rev() local
333 if (le32_to_cpu(es->s_rev_level) > EXT3_GOOD_OLD_REV) in ext3_update_dynamic_rev()
341 es->s_first_ino = cpu_to_le32(EXT3_GOOD_OLD_FIRST_INO); in ext3_update_dynamic_rev()
342 es->s_inode_size = cpu_to_le16(EXT3_GOOD_OLD_INODE_SIZE); in ext3_update_dynamic_rev()
[all …]
Dresize.c24 struct ext3_super_block *es = sbi->s_es; in verify_group_input() local
25 ext3_fsblk_t start = le32_to_cpu(es->s_blocks_count); in verify_group_input()
31 le16_to_cpu(es->s_reserved_gdt_blocks)) : 0; in verify_group_input()
51 else if ((start - le32_to_cpu(es->s_first_data_block)) % in verify_group_input()
432 struct ext3_super_block *es = EXT3_SB(sb)->s_es; in add_new_gdb() local
539 le16_add_cpu(&es->s_reserved_gdt_blocks, -1); in add_new_gdb()
786 struct ext3_super_block *es = sbi->s_es; in ext3_group_add() local
788 le16_to_cpu(es->s_reserved_gdt_blocks) : 0; in ext3_group_add()
806 if (le32_to_cpu(es->s_blocks_count) + input->blocks_count < in ext3_group_add()
807 le32_to_cpu(es->s_blocks_count)) { in ext3_group_add()
[all …]
Dballoc.c42 struct ext3_super_block *es = EXT3_SB(sb)->s_es; in ext3_get_group_no_and_offset() local
44 blocknr = blocknr - le32_to_cpu(es->s_first_data_block); in ext3_get_group_no_and_offset()
501 struct ext3_super_block * es; in ext3_free_blocks_sb() local
508 es = sbi->s_es; in ext3_free_blocks_sb()
509 if (block < le32_to_cpu(es->s_first_data_block) || in ext3_free_blocks_sb()
511 block + count > le32_to_cpu(es->s_blocks_count)) { in ext3_free_blocks_sb()
522 block_group = (block - le32_to_cpu(es->s_first_data_block)) / in ext3_free_blocks_sb()
524 bit = (block - le32_to_cpu(es->s_first_data_block)) % in ext3_free_blocks_sb()
1502 struct ext3_super_block *es; in ext3_new_blocks() local
1528 es = sbi->s_es; in ext3_new_blocks()
[all …]
Dialloc.c89 struct ext3_super_block * es; in ext3_free_inode() local
115 es = EXT3_SB(sb)->s_es; in ext3_free_inode()
116 if (ino < EXT3_FIRST_INO(sb) || ino > le32_to_cpu(es->s_inodes_count)) { in ext3_free_inode()
356 struct ext3_super_block * es; in ext3_new_inode() local
375 es = sbi->s_es; in ext3_new_inode()
442 if (ino < EXT3_FIRST_INO(sb) || ino > le32_to_cpu(es->s_inodes_count)) { in ext3_new_inode()
652 struct ext3_super_block *es; in ext3_count_free_inodes() local
656 es = EXT3_SB(sb)->s_es; in ext3_count_free_inodes()
677 le32_to_cpu(es->s_free_inodes_count), desc_count, bitmap_count); in ext3_count_free_inodes()
Dext3.h1085 struct ext3_super_block *es,
/linux-4.1.27/drivers/net/can/usb/
Dkvaser_usb.c821 const struct kvaser_usb_error_summary *es, in kvaser_usb_rx_error_update_can_state() argument
828 netdev_dbg(priv->netdev, "Error status: 0x%02x\n", es->status); in kvaser_usb_rx_error_update_can_state()
832 if (es->status & (M16C_STATE_BUS_OFF | M16C_STATE_BUS_RESET)) in kvaser_usb_rx_error_update_can_state()
834 else if (es->status & M16C_STATE_BUS_PASSIVE) in kvaser_usb_rx_error_update_can_state()
836 else if (es->status & M16C_STATE_BUS_ERROR) { in kvaser_usb_rx_error_update_can_state()
839 if ((es->txerr >= 128) || (es->rxerr >= 128)) in kvaser_usb_rx_error_update_can_state()
841 else if ((es->txerr >= 96) || (es->rxerr >= 96)) in kvaser_usb_rx_error_update_can_state()
848 if (!es->status) in kvaser_usb_rx_error_update_can_state()
852 tx_state = (es->txerr >= es->rxerr) ? new_state : 0; in kvaser_usb_rx_error_update_can_state()
853 rx_state = (es->txerr <= es->rxerr) ? new_state : 0; in kvaser_usb_rx_error_update_can_state()
[all …]
/linux-4.1.27/scripts/coccinelle/misc/
Dwarn.cocci44 expression list es;
50 es);
54 expression list ok1.es;
59 WARN(1,es);
93 expression list es;
99 es);
103 expression list ok2.es;
108 WARN_ONCE(1,es);
/linux-4.1.27/arch/x86/boot/
Dcopy.S61 pushw %es
63 popw %es
65 popw %es
80 pushw %es
82 popw %es
84 popw %es
Dstring.c60 const char *es = s; in strnlen() local
61 while (*es && maxlen) { in strnlen()
62 es++; in strnlen()
66 return (es - s); in strnlen()
Dbioscall.S44 popw %es
55 pushw %es
65 movw %ax, %es
Dvideo-vesa.c202 boot_params.screen_info.vesapm_seg = oreg.es; in vesa_store_pm_info()
253 ireg.es = 0; /* ES:DI must be 0 by spec */ in vesa_store_edid()
266 ireg.es = ds(); in vesa_store_edid()
Dregs.c27 reg->es = ds(); in initregs()
Dmca.c30 set_fs(oreg.es); in query_mca()
Dpmjump.S54 movl %ecx, %es
Dedd.c110 ireg.es = 0; in get_edd_info()
Dboot.h256 u16 es, ds; member
Dheader.S57 movw %ax, %es
/linux-4.1.27/tools/perf/util/
Ddb-export.c288 struct export_sample es = { in db_export__sample() local
318 es.comm_db_id = comm->db_id; in db_export__sample()
321 es.db_id = ++dbe->sample_last_db_id; in db_export__sample()
323 err = db_ids_from_al(dbe, al, &es.dso_db_id, &es.sym_db_id, &es.offset); in db_export__sample()
332 err = db_ids_from_al(dbe, &addr_al, &es.addr_dso_db_id, in db_export__sample()
333 &es.addr_sym_db_id, &es.addr_offset); in db_export__sample()
338 &addr_al, es.db_id, in db_export__sample()
346 return dbe->export_sample(dbe, &es); in db_export__sample()
Ddb-export.h62 int (*export_sample)(struct db_export *dbe, struct export_sample *es);
/linux-4.1.27/arch/x86/power/
Dcpu.c83 savesegment(es, ctxt->es); in __save_processor_state()
90 asm volatile ("movw %%es, %0" : "=m" (ctxt->es)); in __save_processor_state()
202 loadsegment(es, ctxt->es); in __restore_processor_state()
215 asm volatile ("movw %0, %%es" :: "r" (ctxt->es)); in __restore_processor_state()
/linux-4.1.27/arch/x86/kernel/
Dprocess_64.c64 unsigned int ds, cs, es; in __show_regs() local
83 asm("movl %%es,%0" : "=r" (es)); in __show_regs()
102 es, cr0); in __show_regs()
172 savesegment(es, p->thread.es); in copy_thread()
235 loadsegment(es, _ds); in start_thread_common()
322 savesegment(es, prev->es); in __switch_to()
323 if (unlikely(next->es | prev->es)) in __switch_to()
324 loadsegment(es, next->es); in __switch_to()
Dhead_32.S110 movl %eax,%es
307 movl %eax,%es
462 movl %eax,%es
570 push %es # 0(%esp)
573 movl %eax,%es
607 pop %es
626 pushl %es
630 movl %eax,%es
645 popl %es
Dptrace.c84 REG_OFFSET_NAME(es),
298 case offsetof(struct user_regs_struct, es): in get_segment_reg()
303 return task->thread.es; in get_segment_reg()
355 case offsetof(struct user_regs_struct,es): in set_segment_reg()
356 task->thread.es = value; in set_segment_reg()
358 loadsegment(es, task->thread.es); in set_segment_reg()
419 case offsetof(struct user_regs_struct, es): in putreg()
461 case offsetof(struct user_regs_struct, es): in getreg()
958 SEG32(es); in putreg32()
1027 SEG32(es); in getreg32()
Dprocess_32.c96 (u16)regs->ds, (u16)regs->es, (u16)regs->fs, gs, ss); in __show_regs()
149 childregs->es = __USER_DS; in copy_thread()
203 regs->es = __USER_DS; in start_thread()
Dsignal.c78 COPY_SEG(es); in restore_sigcontext()
130 put_user_ex(regs->es, (unsigned int __user *)&sc->es); in setup_sigcontext()
330 regs->es = __USER_DS; in __setup_frame()
396 regs->es = __USER_DS; in __setup_rt_frame()
524 loadsegment(es, __USER_DS); in x32_setup_rt_frame()
Dentry_32.S191 pushl_cfi %es
211 movl %edx, %es
238 2: popl_cfi %es
718 movl %eax, %es
983 2: mov 8(%esp),%es
1083 pushl %es
1121 popl %es
1215 pushl_cfi %es
1238 movl %ecx, %es
Ddoublefault.c62 .es = __USER_DS,
Dasm-offsets_32.c52 OFFSET(PT_ES, pt_regs, es); in foo()
Dperf_regs.c33 PT_REGS_OFFSET(PERF_REG_X86_ES, es),
Dhead_64.S241 movl %eax,%es
Dkgdb.c69 { "es", 4, offsetof(struct pt_regs, es) },
Dvm86_32.c282 info->regs.pt.es = 0; in do_sys_vm86()
/linux-4.1.27/drivers/dma/
Dmpc512x_dma.c325 static void mpc_dma_irq_process(struct mpc_dma *mdma, u32 is, u32 es, int off) in mpc_dma_irq_process() argument
329 u32 status = is | es; in mpc_dma_irq_process()
342 if (es & (1 << ch)) in mpc_dma_irq_process()
359 uint es; in mpc_dma_irq() local
362 es = in_be32(&mdma->regs->dmaes); in mpc_dma_irq()
364 if ((es & MPC_DMA_DMAES_VLD) && mdma->error_status == 0) in mpc_dma_irq()
365 mdma->error_status = es; in mpc_dma_irq()
429 uint es; in mpc_dma_tasklet() local
432 es = mdma->error_status; in mpc_dma_tasklet()
437 if (es) { in mpc_dma_tasklet()
[all …]
Domap-dma.c68 uint8_t es; /* CSDP_DATA_TYPE_xxx */ member
607 return size * es_bytes[d->es]; in omap_dma_desc_size()
613 size_t size, es_size = es_bytes[d->es]; in omap_dma_desc_size_pos()
766 unsigned i, j = 0, es, en, frame_bytes; in omap_dma_prep_slave_sg() local
785 es = CSDP_DATA_TYPE_8; in omap_dma_prep_slave_sg()
788 es = CSDP_DATA_TYPE_16; in omap_dma_prep_slave_sg()
791 es = CSDP_DATA_TYPE_32; in omap_dma_prep_slave_sg()
804 d->es = es; in omap_dma_prep_slave_sg()
813 d->csdp = es; in omap_dma_prep_slave_sg()
841 frame_bytes = es_bytes[es] * en; in omap_dma_prep_slave_sg()
[all …]
Dmoxart-dma.c129 uint8_t es; member
278 unsigned int es; in moxart_prep_slave_sg() local
297 es = MOXART_DMA_DATA_TYPE_S8; in moxart_prep_slave_sg()
300 es = MOXART_DMA_DATA_TYPE_S16; in moxart_prep_slave_sg()
303 es = MOXART_DMA_DATA_TYPE_S32; in moxart_prep_slave_sg()
317 d->es = es; in moxart_prep_slave_sg()
380 unsigned int sglen_div = es_bytes[d->es]; in moxart_set_transfer_params()
469 size -= completed_cycles << es_bytes[ch->desc->es]; in moxart_dma_desc_size_in_flight()
Dbcm2835-dma.c344 unsigned int es, sync_type; in bcm2835_dma_prep_dma_cyclic() local
366 es = BCM2835_DMA_DATA_TYPE_S32; in bcm2835_dma_prep_dma_cyclic()
/linux-4.1.27/fs/gfs2/
Dxattr.c867 struct gfs2_ea_header *ea, struct ea_set *es) in ea_set_simple_noalloc() argument
869 struct gfs2_ea_request *er = es->es_er; in ea_set_simple_noalloc()
879 if (es->ea_split) in ea_set_simple_noalloc()
884 if (es->es_el) in ea_set_simple_noalloc()
885 ea_set_remove_stuffed(ip, es->es_el); in ea_set_simple_noalloc()
902 struct ea_set *es = private; in ea_set_simple_alloc() local
903 struct gfs2_ea_header *ea = es->es_ea; in ea_set_simple_alloc()
906 gfs2_trans_add_meta(ip->i_gl, es->es_bh); in ea_set_simple_alloc()
908 if (es->ea_split) in ea_set_simple_alloc()
915 if (es->es_el) in ea_set_simple_alloc()
[all …]
/linux-4.1.27/fs/nfsd/
Dblocklayout.c91 bex->es = PNFS_BLOCK_READ_DATA; in nfsd4_block_proc_layoutget()
93 bex->es = PNFS_BLOCK_READWRITE_DATA; in nfsd4_block_proc_layoutget()
106 bex->es = PNFS_BLOCK_INVALID_DATA; in nfsd4_block_proc_layoutget()
113 bex->es = PNFS_BLOCK_NONE_DATA; in nfsd4_block_proc_layoutget()
132 dprintk("GET: 0x%llx:0x%llx %d\n", bex->foff, bex->len, bex->es); in nfsd4_block_proc_layoutget()
Dblocklayoutxdr.c34 *p++ = cpu_to_be32(b->es); in nfsd4_block_encode_layoutget()
141 bex.es = be32_to_cpup(p++); in nfsd4_block_decode_layoutupdate()
142 if (bex.es != PNFS_BLOCK_READWRITE_DATA) { in nfsd4_block_decode_layoutupdate()
144 __func__, bex.es); in nfsd4_block_decode_layoutupdate()
Dblocklayoutxdr.h22 enum pnfs_block_extent_state es; member
/linux-4.1.27/tools/perf/util/scripting-engines/
Dtrace-event-python.c672 struct export_sample *es) in python_export_sample() argument
679 tuple_set_u64(t, 0, es->db_id); in python_export_sample()
680 tuple_set_u64(t, 1, es->evsel->db_id); in python_export_sample()
681 tuple_set_u64(t, 2, es->al->machine->db_id); in python_export_sample()
682 tuple_set_u64(t, 3, es->al->thread->db_id); in python_export_sample()
683 tuple_set_u64(t, 4, es->comm_db_id); in python_export_sample()
684 tuple_set_u64(t, 5, es->dso_db_id); in python_export_sample()
685 tuple_set_u64(t, 6, es->sym_db_id); in python_export_sample()
686 tuple_set_u64(t, 7, es->offset); in python_export_sample()
687 tuple_set_u64(t, 8, es->sample->ip); in python_export_sample()
[all …]
/linux-4.1.27/drivers/pci/hotplug/
Dibmphp.h606 #define SLOT_ATTN(s,es) ((u8) ((es & HPC_SLOT_BLINK_ATTN) \ argument
623 #define SLOT_PCIX(es) ((u8) ((es & HPC_SLOT_PCIX) \ argument
626 #define SLOT_SPEED(es) ((u8) ((es & HPC_SLOT_SPEED2) \ argument
627 ? ((es & HPC_SLOT_SPEED1) ? HPC_SLOT_SPEED_133 \
631 #define SLOT_BUS_MODE(es) ((u8) ((es & HPC_SLOT_BUS_MODE) \ argument
/linux-4.1.27/drivers/lguest/x86/
Dswitcher_32.S112 pushl %es
183 popl %es
204 pushl %es; \
259 popl %es
Dcore.c213 case offsetof(struct pt_regs, es): in lguest_arch_regptr()
214 return &cpu->regs->es; in lguest_arch_regptr()
713 regs->ds = regs->es = regs->ss = __KERNEL_DS|GUEST_PL; in lguest_arch_setup_regs()
/linux-4.1.27/arch/s390/kernel/
Dtime.c498 .es = 0, .sl = 0 }; in etr_reset()
554 etr_eacr.es = etr_eacr.sl = 0; in etr_switch_to_local()
568 if (!etr_eacr.es) in etr_sync_check()
572 etr_eacr.es = 0; in etr_sync_check()
613 return eacr.es && !eacr.sl; in etr_mode_is_pps()
621 return eacr.es && eacr.sl; in etr_mode_is_etr()
846 eacr.es = 0; in etr_handle_events()
848 eacr.es = eacr.sl = 0; in etr_handle_events()
937 if (!eacr.es || !check_sync_clock()) in etr_handle_update()
1016 eacr.dp = eacr.es = eacr.sl = 0; in etr_work_fn()
[all …]
Dperf_cpum_sf.c894 "tear=%p dear=%p\n", cpuhw->lsctl.es, cpuhw->lsctl.cs, in cpumsf_pmu_enable()
931 if (si.es) { in cpumsf_pmu_disable()
1377 if (WARN_ON_ONCE(cpuhw->lsctl.es == 1 || cpuhw->lsctl.ed == 1)) { in cpumsf_pmu_add()
1381 cpuhw->lsctl.es = 1; in cpumsf_pmu_add()
1404 cpuhw->lsctl.es = 0; in cpumsf_pmu_del()
Dperf_event.c152 si.as, si.es, si.cs, si.bsdes, si.tear, si.dear); in print_debug_sf()
/linux-4.1.27/arch/x86/platform/efi/
Defi_thunk_64.S72 movl %es, %eax
100 movl %ebx, %es
134 movl %eax, %es
/linux-4.1.27/arch/mips/math-emu/
Dieee754dp.c97 int es = DP_EMIN - xe; in ieee754dp_format() local
134 xm = XDPSRS(xm, es); in ieee754dp_format()
135 xe += es; in ieee754dp_format()
Dieee754sp.c97 int es = SP_EMIN - xe; in ieee754sp_format() local
133 SPXSRSXn(es); in ieee754sp_format()
/linux-4.1.27/arch/arm/mach-omap1/
Dlcd_dma.c137 int es; in set_b1_regs() local
146 es = 1; in set_b1_regs()
149 es = 2; in set_b1_regs()
152 es = 4; in set_b1_regs()
165 ((y) * vxres * yscale + (x) * xscale) * es) in set_b1_regs()
166 #define PIXSTEP(sx, sy, dx, dy) (PIXADDR(dx, dy) - PIXADDR(sx, sy) - es + 1) in set_b1_regs()
/linux-4.1.27/arch/x86/kvm/
Dtss.h23 u32 es; member
52 u16 es; member
Dsvm.c1141 init_seg(&save->es); in init_vmcb()
1392 case VCPU_SREG_ES: return &save->es; in svm_seg()
2334 nested_vmcb->save.es = vmcb->save.es; in nested_svm_vmexit()
2396 svm->vmcb->save.es = hsave->save.es; in nested_svm_vmexit()
2521 hsave->save.es = vmcb->save.es; in nested_svm_vmrun()
2553 svm->vmcb->save.es = nested_vmcb->save.es; in nested_svm_vmrun()
3432 save->es.selector, save->es.attrib, in dump_vmcb()
3433 save->es.limit, save->es.base); in dump_vmcb()
Demulate.c2590 tss->es = get_segment_selector(ctxt, VCPU_SREG_ES); in save_state_to_tss16()
2619 set_segment_selector(ctxt, tss->es, VCPU_SREG_ES); in load_state_from_tss16()
2634 ret = __load_segment_descriptor(ctxt, tss->es, VCPU_SREG_ES, cpl, in load_state_from_tss16()
2709 tss->es = get_segment_selector(ctxt, VCPU_SREG_ES); in save_state_to_tss32()
2744 set_segment_selector(ctxt, tss->es, VCPU_SREG_ES); in load_state_from_tss32()
2772 ret = __load_segment_descriptor(ctxt, tss->es, VCPU_SREG_ES, cpl, in load_state_from_tss32()
Dvmx.c1842 savesegment(es, vmx->host_state.es_sel); in vmx_save_host_state()
1890 loadsegment(es, vmx->host_state.es_sel); in __vmx_load_host_state()
8332 loadsegment(es, __USER_DS); in vmx_vcpu_run()
Dx86.c6737 kvm_get_segment(vcpu, &sregs->es, VCPU_SREG_ES); in kvm_arch_vcpu_ioctl_get_sregs()
6879 kvm_set_segment(vcpu, &sregs->es, VCPU_SREG_ES); in kvm_arch_vcpu_ioctl_set_sregs()
/linux-4.1.27/arch/x86/boot/compressed/
Defi_thunk_64.S38 movl %es, %eax
80 movl %ebx, %es
117 movl %eax, %es
Dhead_64.S56 movl %eax, %es
300 movl %eax, %es
Dhead_32.S112 movl %eax, %es
/linux-4.1.27/arch/s390/oprofile/
Dhwsampler.c88 cb->ssctl.es = 0; in smp_ctl_ssctl_stop()
102 if (cb->qsi.es || cb->qsi.cs) { in smp_ctl_ssctl_stop()
118 cb->ssctl.es = 1; in smp_ctl_ssctl_deactivate()
148 cb->ssctl.es = 1; in smp_ctl_ssctl_enable_activate()
390 if (!cb->qsi.es) { in start_sampling()
420 if (!rc && !cb->qsi.es) in stop_sampling()
637 if (cb->qsi.es) { in check_qsi_on_setup()
664 if (cb->qsi.es) in check_qsi_on_start()
728 if (cb->qsi.es) { in worker_on_finish()
Dhwsampler.h19 unsigned int es:1; /* 54: sampling enable control */ member
/linux-4.1.27/arch/x86/include/asm/
Da.out-core.h50 dump->regs.es = (u16)regs->es; in aout_dump_thread()
Dsuspend_32.h14 u16 es, fs, gs, ss; member
Dsuspend_64.h22 u16 ds, es, fs, gs, ss; member
Dvm86.h25 unsigned short es, __esh; member
Dsigcontext.h10 unsigned short es, __esh; member
Duser_32.h86 unsigned long es; member
Dlguest.h36 unsigned long fs, ds, es; member
Duser32.h37 unsigned short ds, __ds, es, __es; member
Duser_64.h93 unsigned long es; member
Delf.h130 pr_reg[8] = regs->es & 0xffff; \
181 t->ds = t->es = ds; in elf_common_init()
Dkexec.h111 asm volatile("movl %%es, %%eax;" :"=a"(newregs->es)); in crash_setup_regs()
Dptrace.h20 unsigned long es; member
Dsvm.h139 struct vmcb_seg es; member
Dprocessor.h246 unsigned short es, __esh; member
499 unsigned short es; member
/linux-4.1.27/arch/x86/ia32/
Dia32_signal.c136 #define loadsegment_es(v) loadsegment(es, v)
183 RELOAD_SEG(es); in ia32_restore_sigcontext()
276 put_user_ex(get_user_seg(es), (unsigned int __user *)&sc->es); in ia32_setup_sigcontext()
412 loadsegment(es, __USER32_DS); in ia32_setup_frame()
491 loadsegment(es, __USER32_DS); in ia32_setup_rt_frame()
Dia32_aout.c88 dump->regs.es = current->thread.es; in dump_thread32()
385 loadsegment(es, __USER32_DS); in load_aout_binary()
/linux-4.1.27/drivers/w1/slaves/
Dw1_ds2431.c152 u8 es = (addr + len - 1) % W1_F2D_SCRATCH_SIZE; in w1_f2d_write() local
176 (rdbuf[2] != es) || (memcmp(data, &rdbuf[3], len) != 0)) { in w1_f2d_write()
193 wrbuf[3] = es; in w1_f2d_write()
Dw1_ds2433.c166 u8 es = (addr + len - 1) & 0x1f; in w1_f23_write() local
188 (rdbuf[2] != es) || (memcmp(data, &rdbuf[3], len) != 0)) in w1_f23_write()
196 wrbuf[3] = es; in w1_f23_write()
Dw1_ds28e04.c171 u8 es = (addr + len - 1) & 0x1f; in w1_f1C_write() local
196 (rdbuf[2] != es) || (memcmp(data, &rdbuf[3], len) != 0)) in w1_f1C_write()
204 wrbuf[3] = es; in w1_f1C_write()
/linux-4.1.27/arch/x86/realmode/rm/
Dwakeup_asm.S57 movw %cx, %es
71 movw %ax, %es
Dreboot.S60 movl %ecx, %es
Dtrampoline_64.S47 mov %ax, %es
/linux-4.1.27/Documentation/filesystems/
Dcoda.txt194 22.. SSeerrvviicciinngg CCooddaa ffiilleessyysstteemm ccaallllss
264 33.. TThhee mmeessssaaggee llaayyeerr
420 …44..11.. DDaattaa ssttrruuccttuurreess sshhaarreedd bbyy tthhee kke…
569 DDeessccrriippttiioonn This call is made to Venus during the initialization of
604 DDeessccrriippttiioonn This call is made to determine the ViceFid and filetype of
649 DDeessccrriippttiioonn This call returns the attributes of the file identified by
687 DDeessccrriippttiioonn The structure attr is filled with attributes to be changed
699 44..77.. aacccceessss
718 DDeessccrriippttiioonn Verify if access to the object identified by VFid for
759 DDeessccrriippttiioonn This upcall is invoked to request creation of a file.
[all …]
D9p.txt27 http://plan9.escet.urjc.es/iwp9/cready/PROSE_iwp9_2006.pdf
Dspufs.txt378 See http://www.bsc.es/projects/deepcomputing/linuxoncell/ for the rec-
495 See http://www.bsc.es/projects/deepcomputing/linuxoncell/ for the rec-
Dfuse.txt12 The process(es) providing the data and metadata of the filesystem.
/linux-4.1.27/drivers/rtc/
Drtc-ds2404.c161 u8 ta01, ta02, es; in ds2404_write_memory() local
176 es = ds2404_read_byte(dev); in ds2404_write_memory()
189 ds2404_write_byte(dev, es); in ds2404_write_memory()
/linux-4.1.27/arch/s390/include/asm/
Dcpu_mf.h65 unsigned int es:1; /* 22: basic-sampling enable control */ member
87 unsigned int es:1; /* 54: basic-sampling enable control */ member
Detr.h18 unsigned int es : 1; /* ETR sync check control */ member
/linux-4.1.27/fs/ntfs/
Dmft.c1109 static const char *es = " Leaving inconsistent metadata. Unmount and run " variable
1371 "allocated cluster.%s", es); in ntfs_mft_bitmap_extend_allocation_nolock()
1503 "mft bitmap attribute.%s", es); in ntfs_mft_bitmap_extend_allocation_nolock()
1533 ntfs_error(vol->sb, "Failed to free allocated cluster.%s", es); in ntfs_mft_bitmap_extend_allocation_nolock()
1544 "array.%s", es); in ntfs_mft_bitmap_extend_allocation_nolock()
1549 "record.%s", es); in ntfs_mft_bitmap_extend_allocation_nolock()
1647 ntfs_error(vol->sb, "Failed to map mft record.%s", es); in ntfs_mft_bitmap_extend_initialized_nolock()
1653 ntfs_error(vol->sb, "Failed to get search context.%s", es); in ntfs_mft_bitmap_extend_initialized_nolock()
1660 "mft bitmap attribute.%s", es); in ntfs_mft_bitmap_extend_initialized_nolock()
1809 "from the mft data attribute.%s", es); in ntfs_mft_data_extend_allocation_nolock()
[all …]
Dsuper.c491 static const char *es = ". Cannot remount read-write."; in ntfs_remount() local
496 es); in ntfs_remount()
500 ntfs_error(sb, "Volume is dirty and read-only%s", es); in ntfs_remount()
505 "and is read-only%s", es); in ntfs_remount()
512 es); in ntfs_remount()
517 "information flags%s", es); in ntfs_remount()
527 "compatibility flag%s", es); in ntfs_remount()
535 es); in ntfs_remount()
541 es); in ntfs_remount()
547 "($UsnJrnl)%s", es); in ntfs_remount()
Dinode.c1877 static const char *es = " Not allowed. $MFT is corrupt. " in ntfs_read_inode_mount() local
1885 "compressed.%s", es); in ntfs_read_inode_mount()
1893 "sparse.%s", es); in ntfs_read_inode_mount()
2342 static const char *es = " Leaving inconsistent metadata. Unmount and run " variable
2729 IS_ERR(m) ? PTR_ERR(m) : err, es); in ntfs_truncate()
2740 (unsigned)le32_to_cpu(ni->type), mp_size, es); in ntfs_truncate()
2764 err, es); in ntfs_truncate()
Dattrib.c870 static const char *es = " Unmount and run chkdsk."; in ntfs_external_attr_find() local
986 base_ni->mft_no, es); in ntfs_external_attr_find()
1011 base_ni->mft_no, es); in ntfs_external_attr_find()
1087 es); in ntfs_external_attr_find()
/linux-4.1.27/arch/arm/boot/dts/
Ddove-cubox-es.dts5 compatible = "solidrun,cubox-es", "solidrun,cubox", "marvell,dove";
Domap4-panda-es.dts15 compatible = "ti,omap4-panda-es", "ti,omap4-panda", "ti,omap4460", "ti,omap4430", "ti,omap4";
DMakefile422 omap4-panda-es.dtb \
654 dove-cubox-es.dtb \
/linux-4.1.27/sound/pci/ac97/
Dac97_pcm.c330 u16 es; in get_pslots() local
331 es = ac97->regs[AC97_EXTENDED_ID] &= ~AC97_EI_DACS_SLOT_MASK; in get_pslots()
334 case 2: es |= (1<<AC97_EI_DACS_SLOT_SHIFT); break; in get_pslots()
335 case 3: es |= (2<<AC97_EI_DACS_SLOT_SHIFT); break; in get_pslots()
337 snd_ac97_write_cache(ac97, AC97_EXTENDED_ID, es); in get_pslots()
/linux-4.1.27/include/trace/events/
Dext4.h2226 TP_PROTO(struct inode *inode, struct extent_status *es),
2228 TP_ARGS(inode, es),
2242 __entry->lblk = es->es_lblk;
2243 __entry->len = es->es_len;
2244 __entry->pblk = ext4_es_pblock(es);
2245 __entry->status = ext4_es_status(es);
2256 TP_PROTO(struct inode *inode, struct extent_status *es),
2258 TP_ARGS(inode, es)
2262 TP_PROTO(struct inode *inode, struct extent_status *es),
2264 TP_ARGS(inode, es)
[all …]
/linux-4.1.27/arch/x86/purgatory/
Dsetup-x86_64.S25 movl %eax, %es
Dentry64.S26 movl %eax, %es
/linux-4.1.27/drivers/spi/
Dspi-omap2-mcspi.c430 unsigned es) in omap2_mcspi_rx_dma() argument
445 dma_count -= es; in omap2_mcspi_rx_dma()
464 dma_count -= es; in omap2_mcspi_rx_dma()
549 unsigned es; in omap2_mcspi_txrx_dma() local
562 es = 1; in omap2_mcspi_txrx_dma()
565 es = 2; in omap2_mcspi_txrx_dma()
568 es = 4; in omap2_mcspi_txrx_dma()
576 burst = mcspi->fifo_depth / es; in omap2_mcspi_txrx_dma()
578 burst = count / es; in omap2_mcspi_txrx_dma()
596 count = omap2_mcspi_rx_dma(spi, xfer, cfg, es); in omap2_mcspi_txrx_dma()
/linux-4.1.27/include/uapi/video/
Duvesafb.h19 __u16 es; member
/linux-4.1.27/arch/x86/include/uapi/asm/
Dsigcontext32.h55 unsigned short es, __esh; member
Dvm86.h86 unsigned short es, __esh; member
Dsigcontext.h108 unsigned short es, __esh; member
Dkvm.h145 struct kvm_segment cs, ds, es, fs, gs, ss; member
/linux-4.1.27/include/linux/
Dfsl_devices.h87 unsigned es:1; /* need USBMODE:ES */ member
/linux-4.1.27/arch/x86/include/asm/xen/
Dinterface_32.h65 uint16_t es, _pad2; member
Dinterface_64.h123 uint16_t es, _pad3[3]; member
/linux-4.1.27/tools/testing/selftests/x86/
Dentry_from_vm86.c103 v86.regs.es = load_addr / 16; in main()
/linux-4.1.27/arch/x86/kernel/acpi/
Dwakeup_32.S16 movw %ax, %es
Dwakeup_64.S24 movw %ax, %es
/linux-4.1.27/arch/x86/math-emu/
Dget_address.c46 offsetof(struct kernel_vm86_regs, es),
59 offsetof(struct pt_regs, es),
/linux-4.1.27/drivers/net/cris/
Deth_v10.c1509 update_rx_stats(struct net_device_stats *es) in update_rx_stats() argument
1513 es->rx_fifo_errors += IO_EXTRACT(R_REC_COUNTERS, congestion, r); in update_rx_stats()
1514 es->rx_crc_errors += IO_EXTRACT(R_REC_COUNTERS, crc_error, r); in update_rx_stats()
1515 es->rx_frame_errors += IO_EXTRACT(R_REC_COUNTERS, alignment_error, r); in update_rx_stats()
1516 es->rx_length_errors += IO_EXTRACT(R_REC_COUNTERS, oversize, r); in update_rx_stats()
1520 update_tx_stats(struct net_device_stats *es) in update_tx_stats() argument
1524 es->collisions += in update_tx_stats()
/linux-4.1.27/Documentation/devicetree/bindings/interrupt-controller/
Dmarvell,orion-intc.txt7 - reg: base address(es) of interrupt registers starting with CAUSE register
/linux-4.1.27/arch/x86/platform/olpc/
Dxo1-wakeup.S41 movw %ax, %es
/linux-4.1.27/Documentation/video4linux/bttv/
DREADME.WINVIEW2 Support for the Leadtek WinView 601 TV/FM by Jon Tombs <jon@gte.esi.us.es>
/linux-4.1.27/Documentation/devicetree/bindings/clock/
Drockchip.txt20 - reg : shall be the control register address(es) for the clock.
/linux-4.1.27/drivers/mmc/core/
Dsd.c227 unsigned int au, es, et, eo; in mmc_read_ssr() local
260 es = UNSTUFF_BITS(ssr, 408 - 384, 16); in mmc_read_ssr()
262 if (es && et) { in mmc_read_ssr()
264 card->ssr.erase_timeout = (et * 1000) / es; in mmc_read_ssr()
/linux-4.1.27/drivers/net/ethernet/intel/i40e/
Di40e_main.c559 struct i40e_eth_stats *es; /* device's eth stats */ in i40e_update_eth_stats() local
561 es = &vsi->eth_stats; in i40e_update_eth_stats()
567 &oes->tx_errors, &es->tx_errors); in i40e_update_eth_stats()
570 &oes->rx_discards, &es->rx_discards); in i40e_update_eth_stats()
573 &oes->rx_unknown_protocol, &es->rx_unknown_protocol); in i40e_update_eth_stats()
576 &oes->tx_errors, &es->tx_errors); in i40e_update_eth_stats()
581 &oes->rx_bytes, &es->rx_bytes); in i40e_update_eth_stats()
585 &oes->rx_unicast, &es->rx_unicast); in i40e_update_eth_stats()
589 &oes->rx_multicast, &es->rx_multicast); in i40e_update_eth_stats()
593 &oes->rx_broadcast, &es->rx_broadcast); in i40e_update_eth_stats()
[all …]
/linux-4.1.27/scripts/kconfig/
Dmenu.c333 struct symbol *es = prop_get_symbol(prop); in menu_finalize() local
334 es->rev_dep.expr = expr_alloc_or(es->rev_dep.expr, in menu_finalize()
/linux-4.1.27/arch/x86/xen/
Dsmp.c297 loadsegment(es, __USER_DS); in xen_smp_prepare_boot_cpu()
387 ctxt->user_regs.es = __USER_DS; in cpu_initialize_context()
Denlighten.c1434 loadsegment(es, 0); in xen_setup_gdt()
/linux-4.1.27/arch/x86/um/
Dsignal.c171 GETREG(ES, es); in copy_sc_from_user()
260 PUTREG(ES, es); in copy_sc_to_user()
/linux-4.1.27/Documentation/usb/
DCREDITS30 Inaky Perez Gonzalez <inaky@peloncho.fis.ucm.es> for starting the
145 - Fernando Herrera <fherrera@eurielec.etsit.upm.es> has taken
/linux-4.1.27/Documentation/fb/
Duvesafb.txt41 ratio, which is what most BIOS-es are limited to.
43 Video BIOS. Note that many nVidia Video BIOS-es claim to be VBE 3.0
/linux-4.1.27/tools/power/cpupower/po/
Dpt.po368 msgstr "Uso: cpufreq-info [opções]\n"
374 msgstr "Opções:\n"
548 msgstr "Uso: cpufreq-set [opções]\n"
920 msgstr "Uso: cpufreq-info [opções]\n"
949 #~ " -c CPU, --cpu CPU número do CPU sobre o qual as inforções devem ser "
956 #~ " -c CPU, --cpu CPU número do CPU onde as configurações do cpufreq "
Dfr.po496 "Par d�faut, les informations de d�boguage seront affich�es si aucun\n"
/linux-4.1.27/Documentation/ide/
DChangeLog.ide-floppy.1996-200220 * Thanks to <shanos@es.co.nz> for pointing this out.
/linux-4.1.27/Documentation/zh_CN/
Doops-tracing.txt169 Aug 29 09:51:01 blizard kernel: ds: 0018 es: 0018 fs: 002b gs: 002b ss: 0018
/linux-4.1.27/drivers/usb/host/
Dfsl-mph-dr-of.c305 .es = 1,
Dehci-fsl.c490 tmp = USBMODE_CM_HOST | (pdata->es ? USBMODE_ES : 0); in ehci_fsl_mpc512x_drv_resume()
/linux-4.1.27/arch/mips/pci/
Dpcie-octeon.c49 uint64_t es:2; /* Endian swap = 1 */ member
80 uint64_t es:2; /* Endian swap = 1 */ member
115 pcie_addr.io.es = 1; in cvmx_pcie_get_io_base_address()
246 pcie_addr.config.es = 1; in __cvmx_pcie_build_config_addr()
/linux-4.1.27/drivers/gpu/drm/nouveau/nvkm/subdev/pmu/fuc/
Dhost.fuc62 // HOST->PWR comms - dequeue message(s) for process(es) from FIFO
/linux-4.1.27/Documentation/filesystems/nfs/
Dnfs-rdma.txt220 The IP address(es) is(are) the client's IPoIB address for an InfiniBand
221 HCA or the cleint's iWARP address(es) for an RNIC.
/linux-4.1.27/drivers/mtd/devices/
Dspear_smi.c105 #define FLASH_ID(n, es, id, psize, ssize, size) \ argument
108 .erase_cmd = es, \
/linux-4.1.27/arch/powerpc/boot/dts/
Dmpc5125twr.dts6 * Reworked by Matteo Facchinetti (engineering@sirius-es.it)
/linux-4.1.27/drivers/video/fbdev/
Duvesafb.c565 if ((task->t.regs.eax & 0xffff) != 0x4f || task->t.regs.es < 0xc000) { in uvesafb_vbe_getpmi()
568 par->pmi_base = (u16 *)phys_to_virt(((u32)task->t.regs.es << 4) in uvesafb_vbe_getpmi()
574 (u16)task->t.regs.es, (u16)task->t.regs.edi); in uvesafb_vbe_getpmi()
/linux-4.1.27/Documentation/driver-model/
Ddevres.txt11 3. Devres Group : Group devres'es and release them together
/linux-4.1.27/arch/mips/include/asm/octeon/
Dcvmx-sli-defs.h2662 uint64_t es:64; member
2664 uint64_t es:64;
3103 uint64_t es:64; member
3105 uint64_t es:64;
Dcvmx-npei-defs.h3576 uint64_t es:64; member
3578 uint64_t es:64;
3871 uint64_t es:64; member
3873 uint64_t es:64;
Dcvmx-pciercx-defs.h1038 uint32_t es:1; member
1052 uint32_t es:1;
/linux-4.1.27/Documentation/
Dkmemcheck.txt506 ffffffff8104ede8: rep movsl %ds:(%rsi),%es:(%rdi)
509 ffffffff8104edee: movsw %ds:(%rsi),%es:(%rdi)
512 ffffffff8104edf4: movsb %ds:(%rsi),%es:(%rdi)
Dstatic-keys.txt112 The branch(es) can then be switched via:
Doops-tracing.txt205 Aug 29 09:51:01 blizard kernel: ds: 0018 es: 0018 fs: 002b gs: 002b ss: 0018
Dkernel-docs.txt6 Juan-Mariano de Goyeneche <jmseyas@dit.upm.es>
10 * http://www.dit.upm.es/~jmseyas/linux/kernel/hackers-docs.html
Dapplying-patches.txt163 then you can say [y]es here to make patch revert it for you.
/linux-4.1.27/drivers/usb/phy/
Dphy-fsl-usb.c918 temp = USB_MODE_STREAM_DISABLE | (pdata->es ? USB_MODE_ES : 0); in usb_otg_start()
/linux-4.1.27/Documentation/x86/
Dboot.txt426 Assume that %cs %ds %ss %es are all set to flat segments with
972 At entry, ds = es = ss should point to the start of the real-mode
977 es = ss.
/linux-4.1.27/Documentation/networking/
Dpacket_mmap.txt17 Ulisses Alonso Camaró <uaca@i.hate.spam.alumni.uv.es>
261 see http://pusa.uv.es/~ulisses/packet_mmap/packet_mmap.pre-2.4.26_2.6.5.txt
/linux-4.1.27/
DREADME342 ds: xxxx es: xxxx fs: xxxx gs: xxxx
DCREDITS2735 W: http://miguelojeda.es
2736 W: http://jair.lab.fi.uva.es/~migojed/
2962 E: quintela@fi.udc.es
3506 E: jon@gte.esi.us.es
3507 W: http://www.esi.us.es/~jon
DMAINTAINERS1885 W: http://miguelojeda.es/auxdisplay.htm
1886 W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
2484 W: http://miguelojeda.es/auxdisplay.htm
2485 W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
2492 W: http://miguelojeda.es/auxdisplay.htm
2493 W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
5800 W: http://miguelojeda.es/auxdisplay.htm
5801 W: http://jair.lab.fi.uva.es/~migojed/auxdisplay.htm
/linux-4.1.27/Documentation/s390/
DDebugging390.txt457 ( Executable Linkable Format, Linux'es most common executable format ),
838 will trace for BAS'es ( opcode 4D ) in the range 0197BC.4000
1100 On the very latest VM Nucleus'es VM can now display ascii
2029 the processes'es registers from the kernel task_structure
/linux-4.1.27/drivers/usb/gadget/udc/
Dfsl_udc_core.c306 if (udc->pdata->es) in dr_controller_setup()
/linux-4.1.27/Documentation/virtual/uml/
DUserModeLinux-HOWTO.txt3218 $19 = {gs = 0, __gsh = 0, fs = 0, __fsh = 0, es = 43, __esh = 0, ds = 43,
3571 $1 = {gs = 0, __gsh = 0, fs = 0, __fsh = 0, es = 43, __esh = 0, ds = 43,
/linux-4.1.27/Documentation/virtual/kvm/
Dapi.txt341 struct kvm_segment cs, ds, es, fs, gs, ss;