File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -2078,17 +2078,17 @@ static void dump_glock_func(struct gfs2_glock *gl)
20782078 dump_glock (NULL , gl , true);
20792079}
20802080
2081- static void withdraw_dq (struct gfs2_glock * gl )
2081+ static void withdraw_glock (struct gfs2_glock * gl )
20822082{
20832083 spin_lock (& gl -> gl_lockref .lock );
20842084 if (!__lockref_is_dead (& gl -> gl_lockref ))
20852085 do_error (gl , LM_OUT_ERROR ); /* remove pending waiters */
20862086 spin_unlock (& gl -> gl_lockref .lock );
20872087}
20882088
2089- void gfs2_gl_dq_holders (struct gfs2_sbd * sdp )
2089+ void gfs2_withdraw_glocks (struct gfs2_sbd * sdp )
20902090{
2091- glock_hash_walk (withdraw_dq , sdp );
2091+ glock_hash_walk (withdraw_glock , sdp );
20922092}
20932093
20942094/**
Original file line number Diff line number Diff line change @@ -263,7 +263,7 @@ bool gfs2_queue_verify_delete(struct gfs2_glock *gl, bool later);
263263void gfs2_cancel_delete_work (struct gfs2_glock * gl );
264264void gfs2_flush_delete_work (struct gfs2_sbd * sdp );
265265void gfs2_gl_hash_clear (struct gfs2_sbd * sdp );
266- void gfs2_gl_dq_holders (struct gfs2_sbd * sdp );
266+ void gfs2_withdraw_glocks (struct gfs2_sbd * sdp );
267267void gfs2_glock_thaw (struct gfs2_sbd * sdp );
268268void gfs2_glock_free (struct gfs2_glock * gl );
269269void gfs2_glock_free_later (struct gfs2_glock * gl );
Original file line number Diff line number Diff line change @@ -149,7 +149,7 @@ static void do_withdraw(struct gfs2_sbd *sdp)
149149 * Dequeue any pending non-system glock holders that can no
150150 * longer be granted because the file system is withdrawn.
151151 */
152- gfs2_gl_dq_holders (sdp );
152+ gfs2_withdraw_glocks (sdp );
153153 }
154154
155155 gfs2_thaw_freeze_initiator (sdp -> sd_vfs );
You can’t perform that action at this time.
0 commit comments