Merge branch 'master' of /pub/scm/linux/kernel/git/torvalds/linux-2.6
authorSteve French <sfrench@us.ibm.com>
Sun, 9 Jan 2011 23:18:16 +0000 (23:18 +0000)
committerSteve French <sfrench@us.ibm.com>
Sun, 9 Jan 2011 23:18:16 +0000 (23:18 +0000)
Conflicts:
fs/cifs/dir.c

1  2 
fs/cifs/cifsfs.c
fs/cifs/dir.c

Simple merge
diff --cc fs/cifs/dir.c
@@@ -715,13 -719,15 +719,22 @@@ static int cifs_ci_hash(const struct de
        return 0;
  }
  
- static int cifs_ci_compare(struct dentry *dentry, struct qstr *a,
-                          struct qstr *b)
+ static int cifs_ci_compare(const struct dentry *parent,
+               const struct inode *pinode,
+               const struct dentry *dentry, const struct inode *inode,
+               unsigned int len, const char *str, const struct qstr *name)
  {
++<<<<<<< HEAD
 +      struct nls_table *codepage = CIFS_SB(dentry->d_inode->i_sb)->local_nls;
 +
 +      if ((a->len == b->len) &&
 +          (nls_strnicmp(codepage, a->name, b->name, a->len) == 0))
++=======
+       struct nls_table *codepage = CIFS_SB(pinode->i_sb)->local_nls;
+       if ((name->len == len) &&
+           (nls_strnicmp(codepage, name->name, str, len) == 0))
++>>>>>>> 0c21e3aaf6ae85bee804a325aa29c325209180fd
                return 0;
        return 1;
  }