Commit 6bd9c8c2 authored by Steven Whitehouse's avatar Steven Whitehouse

[GFS2] Remove unused go_callback operation

This is never used, so we might as well remove it.
Signed-off-by: default avatarSteven Whitehouse <swhiteho@redhat.com>
parent e5dab552
...@@ -1568,8 +1568,6 @@ static void blocking_cb(struct gfs2_sbd *sdp, struct lm_lockname *name, ...@@ -1568,8 +1568,6 @@ static void blocking_cb(struct gfs2_sbd *sdp, struct lm_lockname *name,
if (!gl) if (!gl)
return; return;
if (gl->gl_ops->go_callback)
gl->gl_ops->go_callback(gl, state);
handle_callback(gl, state); handle_callback(gl, state);
spin_lock(&gl->gl_spin); spin_lock(&gl->gl_spin);
......
...@@ -110,7 +110,6 @@ struct gfs2_glock_operations { ...@@ -110,7 +110,6 @@ struct gfs2_glock_operations {
int (*go_demote_ok) (struct gfs2_glock *gl); int (*go_demote_ok) (struct gfs2_glock *gl);
int (*go_lock) (struct gfs2_holder *gh); int (*go_lock) (struct gfs2_holder *gh);
void (*go_unlock) (struct gfs2_holder *gh); void (*go_unlock) (struct gfs2_holder *gh);
void (*go_callback) (struct gfs2_glock *gl, unsigned int state);
const int go_type; const int go_type;
}; };
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment