/linux-4.4.14/drivers/net/ethernet/dec/tulip/ |
D | de2104x.c | 335 static void de_tx (struct de_private *de); 336 static void de_clean_rings (struct de_private *de); 337 static void de_media_interrupt (struct de_private *de, u32 status); 340 static unsigned int de_ok_to_advertise (struct de_private *de, u32 new_media); 374 #define dr32(reg) ioread32(de->regs + (reg)) 375 #define dw32(reg, val) iowrite32((val), de->regs + (reg)) 378 static void de_rx_err_acct (struct de_private *de, unsigned rx_tail, in de_rx_err_acct() argument 381 netif_dbg(de, rx_err, de->dev, in de_rx_err_acct() 388 netif_warn(de, rx_err, de->dev, in de_rx_err_acct() 391 de->net_stats.rx_length_errors++; in de_rx_err_acct() [all …]
|
/linux-4.4.14/fs/hpfs/ |
D | dnode.c | 13 struct hpfs_dirent *de; in get_pos() local 16 for (de = dnode_first_de(d); de < de_end; de = de_next_de(de)) { in get_pos() 17 if (de == fde) return ((loff_t) le32_to_cpu(d->self) << 4) | (loff_t)i; in get_pos() 118 struct hpfs_dirent *de, *de_end, *dee = NULL, *deee = NULL; in dnode_pre_last_de() local 120 for (de = dnode_first_de(d); de < de_end; de = de_next_de(de)) { in dnode_pre_last_de() 121 deee = dee; dee = de; in dnode_pre_last_de() 128 struct hpfs_dirent *de, *de_end, *dee = NULL; in dnode_last_de() local 130 for (de = dnode_first_de(d); de < de_end; de = de_next_de(de)) { in dnode_last_de() 131 dee = de; in dnode_last_de() 138 struct hpfs_dirent *de; in set_last_pointer() local [all …]
|
D | dir.c | 65 struct hpfs_dirent *de; in hpfs_readdir() local 149 if (!(de = map_pos_dirent(inode, &next_pos, &qbh))) { in hpfs_readdir() 154 if (de->first || de->last) { in hpfs_readdir() 156 if (de->first && !de->last && (de->namelen != 2 in hpfs_readdir() 157 || de ->name[0] != 1 || de->name[1] != 1)) in hpfs_readdir() 159 if (de->last && (de->namelen != 1 || de ->name[0] != 255)) in hpfs_readdir() 166 tempname = hpfs_translate_name(inode->i_sb, de->name, de->namelen, lc, de->not_8x3); in hpfs_readdir() 167 if (!dir_emit(ctx, tempname, de->namelen, le32_to_cpu(de->fnode), DT_UNKNOWN)) { in hpfs_readdir() 168 if (tempname != de->name) kfree(tempname); in hpfs_readdir() 173 if (tempname != de->name) kfree(tempname); in hpfs_readdir() [all …]
|
D | inode.c | 213 struct hpfs_dirent *de; in hpfs_write_inode_nolock() local 217 if (!(de = map_fnode_dirent(i->i_sb, i->i_ino, fnode, &qbh))) { in hpfs_write_inode_nolock() 221 } else de = NULL; in hpfs_write_inode_nolock() 224 if (de) de->file_size = cpu_to_le32(i->i_size); in hpfs_write_inode_nolock() 227 if (de) de->file_size = cpu_to_le32(0); in hpfs_write_inode_nolock() 230 if (de) { in hpfs_write_inode_nolock() 231 de->write_date = cpu_to_le32(gmt_to_local(i->i_sb, i->i_mtime.tv_sec)); in hpfs_write_inode_nolock() 232 de->read_date = cpu_to_le32(gmt_to_local(i->i_sb, i->i_atime.tv_sec)); in hpfs_write_inode_nolock() 233 de->creation_date = cpu_to_le32(gmt_to_local(i->i_sb, i->i_ctime.tv_sec)); in hpfs_write_inode_nolock() 234 de->read_only = !(i->i_mode & 0222); in hpfs_write_inode_nolock() [all …]
|
D | map.c | 284 struct hpfs_dirent *de = (struct hpfs_dirent *)((char *)dnode + p); in hpfs_map_dnode() local 285 …if (le16_to_cpu(de->length) > 292 || (le16_to_cpu(de->length) < 32) || (le16_to_cpu(de->length) & … in hpfs_map_dnode() 289 if (((31 + de->namelen + de->down*4 + 3) & ~3) != le16_to_cpu(de->length)) { in hpfs_map_dnode() 290 …if (((31 + de->namelen + de->down*4 + 3) & ~3) < le16_to_cpu(de->length) && s->s_flags & MS_RDONLY… in hpfs_map_dnode() 295 if (hpfs_sb(s)->sb_chk >= 2) b |= 1 << de->down; in hpfs_map_dnode() 296 if (de->down) if (de_down_pointer(de) < 0x10) { in hpfs_map_dnode()
|
D | namei.c | 28 struct hpfs_dirent *de; in hpfs_mkdir() local 92 de = hpfs_add_de(dir->i_sb, dnode, "\001\001", 2, 0); in hpfs_mkdir() 93 …de->creation_date = de->write_date = de->read_date = cpu_to_le32(gmt_to_local(dir->i_sb, get_secon… in hpfs_mkdir() 94 if (!(mode & 0222)) de->read_only = 1; in hpfs_mkdir() 95 de->first = de->directory = 1; in hpfs_mkdir() 97 de->fnode = cpu_to_le32(fno); in hpfs_mkdir() 374 struct hpfs_dirent *de; in hpfs_unlink() local 384 de = map_dirent(dir, hpfs_i(dir)->i_dno, name, len, &dno, &qbh); in hpfs_unlink() 385 if (!de) in hpfs_unlink() 389 if (de->first) in hpfs_unlink() [all …]
|
D | hpfs_fn.h | 106 static inline dnode_secno de_down_pointer (struct hpfs_dirent *de) in de_down_pointer() argument 108 CHKCOND(de->down,("HPFS: de_down_pointer: !de->down\n")); in de_down_pointer() 109 return le32_to_cpu(*(__le32 *) ((void *) de + le16_to_cpu(de->length) - 4)); in de_down_pointer() 129 static inline struct hpfs_dirent *de_next_de (struct hpfs_dirent *de) in de_next_de() argument 131 …HKCOND(le16_to_cpu(de->length)>=0x20 && le16_to_cpu(de->length)<0x800,("HPFS: de_next_de: de->leng… in de_next_de() 132 return (void *) de + le16_to_cpu(de->length); in de_next_de()
|
D | super.c | 559 struct hpfs_dirent *de = NULL; in hpfs_fill_super() local 730 de = map_dirent(root, root_dno, "\001\001", 2, NULL, &qbh); in hpfs_fill_super() 731 if (!de) in hpfs_fill_super() 734 root->i_atime.tv_sec = local_to_gmt(s, le32_to_cpu(de->read_date)); in hpfs_fill_super() 736 root->i_mtime.tv_sec = local_to_gmt(s, le32_to_cpu(de->write_date)); in hpfs_fill_super() 738 root->i_ctime.tv_sec = local_to_gmt(s, le32_to_cpu(de->creation_date)); in hpfs_fill_super() 740 hpfs_i(root)->i_ea_size = le32_to_cpu(de->ea_size); in hpfs_fill_super()
|
/linux-4.4.14/fs/proc/ |
D | generic.c | 31 static int proc_match(unsigned int len, const char *name, struct proc_dir_entry *de) in proc_match() argument 33 if (len < de->namelen) in proc_match() 35 if (len > de->namelen) in proc_match() 38 return memcmp(name, de->name, len); in proc_match() 60 struct proc_dir_entry *de = container_of(node, in pde_subdir_find() local 63 int result = proc_match(len, name, de); in pde_subdir_find() 70 return de; in pde_subdir_find() 76 struct proc_dir_entry *de) in pde_subdir_insert() argument 85 int result = proc_match(de->namelen, de->name, this); in pde_subdir_insert() 97 rb_link_node(&de->subdir_node, parent, new); in pde_subdir_insert() [all …]
|
D | inode.c | 33 struct proc_dir_entry *de; in proc_evict_inode() local 43 de = PDE(inode); in proc_evict_inode() 44 if (de) in proc_evict_inode() 45 pde_put(de); in proc_evict_inode() 162 void proc_entry_rundown(struct proc_dir_entry *de) in proc_entry_rundown() argument 166 de->pde_unload_completion = &c; in proc_entry_rundown() 167 if (atomic_add_return(BIAS, &de->in_use) != BIAS) in proc_entry_rundown() 170 spin_lock(&de->pde_unload_lock); in proc_entry_rundown() 171 while (!list_empty(&de->pde_openers)) { in proc_entry_rundown() 173 pdeo = list_first_entry(&de->pde_openers, struct pde_opener, lh); in proc_entry_rundown() [all …]
|
D | proc_net.c | 130 struct dentry *de; in proc_tgid_net_lookup() local 133 de = ERR_PTR(-ENOENT); in proc_tgid_net_lookup() 136 de = proc_lookup_de(net->proc_net, dir, dentry); in proc_tgid_net_lookup() 139 return de; in proc_tgid_net_lookup()
|
/linux-4.4.14/fs/nilfs2/ |
D | dir.c | 205 nilfs_match(int len, const unsigned char *name, struct nilfs_dir_entry *de) in nilfs_match() argument 207 if (len != de->name_len) in nilfs_match() 209 if (!de->inode) in nilfs_match() 211 return !memcmp(name, de->name, len); in nilfs_match() 247 static void nilfs_set_de_type(struct nilfs_dir_entry *de, struct inode *inode) in nilfs_set_de_type() argument 251 de->file_type = nilfs_type_by_mode[(mode & S_IFMT)>>S_SHIFT]; in nilfs_set_de_type() 269 struct nilfs_dir_entry *de; in nilfs_readdir() local 279 de = (struct nilfs_dir_entry *)(kaddr + offset); in nilfs_readdir() 282 for ( ; (char *)de <= limit; de = nilfs_next_entry(de)) { in nilfs_readdir() 283 if (de->rec_len == 0) { in nilfs_readdir() [all …]
|
D | namei.c | 274 struct nilfs_dir_entry *de; in nilfs_do_unlink() local 279 de = nilfs_find_entry(dir, &dentry->d_name, &page); in nilfs_do_unlink() 280 if (!de) in nilfs_do_unlink() 285 if (le64_to_cpu(de->inode) != inode->i_ino) in nilfs_do_unlink() 294 err = nilfs_delete_entry(de, page); in nilfs_do_unlink()
|
/linux-4.4.14/fs/ufs/ |
D | dir.c | 34 const unsigned char *name, struct ufs_dir_entry *de) in ufs_match() argument 36 if (len != ufs_get_de_namlen(sb, de)) in ufs_match() 38 if (!de->d_ino) in ufs_match() 40 return !memcmp(name, de->d_name, len); in ufs_match() 71 struct ufs_dir_entry *de; in ufs_inode_by_name() local 74 de = ufs_find_entry(dir, qstr, &page); in ufs_inode_by_name() 75 if (de) { in ufs_inode_by_name() 76 res = fs32_to_cpu(dir->i_sb, de->d_ino); in ufs_inode_by_name() 84 void ufs_set_link(struct inode *dir, struct ufs_dir_entry *de, in ufs_set_link() argument 89 (char *) de - (char *) page_address(page); in ufs_set_link() [all …]
|
D | util.h | 137 ufs_get_de_namlen(struct super_block *sb, struct ufs_dir_entry *de) in ufs_get_de_namlen() argument 140 return fs16_to_cpu(sb, de->d_u.d_namlen); in ufs_get_de_namlen() 142 return de->d_u.d_44.d_namlen; /* XXX this seems wrong */ in ufs_get_de_namlen() 146 ufs_set_de_namlen(struct super_block *sb, struct ufs_dir_entry *de, u16 value) in ufs_set_de_namlen() argument 149 de->d_u.d_namlen = cpu_to_fs16(sb, value); in ufs_set_de_namlen() 151 de->d_u.d_44.d_namlen = value; /* XXX this seems wrong */ in ufs_set_de_namlen() 155 ufs_set_de_type(struct super_block *sb, struct ufs_dir_entry *de, int mode) in ufs_set_de_type() argument 165 de->d_u.d_44.d_type = DT_SOCK; in ufs_set_de_type() 168 de->d_u.d_44.d_type = DT_LNK; in ufs_set_de_type() 171 de->d_u.d_44.d_type = DT_REG; in ufs_set_de_type() [all …]
|
D | namei.c | 211 struct ufs_dir_entry *de; in ufs_unlink() local 215 de = ufs_find_entry(dir, &dentry->d_name, &page); in ufs_unlink() 216 if (!de) in ufs_unlink() 219 err = ufs_delete_entry(dir, de, page); in ufs_unlink()
|
/linux-4.4.14/fs/exofs/ |
D | dir.c | 177 struct exofs_dir_entry *de) in exofs_match() argument 179 if (len != de->name_len) in exofs_match() 181 if (!de->inode_no) in exofs_match() 183 return !memcmp(name, de->name, len); in exofs_match() 195 struct exofs_dir_entry *de = (struct exofs_dir_entry *)(base + offset); in exofs_validate_entry() local 198 while ((char *)p < (char *)de) { in exofs_validate_entry() 229 void exofs_set_de_type(struct exofs_dir_entry *de, struct inode *inode) in exofs_set_de_type() argument 232 de->file_type = exofs_type_by_mode[(mode & S_IFMT) >> S_SHIFT]; in exofs_set_de_type() 251 struct exofs_dir_entry *de; in exofs_readdir() local 270 de = (struct exofs_dir_entry *)(kaddr + offset); in exofs_readdir() [all …]
|
D | namei.c | 193 struct exofs_dir_entry *de; in exofs_unlink() local 197 de = exofs_find_entry(dir, dentry, &page); in exofs_unlink() 198 if (!de) in exofs_unlink() 201 err = exofs_delete_entry(de, page); in exofs_unlink()
|
/linux-4.4.14/fs/ext2/ |
D | dir.c | 222 struct ext2_dir_entry_2 * de) in ext2_match() argument 224 if (len != de->name_len) in ext2_match() 226 if (!de->inode) in ext2_match() 228 return !memcmp(name, de->name, len); in ext2_match() 243 ext2_dirent *de = (ext2_dirent*)(base + offset); in ext2_validate_entry() local 245 while ((char*)p < (char*)de) { in ext2_validate_entry() 275 static inline void ext2_set_de_type(ext2_dirent *de, struct inode *inode) in ext2_set_de_type() argument 279 de->file_type = ext2_type_by_mode[(mode & S_IFMT)>>S_SHIFT]; in ext2_set_de_type() 281 de->file_type = 0; in ext2_set_de_type() 305 ext2_dirent *de; in ext2_readdir() local [all …]
|
D | namei.c | 288 struct ext2_dir_entry_2 * de; in ext2_unlink() local 296 de = ext2_find_entry (dir, &dentry->d_name, &page); in ext2_unlink() 297 if (!de) { in ext2_unlink() 302 err = ext2_delete_entry (de, page); in ext2_unlink()
|
/linux-4.4.14/fs/sysv/ |
D | dir.c | 81 struct sysv_dir_entry *de; in sysv_readdir() local 87 de = (struct sysv_dir_entry *)(kaddr+offset); in sysv_readdir() 89 for ( ;(char*)de <= limit; de++, ctx->pos += sizeof(*de)) { in sysv_readdir() 90 char *name = de->name; in sysv_readdir() 92 if (!de->inode) in sysv_readdir() 96 fs16_to_cpu(SYSV_SB(sb), de->inode), in sysv_readdir() 134 struct sysv_dir_entry *de; in sysv_find_entry() local 148 de = (struct sysv_dir_entry *) kaddr; in sysv_find_entry() 150 for ( ; (char *) de <= kaddr ; de++) { in sysv_find_entry() 151 if (!de->inode) in sysv_find_entry() [all …]
|
D | namei.c | 171 struct sysv_dir_entry * de; in sysv_unlink() local 174 de = sysv_find_entry(dentry, &page); in sysv_unlink() 175 if (!de) in sysv_unlink() 178 err = sysv_delete_entry (de, page); in sysv_unlink()
|
/linux-4.4.14/fs/fat/ |
D | dir.c | 41 struct msdos_dir_entry *de) in fat_make_i_pos() argument 44 | (de - (struct msdos_dir_entry *)bh->b_data); in fat_make_i_pos() 81 struct buffer_head **bh, struct msdos_dir_entry **de) in fat__get_entry() argument 111 *de = (struct msdos_dir_entry *)((*bh)->b_data + offset); in fat__get_entry() 118 struct msdos_dir_entry **de) in fat_get_entry() argument 121 if (*bh && *de && in fat_get_entry() 122 (*de - (struct msdos_dir_entry *)(*bh)->b_data) < in fat_get_entry() 125 (*de)++; in fat_get_entry() 128 return fat__get_entry(dir, pos, bh, de); in fat_get_entry() 280 struct buffer_head **bh, struct msdos_dir_entry **de, in fat_parse_long() argument [all …]
|
D | nfs.c | 76 struct msdos_dir_entry *de ; in __fat_nfs_get_inode() local 87 de = (struct msdos_dir_entry *)bh->b_data; in __fat_nfs_get_inode() 91 if (IS_FREE(de[offset].name)) in __fat_nfs_get_inode() 94 inode = fat_build_inode(sb, &de[offset], i_pos); in __fat_nfs_get_inode() 226 struct msdos_dir_entry *de; in fat_rebuild_parent() local 239 de = (struct msdos_dir_entry *) parent_bh->b_data; in fat_rebuild_parent() 240 clus_to_match = fat_get_start(sbi, &de[0]); in fat_rebuild_parent() 241 search_clus = fat_get_start(sbi, &de[1]); in fat_rebuild_parent() 252 fat_fill_inode(dummy_grand_parent, &de[1]); in fat_rebuild_parent() 257 parent = fat_build_inode(sb, sinfo.de, sinfo.i_pos); in fat_rebuild_parent() [all …]
|
D | namei_msdos.c | 131 if (!(sinfo->de->attr & ATTR_HIDDEN)) in msdos_find() 134 if (sinfo->de->attr & ATTR_HIDDEN) in msdos_find() 214 inode = fat_build_inode(sb, sinfo.de, sinfo.i_pos); in msdos_lookup() 230 struct msdos_dir_entry de; in msdos_add_entry() local 234 memcpy(de.name, name, MSDOS_NAME); in msdos_add_entry() 235 de.attr = is_dir ? ATTR_DIR : ATTR_ARCH; in msdos_add_entry() 237 de.attr |= ATTR_HIDDEN; in msdos_add_entry() 238 de.lcase = 0; in msdos_add_entry() 240 de.cdate = de.adate = 0; in msdos_add_entry() 241 de.ctime = 0; in msdos_add_entry() [all …]
|
D | fat.h | 135 struct msdos_dir_entry *de; member 256 const struct msdos_dir_entry *de) in fat_get_start() argument 258 int cluster = le16_to_cpu(de->start); in fat_get_start() 260 cluster |= (le16_to_cpu(de->starthi) << 16); in fat_get_start() 264 static inline void fat_set_start(struct msdos_dir_entry *de, int cluster) in fat_set_start() argument 266 de->start = cpu_to_le16(cluster); in fat_set_start() 267 de->starthi = cpu_to_le16(cluster >> 16); in fat_set_start() 302 struct msdos_dir_entry **de); 375 struct msdos_dir_entry *de, loff_t i_pos); 379 extern int fat_fill_inode(struct inode *inode, struct msdos_dir_entry *de);
|
D | namei_vfat.c | 586 struct msdos_dir_entry *de; in vfat_build_slots() local 615 de = (struct msdos_dir_entry *)slots; in vfat_build_slots() 636 de = (struct msdos_dir_entry *)ps; in vfat_build_slots() 641 memcpy(de->name, msdos_name, MSDOS_NAME); in vfat_build_slots() 642 de->attr = is_dir ? ATTR_DIR : ATTR_ARCH; in vfat_build_slots() 643 de->lcase = lcase; in vfat_build_slots() 645 de->time = de->ctime = time; in vfat_build_slots() 646 de->date = de->cdate = de->adate = date; in vfat_build_slots() 647 de->ctime_cs = time_cs; in vfat_build_slots() 648 fat_set_start(de, cluster); in vfat_build_slots() [all …]
|
D | inode.c | 453 int fat_fill_inode(struct inode *inode, struct msdos_dir_entry *de) in fat_fill_inode() argument 464 if ((de->attr & ATTR_DIR) && !IS_FREE(de->name)) { in fat_fill_inode() 466 inode->i_mode = fat_make_mode(sbi, de->attr, S_IRWXUGO); in fat_fill_inode() 470 MSDOS_I(inode)->i_start = fat_get_start(sbi, de); in fat_fill_inode() 480 inode->i_mode = fat_make_mode(sbi, de->attr, in fat_fill_inode() 481 ((sbi->options.showexec && !is_exec(de->name + 8)) in fat_fill_inode() 483 MSDOS_I(inode)->i_start = fat_get_start(sbi, de); in fat_fill_inode() 486 inode->i_size = le32_to_cpu(de->size); in fat_fill_inode() 492 if (de->attr & ATTR_SYS) { in fat_fill_inode() 496 fat_save_attrs(inode, de->attr); in fat_fill_inode() [all …]
|
/linux-4.4.14/fs/freevxfs/ |
D | vxfs_lookup.c | 77 vxfs_match(int len, const char * const name, struct vxfs_direct *de) in vxfs_match() argument 79 if (len != de->d_namelen) in vxfs_match() 81 if (!de->d_ino) in vxfs_match() 83 return !memcmp(name, de->d_name, len); in vxfs_match() 87 vxfs_next_entry(struct vxfs_direct *de) in vxfs_next_entry() argument 89 return ((struct vxfs_direct *)((char*)de + de->d_reclen)); in vxfs_next_entry() 130 struct vxfs_direct *de; in vxfs_find_entry() local 136 de = (struct vxfs_direct *)(baddr + VXFS_DIRBLKOV(dbp)); in vxfs_find_entry() 138 for (; (caddr_t)de <= limit; de = vxfs_next_entry(de)) { in vxfs_find_entry() 139 if (!de->d_reclen) in vxfs_find_entry() [all …]
|
/linux-4.4.14/fs/isofs/ |
D | dir.c | 16 int isofs_name_translate(struct iso_directory_record *de, char *new, struct inode *inode) in isofs_name_translate() argument 18 char * old = de->name; in isofs_name_translate() 19 int len = de->name_len[0]; in isofs_name_translate() 49 int get_acorn_filename(struct iso_directory_record *de, in get_acorn_filename() argument 54 int retnamlen = isofs_name_translate(de, retname, inode); in get_acorn_filename() 58 std = sizeof(struct iso_directory_record) + de->name_len[0]; in get_acorn_filename() 61 if ((*((unsigned char *) de) - std) != 32) in get_acorn_filename() 63 chr = ((unsigned char *) de) + std; in get_acorn_filename() 68 if (((de->flags[0] & 2) == 0) && (chr[13] == 0xff) in get_acorn_filename() 94 struct iso_directory_record *de; in do_isofs_readdir() local [all …]
|
D | namei.c | 53 struct iso_directory_record *de; in isofs_find_entry() local 63 de = (struct iso_directory_record *) (bh->b_data + offset); in isofs_find_entry() 65 de_len = *(unsigned char *) de; in isofs_find_entry() 83 memcpy(tmpde, de, slop); in isofs_find_entry() 94 de = tmpde; in isofs_find_entry() 97 dlen = de->name_len[0]; in isofs_find_entry() 98 dpnt = de->name; in isofs_find_entry() 108 ((i = get_rock_ridge_filename(de, tmpname, dir)))) { in isofs_find_entry() 113 dlen = get_joliet_filename(de, tmpname, dir); in isofs_find_entry() 117 dlen = get_acorn_filename(de, tmpname, dir); in isofs_find_entry() [all …]
|
D | joliet.c | 41 get_joliet_filename(struct iso_directory_record * de, unsigned char *outname, struct inode * inode) in get_joliet_filename() argument 51 len = utf16s_to_utf8s((const wchar_t *) de->name, in get_joliet_filename() 52 de->name_len[0] >> 1, UTF16_BIG_ENDIAN, in get_joliet_filename() 55 len = uni16_to_x8(outname, (__be16 *) de->name, in get_joliet_filename() 56 de->name_len[0] >> 1, nls); in get_joliet_filename()
|
D | export.c | 49 struct iso_directory_record *de = NULL; in isofs_export_get_parent() local 84 de = (struct iso_directory_record*)bh->b_data; in isofs_export_get_parent() 87 parent_offset = (unsigned long)isonum_711(de->length); in isofs_export_get_parent() 88 de = (struct iso_directory_record*)(bh->b_data + parent_offset); in isofs_export_get_parent() 91 if ((isonum_711(de->name_len) != 1) || (de->name[0] != 1)) { in isofs_export_get_parent() 99 isofs_normalize_block_and_offset(de, &parent_block, &parent_offset); in isofs_export_get_parent()
|
D | inode.c | 547 struct iso_directory_record *de; in rootdir_empty() local 554 de = (struct iso_directory_record *) (bh->b_data + offset); in rootdir_empty() 555 de_len = *(unsigned char *) de; in rootdir_empty() 1162 struct iso_directory_record *de; in isofs_read_level3_size() local 1170 de = (struct iso_directory_record *) (bh->b_data + offset); in isofs_read_level3_size() 1171 de_len = *(unsigned char *) de; in isofs_read_level3_size() 1193 memcpy(tmpde, de, slop); in isofs_read_level3_size() 1204 de = tmpde; in isofs_read_level3_size() 1207 inode->i_size += isonum_733(de->size); in isofs_read_level3_size() 1213 more_entries = de->flags[-high_sierra] & 0x80; in isofs_read_level3_size() [all …]
|
D | isofs.h | 183 isofs_normalize_block_and_offset(struct iso_directory_record* de, in isofs_normalize_block_and_offset() argument 188 if (de->flags[0] & 2) { in isofs_normalize_block_and_offset() 190 *block = (unsigned long)isonum_733(de->extent) in isofs_normalize_block_and_offset() 191 + (unsigned long)isonum_711(de->ext_attr_length); in isofs_normalize_block_and_offset()
|
D | rock.c | 52 static void setup_rock_ridge(struct iso_directory_record *de, in setup_rock_ridge() argument 55 rs->len = sizeof(struct iso_directory_record) + de->name_len[0]; in setup_rock_ridge() 58 rs->chr = (unsigned char *)de + rs->len; in setup_rock_ridge() 59 rs->len = *((unsigned char *)de) - rs->len; in setup_rock_ridge() 197 int get_rock_ridge_filename(struct iso_directory_record *de, in get_rock_ridge_filename() argument 214 setup_rock_ridge(de, inode, &rs); in get_rock_ridge_filename() 308 parse_rock_ridge_inode_internal(struct iso_directory_record *de, in parse_rock_ridge_inode_internal() argument 324 setup_rock_ridge(de, inode, &rs); in parse_rock_ridge_inode_internal() 670 int parse_rock_ridge_inode(struct iso_directory_record *de, struct inode *inode, in parse_rock_ridge_inode() argument 674 int result = parse_rock_ridge_inode_internal(de, inode, flags); in parse_rock_ridge_inode() [all …]
|
/linux-4.4.14/drivers/staging/lustre/lustre/llite/ |
D | dcache.c | 59 static void ll_release(struct dentry *de) in ll_release() argument 63 LASSERT(de != NULL); in ll_release() 64 lld = ll_d2d(de); in ll_release() 73 de->d_fsdata = NULL; in ll_release() 150 static int ll_ddelete(const struct dentry *de) in ll_ddelete() argument 152 LASSERT(de); in ll_ddelete() 155 d_lustre_invalid((struct dentry *)de) ? "deleting" : "keeping", in ll_ddelete() 156 de, de, de->d_parent, d_inode(de), in ll_ddelete() 157 d_unhashed(de) ? "" : "hashed,", in ll_ddelete() 158 list_empty(&de->d_subdirs) ? "" : "subdirs"); in ll_ddelete() [all …]
|
D | namei.c | 375 struct dentry *ll_splice_alias(struct inode *inode, struct dentry *de) in ll_splice_alias() argument 381 new = ll_find_alias(inode, de); in ll_splice_alias() 388 d_move(new, de); in ll_splice_alias() 396 rc = ll_d_init(de); in ll_splice_alias() 399 d_add(de, inode); in ll_splice_alias() 401 de, d_inode(de), d_count(de), de->d_flags); in ll_splice_alias() 402 return de; in ll_splice_alias() 407 struct inode *parent, struct dentry **de) in ll_lookup_it_finish() argument 418 rc = ll_prep_inode(&inode, request, (*de)->d_sb, it); in ll_lookup_it_finish() 437 if (d_unhashed(*de)) { in ll_lookup_it_finish() [all …]
|
D | llite_internal.h | 74 #define ll_d2d(de) ((struct ll_dentry_data *)((de)->d_fsdata)) argument 689 struct dentry *ll_splice_alias(struct inode *inode, struct dentry *de); 729 int ll_getattr(struct vfsmount *mnt, struct dentry *de, struct kstat *stat); 752 int ll_d_init(struct dentry *de); 771 int ll_setattr(struct dentry *de, struct iattr *attr); 772 int ll_statfs(struct dentry *de, struct kstatfs *sfs);
|
/linux-4.4.14/fs/reiserfs/ |
D | namei.c | 29 static int bin_search_in_dir_item(struct reiserfs_dir_entry *de, loff_t off) in bin_search_in_dir_item() argument 31 struct item_head *ih = de->de_ih; in bin_search_in_dir_item() 32 struct reiserfs_de_head *deh = de->de_deh; in bin_search_in_dir_item() 49 de->de_entry_num = j; in bin_search_in_dir_item() 53 de->de_entry_num = lbound; in bin_search_in_dir_item() 60 static inline void set_de_item_location(struct reiserfs_dir_entry *de, in set_de_item_location() argument 63 de->de_bh = get_last_bh(path); in set_de_item_location() 64 de->de_ih = tp_item_head(path); in set_de_item_location() 65 de->de_deh = B_I_DEH(de->de_bh, de->de_ih); in set_de_item_location() 66 de->de_item_num = PATH_LAST_POSITION(path); in set_de_item_location() [all …]
|
D | dir.c | 75 struct reiserfs_dir_entry de; in reiserfs_readdir_inode() local 99 &de); in reiserfs_readdir_inode() 108 entry_num = de.de_entry_num; in reiserfs_readdir_inode() 109 bh = de.de_bh; in reiserfs_readdir_inode() 110 item_num = de.de_item_num; in reiserfs_readdir_inode() 111 ih = de.de_ih; in reiserfs_readdir_inode()
|
D | prints.c | 125 static void sprintf_direntry(char *buf, struct reiserfs_dir_entry *de) in sprintf_direntry() argument 129 memcpy(name, de->de_name, de->de_namelen > 19 ? 19 : de->de_namelen); in sprintf_direntry() 130 name[de->de_namelen > 19 ? 19 : de->de_namelen] = 0; in sprintf_direntry() 131 sprintf(buf, "\"%s\"==>[%d %d]", name, de->de_dir_id, de->de_objectid); in sprintf_direntry()
|
D | super.c | 1687 struct reiserfs_dir_entry de; in find_hash_out() local 1695 retval = search_by_entry_key(s, &key, &path, &de); in find_hash_out() 1701 de.de_entry_num--; in find_hash_out() 1703 set_de_name_and_namelen(&de); in find_hash_out() 1704 deh = de.de_deh + de.de_entry_num; in find_hash_out() 1715 r5hash = GET_HASH_VALUE(r5_hash(de.de_name, de.de_namelen)); in find_hash_out() 1716 teahash = GET_HASH_VALUE(keyed_hash(de.de_name, de.de_namelen)); in find_hash_out() 1717 yurahash = GET_HASH_VALUE(yura_hash(de.de_name, de.de_namelen)); in find_hash_out()
|
/linux-4.4.14/fs/cifs/ |
D | readdir.c | 402 static void cifs_fill_dirent_unix(struct cifs_dirent *de, in cifs_fill_dirent_unix() argument 405 de->name = &info->FileName[0]; in cifs_fill_dirent_unix() 407 de->namelen = cifs_unicode_bytelen(de->name); in cifs_fill_dirent_unix() 409 de->namelen = strnlen(de->name, PATH_MAX); in cifs_fill_dirent_unix() 410 de->resume_key = info->ResumeKey; in cifs_fill_dirent_unix() 411 de->ino = le64_to_cpu(info->basic.UniqueId); in cifs_fill_dirent_unix() 414 static void cifs_fill_dirent_dir(struct cifs_dirent *de, in cifs_fill_dirent_dir() argument 417 de->name = &info->FileName[0]; in cifs_fill_dirent_dir() 418 de->namelen = le32_to_cpu(info->FileNameLength); in cifs_fill_dirent_dir() 419 de->resume_key = info->FileIndex; in cifs_fill_dirent_dir() [all …]
|
/linux-4.4.14/fs/qnx6/ |
D | dir.c | 45 struct qnx6_long_dir_entry *de, in qnx6_longname() argument 49 u32 s = fs32_to_cpu(sbi, de->de_long_inode); /* in block units */ in qnx6_longname() 62 struct qnx6_long_dir_entry *de, in qnx6_dir_longfilename() argument 72 if (de->de_size != 0xff) { in qnx6_dir_longfilename() 75 pr_err("invalid direntry size (%i).\n", de->de_size); in qnx6_dir_longfilename() 78 lf = qnx6_longname(s, de, &page); in qnx6_dir_longfilename() 95 if (!test_opt(s, MMI_FS) && fs32_to_cpu(sbi, de->de_checksum) != in qnx6_dir_longfilename() 129 struct qnx6_dir_entry *de; in qnx6_readdir() local 137 de = ((struct qnx6_dir_entry *)page_address(page)) + start; in qnx6_readdir() 138 for (; i < limit; i++, de++, ctx->pos += QNX6_DIR_ENTRY_SIZE) { in qnx6_readdir() [all …]
|
/linux-4.4.14/fs/minix/ |
D | dir.c | 75 static inline void *minix_next_entry(void *de, struct minix_sb_info *sbi) in minix_next_entry() argument 77 return (void*)((char*)de + sbi->s_dirsize); in minix_next_entry() 115 minix_dirent *de = (minix_dirent *)p; in minix_readdir() local 116 name = de->name; in minix_readdir() 117 inumber = de->inode; in minix_readdir() 181 minix_dirent *de = (minix_dirent *)p; in minix_find_entry() local 182 namx = de->name; in minix_find_entry() 183 inumber = de->inode; in minix_find_entry() 210 minix_dirent *de; in minix_add_link() local 234 de = (minix_dirent *)p; in minix_add_link() [all …]
|
D | namei.c | 156 struct minix_dir_entry * de; in minix_unlink() local 158 de = minix_find_entry(dentry, &page); in minix_unlink() 159 if (!de) in minix_unlink() 162 err = minix_delete_entry(de, page); in minix_unlink()
|
/linux-4.4.14/Documentation/i2c/busses/ |
D | i2c-nforce2 | 4 * nForce2 MCP 10de:0064 5 * nForce2 Ultra 400 MCP 10de:0084 6 * nForce3 Pro150 MCP 10de:00D4 7 * nForce3 250Gb MCP 10de:00E4 8 * nForce4 MCP 10de:0052 9 * nForce4 MCP-04 10de:0034 10 * nForce MCP51 10de:0264 11 * nForce MCP55 10de:0368 12 * nForce MCP61 10de:03EB 13 * nForce MCP65 10de:0446 [all …]
|
D | i2c-sis96x | 21 place. Thanks to Alexander Malysh <amalysh@web.de> for providing the 61 Alexander Maylsh <amalysh@web.de> 63 Hans-Günter Lütke Uphues <hg_lu@t-online.de>
|
D | i2c-parport-light | 3 Author: Jean Delvare <jdelvare@suse.de>
|
/linux-4.4.14/Documentation/isdn/ |
D | CREDITS | 5 Thomas Bogendörfer (tsbogend@bigbug.franken.de) 11 Henner Eisen (eis@baty.hanse.de) 14 Volker Götz (volker@oops.franken.de) 18 Matthias Hessler (hessler@isdn4linux.de) 21 Bernhard Hailer (Bernhard.Hailer@lrz.uni-muenchen.de) 24 Michael 'Ghandi' Herold (michael@abadonna.franken.de) 27 Michael Hipp (Michael.Hipp@student.uni-tuebingen.de) 30 Karsten Keil (keil@isdn4linux.de) 34 Michael Knigge (knick@cove.han.de) 37 Andreas Kool (akool@Kool.f.EUnet.de) [all …]
|
D | README.FAQ | 11 http://www.mhessler.de/i4lfaq/ (view + download) 13 http://www.isdn4linux.de/faq/ (view) 25 hessler@isdn4linux.de
|
D | README.avmb1 | 9 The author can be reached at calle@calle.in-berlin.de. 11 t4-files can be found at ftp://ftp.avm.de/cardware/b1/linux/firmware 172 Check out the FAQ (ftp.isdn4linux.de) or subscribe to the 173 linux-avmb1@calle.in-berlin.de mailing list by sending 174 a mail to majordomo@calle.in-berlin.de with 179 ftp://ftp.avm.de/cardware/b1/linux/ 187 Carsten Paeth (calle@calle.in-berlin.de)
|
D | README.hysdn | 3 Werner Cornelius (werner@isdn4linux.de or werner@titro.de) 7 The CAPI 2.0-support was added by Ulrich Albrecht (ualbrecht@hypercope.de) 53 and firmware may be fetched from Hypercopes WWW-Site www.hypercope.de. 178 the Hypercope support team (support@hypercope.de) and or the authors 179 Werner Cornelius (werner@isdn4linux or cornelius@titro.de) or 180 Ulrich Albrecht (ualbrecht@hypercope.de).
|
D | README.hfc-pci | 38 Comments and reports to werner@isdn4linux.de or werner@isdn-development.de
|
D | HiSax.cert | 36 werner@isdn-development.de 50 KeyID 1024/FF992F6D 1997/01/16 Karsten Keil <kkeil@suse.de> 85 keil@isdn4linux.de
|
/linux-4.4.14/fs/ext4/ |
D | namei.c | 259 static int dx_make_map(struct inode *dir, struct ext4_dir_entry_2 *de, 290 struct ext4_dir_entry *de) in get_dirent_tail() argument 297 d = de; in get_dirent_tail() 298 top = (struct ext4_dir_entry *)(((void *)de) + in get_dirent_tail() 310 t = EXT4_DIRENT_TAIL(de, EXT4_BLOCK_SIZE(inode->i_sb)); in get_dirent_tail() 598 struct ext4_dir_entry_2 *de, in dx_show_leaf() argument 602 char *base = (char *) de; in dx_show_leaf() 606 while ((char *) de < base + size) in dx_show_leaf() 608 if (de->inode) in dx_show_leaf() 619 name = de->name; in dx_show_leaf() [all …]
|
D | dir.c | 62 struct ext4_dir_entry_2 *de, in __ext4_check_dir_entry() argument 67 const int rlen = ext4_rec_len_from_disk(de->rec_len, in __ext4_check_dir_entry() 74 else if (unlikely(rlen < EXT4_DIR_REC_LEN(de->name_len))) in __ext4_check_dir_entry() 76 else if (unlikely(((char *) de - buf) + rlen > size)) in __ext4_check_dir_entry() 78 else if (unlikely(le32_to_cpu(de->inode) > in __ext4_check_dir_entry() 89 offset, le32_to_cpu(de->inode), in __ext4_check_dir_entry() 90 rlen, de->name_len); in __ext4_check_dir_entry() 96 offset, le32_to_cpu(de->inode), in __ext4_check_dir_entry() 97 rlen, de->name_len); in __ext4_check_dir_entry() 106 struct ext4_dir_entry_2 *de; in ext4_readdir() local [all …]
|
D | inline.c | 969 struct ext4_dir_entry_2 *de = inline_start; in ext4_show_inline_dir() local 974 while ((void *)de < dlimit) { in ext4_show_inline_dir() 975 de_len = ext4_rec_len_from_disk(de->rec_len, inline_size); in ext4_show_inline_dir() 977 offset, de_len, de->name_len, de->name, in ext4_show_inline_dir() 978 de->name_len, le32_to_cpu(de->inode)); in ext4_show_inline_dir() 979 if (ext4_check_dir_entry(dir, NULL, de, bh, in ext4_show_inline_dir() 984 de = (struct ext4_dir_entry_2 *) ((char *) de + de_len); in ext4_show_inline_dir() 1005 struct ext4_dir_entry_2 *de; in ext4_add_dirent_to_inline() local 1008 inline_size, fname, &de); in ext4_add_dirent_to_inline() 1016 ext4_insert_dentry(dir, inode, de, inline_size, fname); in ext4_add_dirent_to_inline() [all …]
|
D | crypto_fname.c | 355 const struct ext4_dir_entry_2 *de, in ext4_fname_disk_to_usr() argument 358 struct ext4_str iname = {.name = (unsigned char *) de->name, in ext4_fname_disk_to_usr() 359 .len = de->name_len }; in ext4_fname_disk_to_usr()
|
/linux-4.4.14/fs/f2fs/ |
D | dir.c | 62 void set_de_type(struct f2fs_dir_entry *de, umode_t mode) in set_de_type() argument 64 de->file_type = f2fs_type_by_mode[(mode & S_IFMT) >> S_SHIFT]; in set_de_type() 86 struct f2fs_dir_entry *de; in find_in_block() local 92 de = find_target_dentry(fname, namehash, max_slots, &d); in find_in_block() 93 if (de) in find_in_block() 103 return de; in find_in_block() 110 struct f2fs_dir_entry *de; in find_target_dentry() local 125 de = &d->dentry[bit_pos]; in find_target_dentry() 129 de_name.len = le16_to_cpu(de->name_len); in find_target_dentry() 133 if (de->hash_code == fname->hash) in find_target_dentry() [all …]
|
D | namei.c | 213 struct f2fs_dir_entry *de; in __recover_dot_dentries() local 219 de = f2fs_find_entry(dir, &dot, &page); in __recover_dot_dentries() 220 if (de) { in __recover_dot_dentries() 229 de = f2fs_find_entry(dir, &dotdot, &page); in __recover_dot_dentries() 230 if (de) { in __recover_dot_dentries() 250 struct f2fs_dir_entry *de; in f2fs_lookup() local 258 de = f2fs_find_entry(dir, &dentry->d_name, &page); in f2fs_lookup() 259 if (!de) in f2fs_lookup() 262 ino = le32_to_cpu(de->ino); in f2fs_lookup() 286 struct f2fs_dir_entry *de; in f2fs_unlink() local [all …]
|
D | inline.c | 297 struct f2fs_dir_entry *de; in find_in_inline_dir() local 311 de = find_target_dentry(fname, namehash, NULL, &d); in find_in_inline_dir() 313 if (de) in find_in_inline_dir() 323 return de; in find_in_inline_dir() 331 struct f2fs_dir_entry *de; in f2fs_parent_inline_dir() local 339 de = &dentry_blk->dentry[1]; in f2fs_parent_inline_dir() 342 return de; in f2fs_parent_inline_dir()
|
D | recovery.c | 74 struct f2fs_dir_entry *de; in recover_dentry() local 100 de = f2fs_find_entry(dir, &name, &page); in recover_dentry() 101 if (de && inode->i_ino == le32_to_cpu(de->ino)) in recover_dentry() 104 if (de) { in recover_dentry() 105 einode = f2fs_iget(inode->i_sb, le32_to_cpu(de->ino)); in recover_dentry() 118 f2fs_delete_entry(de, page, dir, einode); in recover_dentry()
|
/linux-4.4.14/fs/coda/ |
D | dir.c | 134 static int coda_create(struct inode *dir, struct dentry *de, umode_t mode, bool excl) in coda_create() argument 137 const char *name=de->d_name.name; in coda_create() 138 int length=de->d_name.len; in coda_create() 159 d_instantiate(de, inode); in coda_create() 162 d_drop(de); in coda_create() 166 static int coda_mkdir(struct inode *dir, struct dentry *de, umode_t mode) in coda_mkdir() argument 170 const char *name = de->d_name.name; in coda_mkdir() 171 int len = de->d_name.len; in coda_mkdir() 193 d_instantiate(de, inode); in coda_mkdir() 196 d_drop(de); in coda_mkdir() [all …]
|
D | cache.c | 92 struct dentry *de; in coda_flag_children() local 95 list_for_each_entry(de, &parent->d_subdirs, d_child) { in coda_flag_children() 97 if (d_inode(de) ) in coda_flag_children() 98 coda_flag_inode(d_inode(de), flag); in coda_flag_children()
|
D | inode.c | 266 int coda_setattr(struct dentry *de, struct iattr *iattr) in coda_setattr() argument 268 struct inode *inode = d_inode(de); in coda_setattr()
|
/linux-4.4.14/fs/qnx4/ |
D | dir.c | 22 struct qnx4_inode_entry *de; in qnx4_readdir() local 41 de = (struct qnx4_inode_entry *) (bh->b_data + offset); in qnx4_readdir() 42 if (!de->di_fname[0]) in qnx4_readdir() 44 if (!(de->di_status & (QNX4_FILE_USED|QNX4_FILE_LINK))) in qnx4_readdir() 46 if (!(de->di_status & QNX4_FILE_LINK)) in qnx4_readdir() 50 size = strnlen(de->di_fname, size); in qnx4_readdir() 51 QNX4DEBUG((KERN_INFO "qnx4_readdir:%.*s\n", size, de->di_fname)); in qnx4_readdir() 52 if (!(de->di_status & QNX4_FILE_LINK)) in qnx4_readdir() 55 le = (struct qnx4_link_info*)de; in qnx4_readdir() 60 if (!dir_emit(ctx, de->di_fname, size, ino, DT_UNKNOWN)) { in qnx4_readdir()
|
D | namei.c | 28 struct qnx4_inode_entry *de; in qnx4_match() local 35 de = (struct qnx4_inode_entry *) (bh->b_data + *offset); in qnx4_match() 37 if ((de->di_status & QNX4_FILE_LINK) != 0) { in qnx4_match() 42 thislen = strlen( de->di_fname ); in qnx4_match() 48 if (strncmp(name, de->di_fname, len) == 0) { in qnx4_match() 49 if ((de->di_status & (QNX4_FILE_USED|QNX4_FILE_LINK)) != 0) { in qnx4_match() 97 struct qnx4_inode_entry *de; in qnx4_lookup() local 104 if (!(bh = qnx4_find_entry(len, dir, name, &de, &ino))) in qnx4_lookup() 107 if ((de->di_status & QNX4_FILE_LINK) == QNX4_FILE_LINK) { in qnx4_lookup() 108 lnk = (struct qnx4_link_info *) de; in qnx4_lookup()
|
/linux-4.4.14/drivers/net/wireless/ath/ |
D | dfs_pri_detector.c | 375 static void pri_detector_exit(struct pri_detector *de) in pri_detector_exit() argument 377 pri_detector_reset(de, 0); in pri_detector_exit() 379 kfree(de); in pri_detector_exit() 382 static struct pri_sequence *pri_detector_add_pulse(struct pri_detector *de, in pri_detector_add_pulse() argument 388 const struct radar_detector_specs *rs = de->rs; in pri_detector_add_pulse() 394 if ((ts - de->last_ts) < rs->max_pri_tolerance) in pri_detector_add_pulse() 401 de->last_ts = ts; in pri_detector_add_pulse() 403 max_updated_seq = pseq_handler_add_to_existing_seqs(de, ts); in pri_detector_add_pulse() 405 if (!pseq_handler_create_sequences(de, ts, max_updated_seq)) { in pri_detector_add_pulse() 406 pri_detector_reset(de, ts); in pri_detector_add_pulse() [all …]
|
D | dfs_pri_detector.h | 60 void (*exit) (struct pri_detector *de); 62 (*add_pulse)(struct pri_detector *de, struct pulse_event *e); 63 void (*reset) (struct pri_detector *de, u64 ts);
|
D | dfs_pattern_detector.c | 186 struct pri_detector *de = cd->detectors[i]; in channel_detector_exit() local 187 if (de != NULL) in channel_detector_exit() 188 de->exit(de); in channel_detector_exit() 213 struct pri_detector *de = pri_detector_init(rs); in channel_detector_create() local 214 if (de == NULL) in channel_detector_create() 216 cd->detectors[i] = de; in channel_detector_create()
|
/linux-4.4.14/drivers/scsi/snic/ |
D | snic_debugfs.c | 38 struct dentry *de = NULL; in snic_debugfs_init() local 40 de = debugfs_create_dir("snic", NULL); in snic_debugfs_init() 41 if (!de) { in snic_debugfs_init() 46 snic_glob->trc_root = de; in snic_debugfs_init() 48 de = debugfs_create_dir("statistics", snic_glob->trc_root); in snic_debugfs_init() 49 if (!de) { in snic_debugfs_init() 54 snic_glob->stats_root = de; in snic_debugfs_init() 387 struct dentry *de = NULL; in snic_stats_debugfs_init() local 396 de = debugfs_create_dir(name, snic_glob->stats_root); in snic_stats_debugfs_init() 397 if (!de) { in snic_stats_debugfs_init() [all …]
|
/linux-4.4.14/fs/adfs/ |
D | dir_f.c | 211 struct adfs_direntry *de) in adfs_dir2obj() argument 213 obj->name_len = adfs_readname(obj->name, de->dirobname, ADFS_F_NAME_LEN); in adfs_dir2obj() 214 obj->file_id = adfs_readval(de->dirinddiscadd, 3); in adfs_dir2obj() 215 obj->loadaddr = adfs_readval(de->dirload, 4); in adfs_dir2obj() 216 obj->execaddr = adfs_readval(de->direxec, 4); in adfs_dir2obj() 217 obj->size = adfs_readval(de->dirlen, 4); in adfs_dir2obj() 218 obj->attr = de->newdiratts; in adfs_dir2obj() 242 adfs_obj2dir(struct adfs_direntry *de, struct object_info *obj) in adfs_obj2dir() argument 244 adfs_writeval(de->dirinddiscadd, 3, obj->file_id); in adfs_obj2dir() 245 adfs_writeval(de->dirload, 4, obj->loadaddr); in adfs_obj2dir() [all …]
|
/linux-4.4.14/fs/ocfs2/ |
D | dir.c | 137 struct ocfs2_dir_entry *de, in ocfs2_skip_dir_trailer() argument 317 struct ocfs2_dir_entry * de, in ocfs2_check_dir_entry() argument 322 const int rlen = le16_to_cpu(de->rec_len); in ocfs2_check_dir_entry() 328 else if (unlikely(rlen < OCFS2_DIR_REC_LEN(de->name_len))) in ocfs2_check_dir_entry() 331 ((char *) de - bh->b_data) + rlen > dir->i_sb->s_blocksize)) in ocfs2_check_dir_entry() 338 offset, (unsigned long long)le64_to_cpu(de->inode), rlen, in ocfs2_check_dir_entry() 339 de->name_len); in ocfs2_check_dir_entry() 346 struct ocfs2_dir_entry *de) in ocfs2_match() argument 348 if (len != de->name_len) in ocfs2_match() 350 if (!de->inode) in ocfs2_match() [all …]
|
/linux-4.4.14/fs/bfs/ |
D | dir.c | 33 struct bfs_dirent *de; in bfs_readdir() local 53 de = (struct bfs_dirent *)(bh->b_data + offset); in bfs_readdir() 54 if (de->ino) { in bfs_readdir() 55 int size = strnlen(de->name, BFS_NAMELEN); in bfs_readdir() 56 if (!dir_emit(ctx, de->name, size, in bfs_readdir() 57 le16_to_cpu(de->ino), in bfs_readdir() 131 struct bfs_dirent *de; in bfs_lookup() local 138 bh = bfs_find_entry(dir, dentry->d_name.name, dentry->d_name.len, &de); in bfs_lookup() 140 unsigned long ino = (unsigned long)le16_to_cpu(de->ino); in bfs_lookup() 181 struct bfs_dirent *de; in bfs_unlink() local [all …]
|
/linux-4.4.14/scripts/dtc/ |
D | fstree.c | 29 struct dirent *de; in read_fstree() local 39 while ((de = readdir(d)) != NULL) { in read_fstree() 42 if (streq(de->d_name, ".") in read_fstree() 43 || streq(de->d_name, "..")) in read_fstree() 46 tmpname = join_path(dirname, de->d_name); in read_fstree() 61 prop = build_property(xstrdup(de->d_name), in read_fstree() 71 newchild = name_node(newchild, xstrdup(de->d_name)); in read_fstree()
|
/linux-4.4.14/Documentation/dvb/ |
D | contributors.txt | 3 Michael Hunold <m.hunold@gmx.de> 9 Marcus Metzler <mocm@metzlerbros.de> 10 Ralph Metzler <rjkm@metzlerbros.de> 21 Martin Schaller <martin@smurf.franken.de> 24 Klaus Schmidinger <Klaus.Schmidinger@cadsoft.de> 30 Christoph Martin <martin@uni-mainz.de> 34 Dennis Noermann <dennis.noermann@noernet.de> 37 Ronny Strutz <3des@elitedvb.de> 38 Wolfram Joost <dbox2@frokaschwei.de> 43 Oliver Endriss <o.endriss@gmx.de> [all …]
|
D | opera-firmware.txt | 27 Marco Gittler <g.marco@freenet.de>
|
/linux-4.4.14/drivers/gpu/host1x/ |
D | debug.c | 157 struct dentry *de = debugfs_create_dir("tegra-host1x", NULL); in host1x_debugfs_init() local 159 if (!de) in host1x_debugfs_init() 163 host1x->debugfs = de; in host1x_debugfs_init() 165 debugfs_create_file("status", S_IRUGO, de, host1x, &host1x_debug_fops); in host1x_debugfs_init() 166 debugfs_create_file("status_all", S_IRUGO, de, host1x, in host1x_debugfs_init() 169 debugfs_create_u32("trace_cmdbuf", S_IRUGO|S_IWUSR, de, in host1x_debugfs_init() 172 host1x_hw_debug_init(host1x, de); in host1x_debugfs_init() 174 debugfs_create_u32("force_timeout_pid", S_IRUGO|S_IWUSR, de, in host1x_debugfs_init() 176 debugfs_create_u32("force_timeout_val", S_IRUGO|S_IWUSR, de, in host1x_debugfs_init() 178 debugfs_create_u32("force_timeout_channel", S_IRUGO|S_IWUSR, de, in host1x_debugfs_init()
|
D | dev.h | 61 void (*debug_init)(struct dentry *de); 284 static inline void host1x_hw_debug_init(struct host1x *host, struct dentry *de) in host1x_hw_debug_init() argument 287 host->debug_op->debug_init(de); in host1x_hw_debug_init()
|
/linux-4.4.14/tools/perf/util/ |
D | db-export.c | 35 struct deferred_export *de; in db_export__deferred() local 39 de = list_entry(dbe->deferred.next, struct deferred_export, in db_export__deferred() 41 err = dbe->export_comm(dbe, de->comm); in db_export__deferred() 42 list_del(&de->node); in db_export__deferred() 43 free(de); in db_export__deferred() 53 struct deferred_export *de; in db_export__free_deferred() local 56 de = list_entry(dbe->deferred.next, struct deferred_export, in db_export__free_deferred() 58 list_del(&de->node); in db_export__free_deferred() 59 free(de); in db_export__free_deferred() 65 struct deferred_export *de; in db_export__defer_comm() local [all …]
|
D | help.c | 123 struct dirent *de; in list_commands_in_dir() local 136 while ((de = readdir(dir)) != NULL) { in list_commands_in_dir() 139 if (prefixcmp(de->d_name, prefix)) in list_commands_in_dir() 143 strbuf_addstr(&buf, de->d_name); in list_commands_in_dir() 147 entlen = strlen(de->d_name) - prefix_len; in list_commands_in_dir() 148 if (has_extension(de->d_name, ".exe")) in list_commands_in_dir() 151 add_cmdname(cmds, de->d_name + prefix_len, entlen); in list_commands_in_dir()
|
/linux-4.4.14/arch/arm64/crypto/ |
D | aes-ce.S | 46 .macro do_enc_Nx, de, mc, k, i0, i1, i2, i3 47 aes\de \i0\().16b, \k\().16b 50 aes\de \i1\().16b, \k\().16b 53 aes\de \i2\().16b, \k\().16b 55 aes\de \i3\().16b, \k\().16b 71 .macro fin_round_Nx, de, k, k2, i0, i1, i2, i3 72 aes\de \i0\().16b, \k\().16b 74 aes\de \i1\().16b, \k\().16b 76 aes\de \i2\().16b, \k\().16b 77 aes\de \i3\().16b, \k\().16b
|
/linux-4.4.14/arch/arm/boot/dts/ |
D | imx6q-tx6q-1010.dts | 2 * Copyright 2014 Lothar Waßmann <LW@KARO-electronics.de> 72 de-active = <1>; 88 de-active = <1>; 104 de-active = <1>; 120 de-active = <1>; 136 de-active = <1>; 152 de-active = <1>; 168 de-active = <1>;
|
D | imx6dl-tx6u-801x.dts | 2 * Copyright 2014 Lothar Waßmann <LW@KARO-electronics.de> 72 de-active = <1>; 88 de-active = <1>; 104 de-active = <1>; 120 de-active = <1>; 136 de-active = <1>; 152 de-active = <1>; 168 de-active = <1>;
|
D | imx6q-tx6q-1020.dts | 2 * Copyright 2014 Lothar Waßmann <LW@KARO-electronics.de> 72 de-active = <1>; 88 de-active = <1>; 104 de-active = <1>; 120 de-active = <1>; 136 de-active = <1>; 152 de-active = <1>; 168 de-active = <1>;
|
D | imx53-tx53-x03x.dts | 2 * Copyright 2013 Lothar Waßmann <LW@KARO-electronics.de> 53 de-active = <1>; 69 de-active = <1>; 85 de-active = <1>; 101 de-active = <1>; 117 de-active = <1>; 133 de-active = <1>; 149 de-active = <1>;
|
D | imx6q-tx6q-1110.dts | 2 * Copyright 2014 Lothar Waßmann <LW@KARO-electronics.de> 118 de-active = <1>; 141 de-active = <1>;
|
D | imx6dl-tx6u-811x.dts | 2 * Copyright 2014 Lothar Waßmann <LW@KARO-electronics.de> 118 de-active = <1>; 141 de-active = <1>;
|
D | imx6dl-tx6dl-comtft.dts | 2 * Copyright 2014 Lothar Waßmann <LW@KARO-electronics.de> 74 de-active = <1>;
|
D | imx6q-tx6q-1010-comtft.dts | 2 * Copyright 2014 Lothar Waßmann <LW@KARO-electronics.de> 74 de-active = <1>;
|
D | imx53-tx53-x13x.dts | 2 * Copyright 2013 Lothar Waßmann <LW@KARO-electronics.de> 204 de-active = <1>; 229 de-active = <1>;
|
D | imx28-tx28.dts | 3 * Copyright 2013 Lothar Waßmann <LW@KARO-electronics.de> 375 de-active = <1>; 392 de-active = <1>; 409 de-active = <1>; 426 de-active = <1>; 443 de-active = <1>; 460 de-active = <1>;
|
D | imx6q-tx6q-1020-comtft.dts | 2 * Copyright 2014 Lothar Waßmann <LW@KARO-electronics.de> 74 de-active = <1>;
|
D | alphascale-asm9260-devkit.dts | 2 * Copyright 2014 Oleksij Rempel <linux@rempel-privat.de>
|
D | bcm5301x-nand-cs0-bch8.dtsi | 7 * Copyright (C) 2015 Hauke Mehrtens <hauke@hauke-m.de>
|
D | bcm4708.dtsi | 5 * Copyright 2013-2014 Hauke Mehrtens <hauke@hauke-m.de>
|
D | am335x-wega-rdk.dts | 3 * Author: Teresa Remmet <t.remmet@phytec.de>
|
D | omap3-thunder.dts | 3 * Copyright (C) 2014 Stefan Roese <sr@denx.de> 115 de-active = <1>;
|
D | omap3-ha.dts | 3 * Copyright (C) 2014 Stefan Roese <sr@denx.de>
|
D | imx6dl-dfi-fs700-m60.dts | 2 * Copyright 2013 Sascha Hauer <s.hauer@pengutronix.de>
|
D | da850-enbw-cmc.dts | 5 * Heiko Schocher <hs@denx.de>
|
D | imx6q-dfi-fs700-m60.dts | 2 * Copyright 2013 Sascha Hauer <s.hauer@pengutronix.de>
|
D | omap3-devkit8000-lcd43.dts | 33 de-active = <1>;
|
D | omap3-devkit8000-lcd70.dts | 33 de-active = <1>;
|
D | omap3-ha-lcd.dts | 3 * Copyright (C) 2014 Stefan Roese <sr@denx.de> 151 de-active = <1>;
|
D | alphascale-asm9260.dtsi | 2 * Copyright 2014 Oleksij Rempel <linux@rempel-privat.de>
|
D | s5pv210-smdkv210.dts | 42 local-mac-address = [00 00 de ad be ef]; 213 de-active = <1>;
|
D | imx53-mba53.dts | 2 * Copyright 2012 Sascha Hauer <s.hauer@pengutronix.de>, Pengutronix 3 * Copyright 2012 Steffen Trumtrar <s.trumtrar@pengutronix.de>, Pengutronix
|
D | ethernut5.dts | 4 * Copyright (C) 2012 egnite GmbH <info@egnite.de>
|
D | imx53-tqma53.dtsi | 2 * Copyright 2012 Sascha Hauer <s.hauer@pengutronix.de>, Pengutronix 3 * Copyright 2012 Steffen Trumtrar <s.trumtrar@pengutronix.de>, Pengutronix
|
D | imx28-m28evk.dts | 2 * Copyright (C) 2012 Marek Vasut <marex@denx.de> 105 de-active = <1>;
|
D | imx28-m28cu3.dts | 2 * Copyright (C) 2013 Marek Vasut <marex@denx.de> 139 de-active = <1>;
|
D | sun7i-a20-m3.dts | 2 * Copyright 2014 Hans de Goede <hdegoede@redhat.com> 4 * Hans de Goede <hdegoede@redhat.com>
|
D | imx6q-sbc6x.dts | 2 * Copyright 2013 Pavel Machek <pavel@denx.de>
|
D | imx6dl-aristainetos_7.dts | 4 * Copyright (C) 2014 Heiko Schocher <hs@denx.de>
|
D | s3c2416-smdk2416.dts | 4 * Copyright (c) 2013 Heiko Stuebner <heiko@sntech.de>
|
/linux-4.4.14/ |
D | .mailmap | 13 Adrian Bunk <bunk@stusta.de> 19 Andreas Herrmann <aherrman@de.ibm.com> 26 Arnd Bergmann <arnd@arndb.de> 31 Björn Steinbrink <B.Steinbrink@gmx.de> 34 Christoph Hellwig <hch@lst.de> 45 Felix Kuhling <fxkuehl@gmx.de> 46 Felix Moeller <felix@derklecks.de> 51 Greg Kroah-Hartman <gregkh@suse.de> 54 Henrik Kretzschmar <henne@nachtwindheim.de> 65 Jens Axboe <axboe@suse.de> [all …]
|
D | CREDITS | 126 E: andrea@suse.de 156 E: axboe@suse.de 283 E: dc6iq@insl1.etec.uni-karlsruhe.de 347 E: berg@pool.informatik.rwth-aachen.de 404 E: tsbogend@alpha.franken.de 418 E: axel@uni-paderborn.de 419 W: http://math-www.uni-paderborn.de/~axel/ 430 E: andreas.bombe@munich.netsurf.de 431 W: http://home.pages.de/~andreas.bombe/ 520 E: linux@brodo.de [all …]
|
D | .get_maintainer.ignore | 1 Christoph Hellwig <hch@lst.de>
|
/linux-4.4.14/drivers/pnp/isapnp/ |
D | proc.c | 74 struct proc_dir_entry *de, *e; in isapnp_proc_attach_device() local 77 if (!(de = bus->procdir)) { in isapnp_proc_attach_device() 79 de = bus->procdir = proc_mkdir(name, isapnp_proc_bus_dir); in isapnp_proc_attach_device() 80 if (!de) in isapnp_proc_attach_device() 84 e = dev->procent = proc_create_data(name, S_IFREG | S_IRUGO, de, in isapnp_proc_attach_device()
|
/linux-4.4.14/fs/cramfs/ |
D | inode.c | 390 struct cramfs_inode *de; in cramfs_readdir() local 398 de = cramfs_read(sb, OFFSET(inode) + offset, sizeof(*de)+CRAMFS_MAXPATHLEN); in cramfs_readdir() 399 name = (char *)(de+1); in cramfs_readdir() 406 namelen = de->namelen << 2; in cramfs_readdir() 408 ino = cramino(de, OFFSET(inode) + offset); in cramfs_readdir() 409 mode = de->mode; in cramfs_readdir() 411 nextoffset = offset + sizeof(*de) + namelen; in cramfs_readdir() 442 struct cramfs_inode *de; in cramfs_lookup() local 447 de = cramfs_read(dir->i_sb, dir_off, sizeof(*de)+CRAMFS_MAXPATHLEN); in cramfs_lookup() 448 name = (char *)(de+1); in cramfs_lookup() [all …]
|
/linux-4.4.14/Documentation/arm/SA1100/ |
D | HUW_WEBPANEL | 4 http://www.hoeft-wessel.de 13 Roman Jordan jor@hoeft-wessel.de 14 Christoph Schulz schu@hoeft-wessel.de
|
/linux-4.4.14/init/ |
D | initramfs.c | 131 struct dir_entry *de = kmalloc(sizeof(struct dir_entry), GFP_KERNEL); in dir_add() local 132 if (!de) in dir_add() 134 INIT_LIST_HEAD(&de->list); in dir_add() 135 de->name = kstrdup(name, GFP_KERNEL); in dir_add() 136 de->mtime = mtime; in dir_add() 137 list_add(&de->list, &dir_list); in dir_add() 142 struct dir_entry *de, *tmp; in dir_utime() local 143 list_for_each_entry_safe(de, tmp, &dir_list, list) { in dir_utime() 144 list_del(&de->list); in dir_utime() 145 do_utime(de->name, de->mtime); in dir_utime() [all …]
|
/linux-4.4.14/Documentation/ABI/testing/ |
D | sysfs-bus-css | 3 Contact: Cornelia Huck <cornelia.huck@de.ibm.com> 10 Contact: Cornelia Huck <cornelia.huck@de.ibm.com> 18 Contact: Cornelia Huck <cornelia.huck@de.ibm.com> 28 Contact: Cornelia Huck <cornelia.huck@de.ibm.com>
|
D | sysfs-class-net-mesh | 20 Contact: Simon Wunderlich <sw@simonwunderlich.de> 28 Contact: Simon Wunderlich <sw@simonwunderlich.de> 37 Contact: Andreas Langer <an.langer@gmx.de> 66 Contact: Linus Lüssing <linus.luessing@web.de> 81 Contact: Linus Lüssing <linus.luessing@web.de>
|
D | sysfs-platform-msi-laptop | 4 Contact: "Lennart Poettering <mzxreary@0pointer.de>" 11 Contact: "Lennart Poettering <mzxreary@0pointer.de>" 20 Contact: "Lennart Poettering <mzxreary@0pointer.de>" 27 Contact: "Lennart Poettering <mzxreary@0pointer.de>"
|
D | sysfs-kernel-fscaps | 4 Contact: Ludwig Nussel <ludwig.nussel@suse.de>
|
D | debugfs-pktcdvd | 4 Contact: Thomas Maier <balagi@justmail.de>
|
D | sysfs-platform-at91 | 4 Contact: Marc Kleine-Budde <kernel@pengutronix.de>
|
D | debugfs-ec | 3 Contact: Thomas Renninger <trenn@suse.de>
|
/linux-4.4.14/Documentation/video4linux/ |
D | CARDLIST.cx88 | 15 14 -> KWorld/VStream XPert DVB-T [17de:08a6] 24 23 -> digitalnow DNTV Live! DVB-T [17de:a8a6] 40 39 -> KWorld DVB-S 100 [17de:08b2,1421:0341] 44 43 -> KWorld/VStream XPert DVB-T with cx22702 [17de:08a1,12ab:2300] 46 45 -> KWorld HardwareMpegTV XPert [17de:0840,1421:0305] 49 48 -> Kworld MCE 200 Deluxe [17de:0841] 68 67 -> Kworld PlusTV HD PCI 120 (ATSC 120) [17de:08c1]
|
D | CARDLIST.saa7134 | 89 88 -> Tevion/KWorld DVB-T 220RF [17de:7201] 91 90 -> Kworld ATSC110/115 [17de:7350,17de:7352] 115 114 -> KWorld DVB-T 210 [17de:7250] 154 153 -> Kworld Plus TV Analog Lite PCI [17de:7128] 183 182 -> Kworld PCI SBTVD/ISDB-T Full-Seg Hybrid [17de:b136] 186 185 -> MagicPro ProHDTV Pro2 DMB-TH/Hybrid [17de:d136] 190 189 -> Kworld PC150-U [17de:a134]
|
D | lifeview.txt | 14 /* "Peter Missel <peter.missel@onlinehome.de> */
|
/linux-4.4.14/Documentation/video4linux/bttv/ |
D | THANKS | 3 - Markus Schroeder <schroedm@uni-duesseldorf.de> for information on the Bt848 6 - Martin Buck <martin-2.buck@student.uni-ulm.de> for his great Videotext 9 - Gerd Knorr <kraxel@cs.tu-berlin.de> for the MSP3400 support and the modular
|
D | CONTRIBUTORS | 12 Gerd Knorr <kraxel@cs.tu-berlin.de>
|
/linux-4.4.14/include/linux/ |
D | proc_fs.h | 66 static inline void proc_set_size(struct proc_dir_entry *de, loff_t size) {} in proc_set_size() argument 67 static inline void proc_set_user(struct proc_dir_entry *de, kuid_t uid, kgid_t gid) {} in proc_set_user() argument 71 static inline void proc_remove(struct proc_dir_entry *de) {} in proc_remove() argument
|
/linux-4.4.14/drivers/isdn/hardware/eicon/ |
D | divasproc.c | 359 struct proc_dir_entry *de, *pe; in create_adapter_proc() local 363 if (!(de = proc_mkdir(tmp, proc_net_eicon))) in create_adapter_proc() 365 a->proc_adapter_dir = (void *) de; in create_adapter_proc() 367 pe = proc_create_data(info_proc_name, S_IRUGO | S_IWUSR, de, in create_adapter_proc() 373 pe = proc_create_data(grp_opt_proc_name, S_IRUGO | S_IWUSR, de, in create_adapter_proc() 377 pe = proc_create_data(d_l1_down_proc_name, S_IRUGO | S_IWUSR, de, in create_adapter_proc()
|
/linux-4.4.14/Documentation/ABI/stable/ |
D | sysfs-driver-w1_ds28e04 | 3 Contact: Markus Franke <franm@hrz.tu-chemnitz.de> 12 Contact: Markus Franke <franm@hrz.tu-chemnitz.de>
|
/linux-4.4.14/Documentation/filesystems/ |
D | ncpfs.txt | 6 ftp.gwdg.de/pub/linux/misc/ncpfs, but sunsite and its many mirrors 12 mars_nwe can be found on ftp.gwdg.de/pub/linux/misc/ncpfs.
|
/linux-4.4.14/Documentation/devicetree/bindings/mtd/ |
D | gpmc-nor.txt | 15 - gpmc,cs-rd-off-ns: Chip-select de-assertion time for reads 16 - gpmc,cs-wr-off-ns: Chip-select de-assertion time for writes 18 - gpmc,oe-off-ns: Output-enable de-assertion time 20 - gpmc,we-off-ns: Write-enable de-assertion time
|
/linux-4.4.14/drivers/md/ |
D | dm-snap-persistent.c | 415 struct disk_exception *de = get_exception(ps, ps_area, index); in read_exception() local 418 result->old_chunk = le64_to_cpu(de->old_chunk); in read_exception() 419 result->new_chunk = le64_to_cpu(de->new_chunk); in read_exception() 425 struct disk_exception *de = get_exception(ps, ps->area, index); in write_exception() local 428 de->old_chunk = cpu_to_le64(e->old_chunk); in write_exception() 429 de->new_chunk = cpu_to_le64(e->new_chunk); in write_exception() 434 struct disk_exception *de = get_exception(ps, ps->area, index); in clear_exception() local 437 de->old_chunk = 0; in clear_exception() 438 de->new_chunk = 0; in clear_exception()
|
D | dm-cache-policy-smq.c | 456 struct entry *de; in q_requeue_before() local 463 for (de = l_head(q->es, q->qs + new_level); de; de = l_next(q->es, de)) { in q_requeue_before() 464 if (de->sentinel) in q_requeue_before() 467 q_del(q, de); in q_requeue_before() 468 de->level = e->level; in q_requeue_before() 471 q_push_before(q, dest, de); in q_requeue_before() 473 q_push(q, de); in q_requeue_before()
|
/linux-4.4.14/tools/power/cpupower/po/ |
D | fr.po | 230 msgstr "D�termination du nombre de CPUs (%s : %s) impossible. Assume 1\n" 295 msgstr " pas de pilotes cpufreq reconnu pour ce CPU\n" 305 msgstr " CPUs qui doivent changer de fr�quences en m�me temps : " 310 msgstr " CPUs qui doivent changer de fr�quences en m�me temps : " 325 msgstr " plage de fr�quence : " 348 "Le r�gulateur \"%s\" est libre de choisir la vitesse\n" 349 " dans cette plage de fr�quences.\n" 354 msgstr " la fr�quence actuelle de ce CPU est " 380 msgstr " -e, --debug Afficher les informations de d�boguage\n" 389 " de vue du coeur du syst�me de cpufreq *\n" [all …]
|
D | pt.po | 228 msgstr "Não foi possível contar o número de CPUs (%s: %s), assumindo 1\n" 304 msgstr " CPUs que rodam na mesma frequência de hardware: " 314 msgstr " maior latência de transição: " 324 msgstr " níveis de frequência disponíveis: " 334 msgstr " política de frequência atual deve estar entre " 379 msgstr " -e, --debug Mostra informação de debug\n" 387 " -f, --freq Obtem a frequência na qual o CPU roda no momento, de " 399 " através de leitura no hardware (disponível somente " 435 " -r, --related-cpus Determina quais CPUs rodam na mesma frequência de " 458 " -y, --latency Determina a latência máxima nas trocas de frequência " [all …]
|
/linux-4.4.14/drivers/gpu/drm/armada/ |
D | armada_debugfs.c | 135 struct dentry *de; in armada_debugfs_create() local 137 de = debugfs_create_file(name, mode, root, minor->dev, fops); in armada_debugfs_create() 139 return drm_add_fake_info_node(minor, de, fops); in armada_debugfs_create()
|
D | armada_drm.h | 73 struct dentry *de; member
|
/linux-4.4.14/arch/microblaze/kernel/cpu/ |
D | cache.c | 518 .de = __enable_dcache_msr, 534 .de = __enable_dcache_nomsr, 550 .de = __enable_dcache_msr, 565 .de = __enable_dcache_nomsr, 581 .de = __enable_dcache_msr, 596 .de = __enable_dcache_nomsr,
|
/linux-4.4.14/Documentation/devicetree/bindings/net/ |
D | gpmc-eth.txt | 30 - gpmc,cs-rd-off-ns: Chip-select de-assertion time for reads 31 - gpmc,cs-wr-off-ns: Chip-select de-assertion time for writes 33 - gpmc,oe-off-ns: Output-enable de-assertion time 35 - gpmc,we-off-ns: Write-enable de-assertion time
|
D | davicom-dm9000.txt | 24 local-mac-address = [00 00 de ad be ef];
|
/linux-4.4.14/fs/autofs4/ |
D | waitq.c | 506 struct dentry *de = NULL; in autofs4_wait() local 512 de = d_lookup(dentry->d_parent, &dentry->d_name); in autofs4_wait() 513 if (de) in autofs4_wait() 514 ino = autofs4_dentry_ino(de); in autofs4_wait() 525 if (de) in autofs4_wait() 526 dput(de); in autofs4_wait()
|
/linux-4.4.14/arch/powerpc/boot/dts/ |
D | currituck.dts | 149 * We are de-swizzling here because the numbers are actually for 152 * below are basically de-swizzled numbers. 186 * We are de-swizzling here because the numbers are actually for 189 * below are basically de-swizzled numbers. 223 * We are de-swizzling here because the numbers are actually for 226 * below are basically de-swizzled numbers.
|
D | pcm032.dts | 5 * Sascha Hauer <s.hauer@pengutronix.de> 6 * Juergen Beisert <j.beisert@pengutronix.de> 7 * Wolfram Sang <w.sang@pengutronix.de>
|
D | akebono.dts | 277 * We are de-swizzling here because the numbers are actually for 280 * below are basically de-swizzled numbers. 317 * We are de-swizzling here because the numbers are actually for 320 * below are basically de-swizzled numbers. 357 * We are de-swizzling here because the numbers are actually for 360 * below are basically de-swizzled numbers. 397 * We are de-swizzling here because the numbers are actually for 400 * below are basically de-swizzled numbers.
|
D | pcm030.dts | 5 * Sascha Hauer <s.hauer@pengutronix.de> 7 * Juergen Beisert <j.beisert@pengutronix.de>
|
D | redwood.dts | 265 * We are de-swizzling here because the numbers are actually for 268 * below are basically de-swizzled numbers. 306 * We are de-swizzling here because the numbers are actually for 309 * below are basically de-swizzled numbers. 347 * We are de-swizzling here because the numbers are actually for 350 * below are basically de-swizzled numbers.
|
D | a3m071.dts | 4 * Copyright 2012 Stefan Roese <sr@denx.de> 7 * Heiko Schocher <hs@denx.de>
|
D | makalu.dts | 4 * Copyright 2007 DENX Software Engineering, Stefan Roese <sr@denx.de> 298 * We are de-swizzling here because the numbers are actually for 301 * below are basically de-swizzled numbers. 339 * We are de-swizzling here because the numbers are actually for 342 * below are basically de-swizzled numbers.
|
D | o2i.dts | 5 * Anatolij Gustschin <agust@denx.de>
|
D | o2mnt.dts | 5 * Anatolij Gustschin <agust@denx.de>
|
D | katmai.dts | 349 * We are de-swizzling here because the numbers are actually for 352 * below are basically de-swizzled numbers. 390 * We are de-swizzling here because the numbers are actually for 393 * below are basically de-swizzled numbers. 431 * We are de-swizzling here because the numbers are actually for 434 * below are basically de-swizzled numbers.
|
D | icon.dts | 4 * Copyright 2010 DENX Software Engineering, Stefan Roese <sr@denx.de> 345 * We are de-swizzling here because the numbers are actually for 348 * below are basically de-swizzled numbers. 386 * We are de-swizzling here because the numbers are actually for 389 * below are basically de-swizzled numbers.
|
D | kilauea.dts | 4 * Copyright 2007-2009 DENX Software Engineering, Stefan Roese <sr@denx.de> 352 * We are de-swizzling here because the numbers are actually for 355 * below are basically de-swizzled numbers. 393 * We are de-swizzling here because the numbers are actually for 396 * below are basically de-swizzled numbers.
|
D | o2d.dts | 5 * Anatolij Gustschin <agust@denx.de>
|
D | o2dnt2.dts | 5 * Anatolij Gustschin <agust@denx.de>
|
D | o3dnt.dts | 5 * Anatolij Gustschin <agust@denx.de>
|
D | o2d300.dts | 5 * Anatolij Gustschin <agust@denx.de>
|
D | haleakala.dts | 4 * Copyright 2008 DENX Software Engineering, Stefan Roese <sr@denx.de> 267 * We are de-swizzling here because the numbers are actually for 270 * below are basically de-swizzled numbers.
|
/linux-4.4.14/fs/nfsd/ |
D | vfs.c | 1775 struct buffered_dirent *de = (void *)(buf->dirent + buf->used); in nfsd_buffered_filldir() local 1784 de->namlen = namlen; in nfsd_buffered_filldir() 1785 de->offset = offset; in nfsd_buffered_filldir() 1786 de->ino = ino; in nfsd_buffered_filldir() 1787 de->d_type = d_type; in nfsd_buffered_filldir() 1788 memcpy(de->name, name, namlen); in nfsd_buffered_filldir() 1797 struct buffered_dirent *de; in nfsd_buffered_readdir() local 1840 de = (struct buffered_dirent *)buf.dirent; in nfsd_buffered_readdir() 1842 offset = de->offset; in nfsd_buffered_readdir() 1844 if (func(cdp, de->name, de->namlen, de->offset, in nfsd_buffered_readdir() [all …]
|
/linux-4.4.14/arch/microblaze/include/asm/ |
D | cacheflush.h | 44 void (*de)(void); /* enable */ member 67 #define enable_dcache() mbc->de();
|
/linux-4.4.14/tools/vm/ |
D | slabinfo.c | 1162 struct dirent *de; in read_slab_dir() local 1173 while ((de = readdir(dir))) { in read_slab_dir() 1174 if (de->d_name[0] == '.' || in read_slab_dir() 1175 (de->d_name[0] != ':' && slab_mismatch(de->d_name))) in read_slab_dir() 1177 switch (de->d_type) { in read_slab_dir() 1179 alias->name = strdup(de->d_name); in read_slab_dir() 1180 count = readlink(de->d_name, buffer, sizeof(buffer)-1); in read_slab_dir() 1183 fatal("Cannot read symlink %s\n", de->d_name); in read_slab_dir() 1193 if (chdir(de->d_name)) in read_slab_dir() 1195 slab->name = strdup(de->d_name); in read_slab_dir() [all …]
|
/linux-4.4.14/Documentation/devicetree/bindings/sound/ |
D | cs4271.txt | 25 line is de-asserted. That also means that clocks cannot be changed 29 One (undocumented) workaround is to assert and de-assert the PDN bit
|
/linux-4.4.14/drivers/ipack/devices/ |
D | scc2698.h | 65 u8 de, ctg; /* Start counter timer of block */ member 83 u8 de, r2; /* reserved */ member
|
/linux-4.4.14/drivers/staging/most/ |
D | TODO | 8 Christian Gromm <chris@engineersdelight.de>
|
/linux-4.4.14/Documentation/hwmon/ |
D | tmp401 | 27 Hans de Goede <hdegoede@redhat.com> 28 Andre Prendel <andre.prendel@gmx.de>
|
D | mc13783-adc | 13 Sascha Hauer <s.hauer@pengutronix.de> 14 Luotao Fu <l.fu@pengutronix.de>
|
D | tmp103 | 11 Heiko Schocher <hs@denx.de>
|
D | max1619 | 13 Jean Delvare <jdelvare@suse.de>
|
D | mcp3021 | 14 Sven Schuchmann <schuchmann@schleissheimer.de>
|
D | pcf8591 | 13 valuable contributions by Jan M. Sendler <sendler@sendler.de>, 14 Jean Delvare <jdelvare@suse.de>
|
D | sch5627 | 10 Author: Hans de Goede <hdegoede@redhat.com>
|
/linux-4.4.14/drivers/net/can/sja1000/ |
D | Kconfig | 19 boards from Phytec (http://www.phytec.de) like the PCM027, 29 EMS Dr. Thomas Wuensche (http://www.ems-wuensche.de). 37 (http://www.ems-wuensche.de).
|
/linux-4.4.14/drivers/media/radio/si470x/ |
D | radio-si470x-common.c | 134 static unsigned short de = 1; variable 135 module_param(de, ushort, 0444); 136 MODULE_PARM_DESC(de, "De-emphasis: 0=75us *1=50us*"); 385 (de << 11) & SYSCONFIG1_DE; /* DE*/ in si470x_start()
|
/linux-4.4.14/Documentation/usb/ |
D | CREDITS | 7 Georg Acher <acher@informatik.tu-muenchen.de> 12 Deti Fliegl <deti@fliegl.de> 126 - Jochen Karrer <karrer@wpfd25.physik.uni-wuerzburg.de>, for 139 - Christian Groessler <cpg@aladdin.de>, for it's help on those 149 - Rasca Gmelch <thron@gmx.de> has revived the raw driver and
|
D | usb-help.txt | 8 mirrors at http://usb.in.tum.de/linux-usb/
|
/linux-4.4.14/arch/powerpc/crypto/ |
D | aes-tab-4k.S | 41 .long R(de, 6f, 6f, b1), R(91, c5, c5, 54) 84 .long R(94, 4a, 4a, de), R(98, 4c, 4c, d4) 116 .long R(a7, de, de, 79), R(bc, 5e, 5e, e2) 177 .long R(de, b1, 5a, 49), R(25, ba, 1b, 67) 194 .long R(94, de, 6c, 87), R(52, 7b, f8, b7) 251 .long R(a6, f5, 81, cf), R(a5, 7a, de, 28) 293 .long R(39, a8, 01, 71), R(08, 0c, b3, de)
|
/linux-4.4.14/Documentation/ |
D | kernel-per-CPU-kthreads.txt | 84 be de-jittered. (It is OK to force this CPU offline and then 91 be de-jittered. (It is OK to force this CPU offline and then 98 be de-jittered. (It is OK to force this CPU offline and then 107 1. Avoid sending scheduler IPIs to the CPU to be de-jittered, 109 on that CPU. If a thread that expects to run on the de-jittered 114 to be de-jittered is marked as an adaptive-ticks CPU using the 116 scheduler-clock interrupts that the de-jittered CPU receives, 123 received by the de-jittered CPU. 140 to be de-jittered is marked as an adaptive-ticks CPU using
|
/linux-4.4.14/Documentation/ioctl/ |
D | ioctl-number.txt | 89 <ftp://ftp.de.kernel.org/pub/linux/daemons/ntp/PPS/> 106 <mailto:maassen@uni-freiburg.de> 157 <http://linux01.gwdg.de/~alatham/ppdd.html> 283 <mailto:hdstich@connectu.ulm.circular.de> 285 <mailto:oe@port.de> 303 <mailto:buk@buks.ipn.de> 319 <mailto:vgo@ratio.de> 326 <mailto:michael.klein@puffin.lb.shuttle.de> 331 <mailto:aherrman@de.ibm.com>
|
/linux-4.4.14/Documentation/w1/masters/ |
D | mxc-w1 | 12 Sascha Hauer <s.hauer@pengutronix.de>
|
/linux-4.4.14/fs/debugfs/ |
D | inode.c | 383 struct dentry *de = debugfs_create_file(name, mode, parent, data, fops); in debugfs_create_file_size() local 385 if (de) in debugfs_create_file_size() 386 d_inode(de)->i_size = file_size; in debugfs_create_file_size() 387 return de; in debugfs_create_file_size()
|
/linux-4.4.14/Documentation/devicetree/bindings/memory-controllers/ |
D | mvebu-devbus.txt | 72 de-assertion of DEV_CSn. If set to 0 (default), 73 DEV_OEn and DEV_CSn are de-asserted at the same cycle 75 This parameter has no affect on DEV_OEn de-assertion. 76 DEV_OEn is always de-asserted the next cycle after
|
/linux-4.4.14/drivers/media/usb/uvc/ |
D | Kconfig | 9 For more information see: <http://linux-uvc.berlios.de/>
|
/linux-4.4.14/Documentation/devicetree/bindings/display/panel/ |
D | panel-dpi.txt | 42 de-active = <1>;
|
/linux-4.4.14/drivers/soc/ti/ |
D | Kconfig | 16 Packets are queued/de-queued by writing/reading descriptor address
|
/linux-4.4.14/Documentation/devicetree/bindings/display/ |
D | mxsfb.txt | 44 de-active = <1>;
|
/linux-4.4.14/net/ipx/ |
D | Kconfig | 24 mars_nwe from <ftp://www.compu-art.de/mars_nwe/>. For more 57 can be found on <ftp://ftp.gwdg.de/pub/linux/misc/ncpfs/>.
|
/linux-4.4.14/Documentation/devicetree/bindings/mmc/ |
D | mmc-pwrseq-simple.txt | 13 They will be de-asserted right after the power has been provided to the
|
/linux-4.4.14/drivers/net/hamradio/ |
D | Kconfig | 128 information on the modems, see <http://www.baycom.de/> and 146 <http://www.baycom.de/> and 161 the modems, see <http://www.baycom.de/> and the file 176 modems, see <http://www.baycom.de/> and the file
|
/linux-4.4.14/fs/affs/ |
D | Kconfig | 16 (<http://www.freiburg.linux.de/~uae/>).
|