]> git.neil.brown.name Git - history.git/commitdiff
[PATCH] VFAT: ->i_[cam]time cleanups (1/6)
authorHirofumi Ogawa <hirofumi@mail.parknet.co.jp>
Mon, 6 Oct 2003 04:01:37 +0000 (21:01 -0700)
committerLinus Torvalds <torvalds@home.osdl.org>
Mon, 6 Oct 2003 04:01:37 +0000 (21:01 -0700)
From RenĂ© Scharfe <l.s.r@web.de>

there's one call to strncpy() in vfat that really should be a memcpy().
The source, msdos_name, is a space-filled char array, not a
NUL-terminated string.

The rest of the patch eliminates duplicate occurencies of the
CURRENT_TIME macro inside functions. This shrinks vfat.o by a few
bytes.

fs/vfat/namei.c

index ced1d3256addd5345cfeb2bf3378ddfbcd566a33..74ac9e70fc28a935e22ee71f62e953042ecfad43 100644 (file)
@@ -714,7 +714,7 @@ shortname:
        PRINTK3(("vfat_fill_slots 9\n"));
        /* build the entry of 8.3 alias name */
        (*slots)++;
-       strncpy(de->name, msdos_name, MSDOS_NAME);
+       memcpy(de->name, msdos_name, MSDOS_NAME);
        de->attr = is_dir ? ATTR_DIR : ATTR_ARCH;
        de->lcase = lcase;
        de->adate = de->cdate = de->date = 0;
@@ -901,8 +901,7 @@ static void vfat_remove_entry(struct inode *dir,struct vfat_slot_info *sinfo,
        int i;
 
        /* remove the shortname */
-       dir->i_mtime = CURRENT_TIME;
-       dir->i_atime = CURRENT_TIME;
+       dir->i_mtime = dir->i_atime = CURRENT_TIME;
        dir->i_version++;
        mark_inode_dirty(dir);
        de->name[0] = DELETED_FLAG;
@@ -939,8 +938,7 @@ int vfat_rmdir(struct inode *dir,struct dentry* dentry)
                return res;
        }
        dentry->d_inode->i_nlink = 0;
-       dentry->d_inode->i_mtime = CURRENT_TIME;
-       dentry->d_inode->i_atime = CURRENT_TIME;
+       dentry->d_inode->i_mtime = dentry->d_inode->i_atime = CURRENT_TIME;
        fat_detach(dentry->d_inode);
        mark_inode_dirty(dentry->d_inode);
        /* releases bh */
@@ -965,8 +963,7 @@ int vfat_unlink(struct inode *dir, struct dentry* dentry)
                return res;
        }
        dentry->d_inode->i_nlink = 0;
-       dentry->d_inode->i_mtime = CURRENT_TIME;
-       dentry->d_inode->i_atime = CURRENT_TIME;
+       dentry->d_inode->i_mtime = dentry->d_inode->i_atime = CURRENT_TIME;
        fat_detach(dentry->d_inode);
        mark_inode_dirty(dentry->d_inode);
        /* releases bh */
@@ -1013,8 +1010,7 @@ out:
 
 mkdir_failed:
        inode->i_nlink = 0;
-       inode->i_mtime = CURRENT_TIME;
-       inode->i_atime = CURRENT_TIME;
+       inode->i_mtime = inode->i_atime = CURRENT_TIME;
        fat_detach(inode);
        mark_inode_dirty(inode);
        /* releases bh */