diff options
author | Steve French <sfrench@us.ibm.com> | 2006-10-12 03:28:28 +0000 |
---|---|---|
committer | Steve French <sfrench@us.ibm.com> | 2006-10-12 03:28:28 +0000 |
commit | acf1a1b1043327b2179ea529730358e58c7c277e (patch) | |
tree | 6753f8c0a8626e9159d4c9d5dbb2f3c4b5f87eba /fs/cifs/inode.c | |
parent | ddae957da48cc381c1472a8909905e1818e4afdd (diff) | |
download | linux-3.10-acf1a1b1043327b2179ea529730358e58c7c277e.tar.gz linux-3.10-acf1a1b1043327b2179ea529730358e58c7c277e.tar.bz2 linux-3.10-acf1a1b1043327b2179ea529730358e58c7c277e.zip |
[CIFS] Level 1 QPathInfo needed for proper OS2 support
Signed-off-by: Steve French <sfrench@us.ibm.com>
Diffstat (limited to 'fs/cifs/inode.c')
-rw-r--r-- | fs/cifs/inode.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/fs/cifs/inode.c b/fs/cifs/inode.c index 06dbce3a181..fe6d21f9996 100644 --- a/fs/cifs/inode.c +++ b/fs/cifs/inode.c @@ -338,6 +338,7 @@ int cifs_get_inode_info(struct inode **pinode, pfindData = (FILE_ALL_INFO *)buf; /* could do find first instead but this returns more info */ rc = CIFSSMBQPathInfo(xid, pTcon, search_path, pfindData, + 0 /* not legacy */, cifs_sb->local_nls, cifs_sb->mnt_cifs_flags & CIFS_MOUNT_MAP_SPECIAL_CHR); /* BB optimize code so we do not make the above call @@ -385,8 +386,10 @@ int cifs_get_inode_info(struct inode **pinode, /* get new inode */ if (*pinode == NULL) { *pinode = new_inode(sb); - if (*pinode == NULL) + if (*pinode == NULL) { + kfree(buf); return -ENOMEM; + } /* Is an i_ino of zero legal? Can we use that to check if the server supports returning inode numbers? Are there other sanity checks we can use to ensure that |