Home
last modified time | relevance | path

Searched refs:newinode (Results 1 – 7 of 7) sorted by relevance

/openbmc/linux/fs/smb/client/
H A Ddir.c188 struct inode *newinode = NULL; local
212 rc = cifs_posix_open(full_path, &newinode, inode->i_sb, mode,
216 if (newinode == NULL) {
221 if (S_ISDIR(newinode->i_mode)) {
223 iput(newinode);
228 if (!S_ISREG(newinode->i_mode)) {
377 rc = cifs_get_inode_info_unix(&newinode, full_path, inode->i_sb,
384 rc = cifs_get_inode_info(&newinode, full_path, buf, inode->i_sb, xid, fid);
385 if (newinode) {
387 server->ops->set_lease_key(newinode, fid);
[all …]
H A Dlink.c577 struct inode *newinode = NULL; local
623 rc = smb311_posix_get_inode_info(&newinode, full_path,
626 rc = cifs_get_inode_info_unix(&newinode, full_path,
629 rc = cifs_get_inode_info(&newinode, full_path, NULL,
637 d_instantiate(direntry, newinode);
H A Dsmb1ops.c1043 struct inode *newinode = NULL; in cifs_make_node() local
1071 rc = cifs_get_inode_info_unix(&newinode, full_path, in cifs_make_node()
1075 d_instantiate(dentry, newinode); in cifs_make_node()
H A Dinode.c2052 struct inode *newinode = NULL; local
2083 newinode = cifs_iget(inode->i_sb, &fattr);
2084 if (!newinode)
2087 d_instantiate(dentry, newinode);
2091 dentry, dentry, newinode);
2093 if (newinode->i_nlink != 2)
2095 newinode->i_nlink);
/openbmc/linux/fs/overlayfs/
H A Dinode.c1326 static struct inode *ovl_iget5(struct super_block *sb, struct inode *newinode, in ovl_iget5() argument
1329 return newinode ? inode_insert5(newinode, (unsigned long) key, in ovl_iget5()
1353 int err = oip->newinode ? -EEXIST : -ENOMEM; in ovl_get_inode()
1368 inode = ovl_iget5(sb, oip->newinode, key); in ovl_get_inode()
H A Ddir.c267 .newinode = inode, in ovl_instantiate()
290 if (inode == oip.newinode) in ovl_instantiate()
299 if (inode != oip.newinode) { in ovl_instantiate()
H A Doverlayfs.h741 struct inode *newinode; member