Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit a8432588 authored by Linus Torvalds's avatar Linus Torvalds
Browse files

Merge branch 'for-next' of git://git.samba.org/sfrench/cifs-2.6

Pull CIFS fix from Steve French:
 "One cifs fix to merge now - fixes possible DFS oops (I expect to
  request a merge of 4 additional cifs fixes next week)"

* 'for-next' of git://git.samba.org/sfrench/cifs-2.6:
  cifs: only set ops for inodes in I_NEW state
parents 0e255f1c c2b93e06
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -171,6 +171,7 @@ cifs_fattr_to_inode(struct inode *inode, struct cifs_fattr *fattr)

	if (fattr->cf_flags & CIFS_FATTR_DFS_REFERRAL)
		inode->i_flags |= S_AUTOMOUNT;
	if (inode->i_state & I_NEW)
		cifs_set_ops(inode);
}