tag | line | file | source code |
dot | 273 | fs/msdos/namei.c | struct inode *inode,*dot; |
dot | 298 | fs/msdos/namei.c | if ((res = msdos_create_entry(inode,MSDOS_DOT,1,&dot)) < 0) |
dot | 300 | fs/msdos/namei.c | dot->i_size = inode->i_size; /* doesn't grow in the 2nd create_entry */ |
dot | 301 | fs/msdos/namei.c | MSDOS_I(dot)->i_start = MSDOS_I(inode)->i_start; |
dot | 302 | fs/msdos/namei.c | dot->i_nlink = inode->i_nlink; |
dot | 303 | fs/msdos/namei.c | dot->i_dirt = 1; |
dot | 304 | fs/msdos/namei.c | iput(dot); |
dot | 305 | fs/msdos/namei.c | if ((res = msdos_create_entry(inode,MSDOS_DOTDOT,1,&dot)) < 0) |
dot | 308 | fs/msdos/namei.c | dot->i_size = dir->i_size; |
dot | 309 | fs/msdos/namei.c | MSDOS_I(dot)->i_start = MSDOS_I(dir)->i_start; |
dot | 310 | fs/msdos/namei.c | dot->i_nlink = dir->i_nlink; |
dot | 311 | fs/msdos/namei.c | dot->i_dirt = 1; |
dot | 313 | fs/msdos/namei.c | iput(dot); |