struct exfat_inode_info *ei = EXFAT_I(inode);
        loff_t size = info->size;
 
-       memcpy(&ei->dir, &info->dir, sizeof(struct exfat_chain));
+       ei->dir = info->dir;
        ei->entry = info->entry;
        ei->attr = info->attr;
        ei->start_clu = info->start_clu;
 
        hint_femp.eidx = EXFAT_HINT_NONE;
 
        if (ei->hint_femp.eidx != EXFAT_HINT_NONE) {
-               memcpy(&hint_femp, &ei->hint_femp,
-                               sizeof(struct exfat_hint_femp));
+               hint_femp = ei->hint_femp;
                ei->hint_femp.eidx = EXFAT_HINT_NONE;
        }
 
        if (ret)
                goto out;
 
-       memcpy(&info->dir, p_dir, sizeof(struct exfat_chain));
+       info->dir = *p_dir;
        info->entry = dentry;
        info->flags = ALLOC_NO_FAT_CHAIN;
        info->type = type;
        if (dentry < 0)
                return dentry; /* -error value */
 
-       memcpy(&info->dir, &cdir.dir, sizeof(struct exfat_chain));
+       info->dir = cdir;
        info->entry = dentry;
        info->num_subdirs = 0;
 
                if (!epnew)
                        return -EIO;
 
-               memcpy(epnew, epold, DENTRY_SIZE);
+               *epnew = *epold;
                if (exfat_get_entry_type(epnew) == TYPE_FILE) {
                        epnew->dentry.file.attr |= cpu_to_le16(ATTR_ARCHIVE);
                        ei->attr |= ATTR_ARCHIVE;
                        return -EIO;
                }
 
-               memcpy(epnew, epold, DENTRY_SIZE);
+               *epnew = *epold;
                exfat_update_bh(new_bh, sync);
                brelse(old_bh);
                brelse(new_bh);
        if (!epnew)
                return -EIO;
 
-       memcpy(epnew, epmov, DENTRY_SIZE);
+       *epnew = *epmov;
        if (exfat_get_entry_type(epnew) == TYPE_FILE) {
                epnew->dentry.file.attr |= cpu_to_le16(ATTR_ARCHIVE);
                ei->attr |= ATTR_ARCHIVE;
                return -EIO;
        }
 
-       memcpy(epnew, epmov, DENTRY_SIZE);
+       *epnew = *epmov;
        exfat_update_bh(new_bh, IS_DIRSYNC(inode));
        brelse(mov_bh);
        brelse(new_bh);