tag | line | file | source code |
dot | 248 | fs/msdos/namei.c | struct inode *inode,*dot; |
dot | 273 | fs/msdos/namei.c | if ((res = msdos_create_entry(inode,MSDOS_DOT,1,&dot)) < 0) |
dot | 275 | fs/msdos/namei.c | dot->i_size = inode->i_size; /* doesn't grow in the 2nd create_entry */ |
dot | 276 | fs/msdos/namei.c | MSDOS_I(dot)->i_start = MSDOS_I(inode)->i_start; |
dot | 277 | fs/msdos/namei.c | dot->i_nlink = inode->i_nlink; |
dot | 278 | fs/msdos/namei.c | dot->i_dirt = 1; |
dot | 279 | fs/msdos/namei.c | iput(dot); |
dot | 280 | fs/msdos/namei.c | if ((res = msdos_create_entry(inode,MSDOS_DOTDOT,1,&dot)) < 0) |
dot | 283 | fs/msdos/namei.c | dot->i_size = dir->i_size; |
dot | 284 | fs/msdos/namei.c | MSDOS_I(dot)->i_start = MSDOS_I(dir)->i_start; |
dot | 285 | fs/msdos/namei.c | dot->i_nlink = dir->i_nlink; |
dot | 286 | fs/msdos/namei.c | dot->i_dirt = 1; |
dot | 288 | fs/msdos/namei.c | iput(dot); |