aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--fs/dcache.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/dcache.c b/fs/dcache.c
index 5c7df1df81ff..7fd39f4c5a72 100644
--- a/fs/dcache.c
+++ b/fs/dcache.c
@@ -195,7 +195,7 @@ static inline int dentry_string_cmp(const unsigned char *cs, const unsigned char
195 unsigned long a,b,mask; 195 unsigned long a,b,mask;
196 196
197 for (;;) { 197 for (;;) {
198 a = *(unsigned long *)cs; 198 a = read_word_at_a_time(cs);
199 b = load_unaligned_zeropad(ct); 199 b = load_unaligned_zeropad(ct);
200 if (tcount < sizeof(unsigned long)) 200 if (tcount < sizeof(unsigned long))
201 break; 201 break;