orangefs: fix typo in ornagefs_inode_lock
authorArnd Bergmann <arnd@arndb.de>
Mon, 21 Dec 2015 13:49:29 +0000 (14:49 +0100)
committerMike Marshall <hubcap@omnibond.com>
Mon, 28 Dec 2015 15:31:21 +0000 (10:31 -0500)
Orangefs fails to build on 32-bit SMP configurations due to a simple
misspelling, this does the obvious fix.

Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Fixes: 575e946125f7 ("Orangefs: change pvfs2 filenames to orangefs")
Signed-off-by: Mike Marshall <hubcap@omnibond.com>
fs/orangefs/orangefs-kernel.h

index 0b7ba0496aa3832068116fa546587acc87dcc8f3..fe8284045a40467874769d5eb36c2a24b0f454b6 100644 (file)
@@ -770,7 +770,7 @@ do {                                                                        \
 static inline void orangefs_i_size_write(struct inode *inode, loff_t i_size)
 {
 #if BITS_PER_LONG == 32 && defined(CONFIG_SMP)
-       ornagefs_inode_lock(inode);
+       orangefs_inode_lock(inode);
 #endif
        i_size_write(inode, i_size);
 #if BITS_PER_LONG == 32 && defined(CONFIG_SMP)
This page took 0.025161 seconds and 5 git commands to generate.