Message ID | 20190801010944.268628059@linutronix.de (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Series | fs: Substitute bit-spinlocks for PREEMPT_RT and debugging | expand |
On Thu 01-08-19 03:01:30, Thomas Gleixner wrote: > No users. > > Signed-off-by: Thomas Gleixner <tglx@linutronix.de> > Cc: linux-ext4@vger.kernel.org > Cc: "Theodore Ts'o" <tytso@mit.edu> > Cc: Jan Kara <jack@suse.com> Right. Reviewed-by: Jan Kara <jack@suse.cz> Honza > --- > include/linux/jbd2.h | 5 ----- > 1 file changed, 5 deletions(-) > > --- a/include/linux/jbd2.h > +++ b/include/linux/jbd2.h > @@ -347,11 +347,6 @@ static inline void jbd_lock_bh_state(str > bit_spin_lock(BH_State, &bh->b_state); > } > > -static inline int jbd_trylock_bh_state(struct buffer_head *bh) > -{ > - return bit_spin_trylock(BH_State, &bh->b_state); > -} > - > static inline int jbd_is_locked_bh_state(struct buffer_head *bh) > { > return bit_spin_is_locked(BH_State, &bh->b_state); > >
--- a/include/linux/jbd2.h +++ b/include/linux/jbd2.h @@ -347,11 +347,6 @@ static inline void jbd_lock_bh_state(str bit_spin_lock(BH_State, &bh->b_state); } -static inline int jbd_trylock_bh_state(struct buffer_head *bh) -{ - return bit_spin_trylock(BH_State, &bh->b_state); -} - static inline int jbd_is_locked_bh_state(struct buffer_head *bh) { return bit_spin_is_locked(BH_State, &bh->b_state);
No users. Signed-off-by: Thomas Gleixner <tglx@linutronix.de> Cc: linux-ext4@vger.kernel.org Cc: "Theodore Ts'o" <tytso@mit.edu> Cc: Jan Kara <jack@suse.com> --- include/linux/jbd2.h | 5 ----- 1 file changed, 5 deletions(-)