#ifndef _LINUX_LOCKS_H #define _LINUX_LOCKS_H #ifndef _LINUX_MM_H #include #endif #ifndef _LINUX_PAGEMAP_H #include #endif /* * super-block locking. Again, interrupts may only unlock * a super-block (although even this isn't done right now. * nfs may need it). */ static inline void lock_super(struct super_block * sb) { down(&sb->s_lock); } static inline void unlock_super(struct super_block * sb) { up(&sb->s_lock); } #endif /* _LINUX_LOCKS_H */