| tag | line | file | source code |
| dot | 416 | fs/msdos/namei.c | struct inode *inode,*dot; |
| dot | 442 | fs/msdos/namei.c | if ((res = msdos_create_entry(inode,MSDOS_DOT,1,0,&dot)) < 0) |
| dot | 444 | fs/msdos/namei.c | dot->i_size = inode->i_size; /* doesn't grow in the 2nd create_entry */ |
| dot | 445 | fs/msdos/namei.c | MSDOS_I(dot)->i_start = MSDOS_I(inode)->i_start; |
| dot | 446 | fs/msdos/namei.c | dot->i_nlink = inode->i_nlink; |
| dot | 447 | fs/msdos/namei.c | dot->i_dirt = 1; |
| dot | 448 | fs/msdos/namei.c | iput(dot); |
| dot | 449 | fs/msdos/namei.c | if ((res = msdos_create_entry(inode,MSDOS_DOTDOT,1,0,&dot)) < 0) |
| dot | 452 | fs/msdos/namei.c | dot->i_size = dir->i_size; |
| dot | 453 | fs/msdos/namei.c | MSDOS_I(dot)->i_start = MSDOS_I(dir)->i_start; |
| dot | 454 | fs/msdos/namei.c | dot->i_nlink = dir->i_nlink; |
| dot | 455 | fs/msdos/namei.c | dot->i_dirt = 1; |
| dot | 457 | fs/msdos/namei.c | iput(dot); |
| dot | 1032 | fs/vfat/namei.c | struct inode *dot; |
| dot | 1052 | fs/vfat/namei.c | if ((dot = iget(dir->i_sb,ino)) != NULL) |
| dot | 1053 | fs/vfat/namei.c | vfat_read_inode(dot); |
| dot | 1054 | fs/vfat/namei.c | if (!dot) return -EIO; |
| dot | 1055 | fs/vfat/namei.c | dot->i_mtime = dot->i_atime = CURRENT_TIME; |
| dot | 1056 | fs/vfat/namei.c | dot->i_dirt = 1; |
| dot | 1058 | fs/vfat/namei.c | dot->i_size = dir->i_size; |
| dot | 1059 | fs/vfat/namei.c | MSDOS_I(dot)->i_start = MSDOS_I(dir)->i_start; |
| dot | 1060 | fs/vfat/namei.c | dot->i_nlink = dir->i_nlink; |
| dot | 1062 | fs/vfat/namei.c | dot->i_size = parent->i_size; |
| dot | 1063 | fs/vfat/namei.c | MSDOS_I(dot)->i_start = MSDOS_I(parent)->i_start; |
| dot | 1064 | fs/vfat/namei.c | dot->i_nlink = parent->i_nlink; |
| dot | 1067 | fs/vfat/namei.c | iput(dot); |