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

Commit 9ef89635 authored by Paul Keith's avatar Paul Keith Committed by Dyneteve
Browse files

fs: sdfat: Fix compilation on Linux 3.10



Change-Id: I3a500f03f399abc9af9586e80419d75aca5b4320
Signed-off-by: default avatarPaul Keith <javelinanddart@gmail.com>
parent 57366ab9
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
@@ -2423,7 +2423,11 @@ static struct dentry *__sdfat_lookup(struct inode *dir, struct dentry *dentry)
		 * In such case, we reuse an alias instead of new dentry
		 */
		if (d_unhashed(alias)) {
#if LINUX_VERSION_CODE < KERNEL_VERSION(3, 10, 0)
			BUG_ON(alias->d_name.hash != dentry->d_name.hash && alias->d_name.len != dentry->d_name.len);
#else
			BUG_ON(alias->d_name.hash_len != dentry->d_name.hash_len);
#endif
			sdfat_msg(sb, KERN_INFO, "rehashed a dentry(%p) "
				"in read lookup", alias);
			d_drop(dentry);