diff options
| author | Arnd Bergmann <[email protected]> | 2015-12-21 14:49:29 +0100 |
|---|---|---|
| committer | Mike Marshall <[email protected]> | 2015-12-28 10:31:21 -0500 |
| commit | eb57bcc2718a9fb5eaea80e0d76e53afac6ae2ec (patch) | |
| tree | c4e4ca4cceabca7a2451710bce7e9109fb66929c | |
| parent | dde58ca4367a216d51c4e034f1f0195e5923c934 (diff) | |
orangefs: fix typo in ornagefs_inode_lock
Orangefs fails to build on 32-bit SMP configurations due to a simple
misspelling, this does the obvious fix.
Signed-off-by: Arnd Bergmann <[email protected]>
Fixes: 575e946125f7 ("Orangefs: change pvfs2 filenames to orangefs")
Signed-off-by: Mike Marshall <[email protected]>
| -rw-r--r-- | fs/orangefs/orangefs-kernel.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/orangefs/orangefs-kernel.h b/fs/orangefs/orangefs-kernel.h index 0b7ba0496aa3..fe8284045a40 100644 --- a/fs/orangefs/orangefs-kernel.h +++ b/fs/orangefs/orangefs-kernel.h @@ -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) |