~ubuntu-branches/ubuntu/trusty/linux-lts-utopic/trusty-proposed

« back to all changes in this revision

Viewing changes to fs/cifs/link.c

  • Committer: Package Import Robot
  • Author(s): Tim Gardner
  • Date: 2014-11-06 18:27:53 UTC
  • Revision ID: package-import@ubuntu.com-20141106182753-ph51jr0d68hguvdr
Tags: 3.16.0-25.33~14.04.2
* UBUNTU: [Config] Enable MEGARAID for armhf
* UBUNTU: [Config] update-from-utopic-master: CONFIG_SECURITY_APPARMOR_AA3_SEMANTICS no longer exists
* UBUNTU: [Config] update-from-utopic-master: MEGARAID configs no longer cause an FTBS

Show diffs side-by-side

added added

removed removed

Lines of Context:
213
213
        if (rc)
214
214
                goto out;
215
215
 
216
 
        rc = tcon->ses->server->ops->create_mf_symlink(xid, tcon, cifs_sb,
217
 
                                        fromName, buf, &bytes_written);
 
216
        if (tcon->ses->server->ops->create_mf_symlink)
 
217
                rc = tcon->ses->server->ops->create_mf_symlink(xid, tcon,
 
218
                                        cifs_sb, fromName, buf, &bytes_written);
 
219
        else
 
220
                rc = -EOPNOTSUPP;
 
221
 
218
222
        if (rc)
219
223
                goto out;
220
224