mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2025-01-22 08:53:18 +07:00
drbd: Make drbd_wait_ee_list_empty() and _drbd_wait_ee_list_empty() static
Signed-off-by: Philipp Reisner <philipp.reisner@linbit.com> Signed-off-by: Lars Ellenberg <lars.ellenberg@linbit.com>
This commit is contained in:
parent
045417f75c
commit
d4da15374b
@ -1463,10 +1463,6 @@ extern void __drbd_free_peer_req(struct drbd_conf *, struct drbd_peer_request *,
|
||||
int);
|
||||
#define drbd_free_peer_req(m,e) __drbd_free_peer_req(m, e, 0)
|
||||
#define drbd_free_net_peer_req(m,e) __drbd_free_peer_req(m, e, 1)
|
||||
extern void drbd_wait_ee_list_empty(struct drbd_conf *mdev,
|
||||
struct list_head *head);
|
||||
extern void _drbd_wait_ee_list_empty(struct drbd_conf *mdev,
|
||||
struct list_head *head);
|
||||
extern void drbd_set_recv_tcq(struct drbd_conf *mdev, int tcq_enabled);
|
||||
extern void _drbd_clear_done_ee(struct drbd_conf *mdev, struct list_head *to_be_freed);
|
||||
extern void conn_flush_workqueue(struct drbd_tconn *tconn);
|
||||
|
@ -428,7 +428,8 @@ static int drbd_finish_peer_reqs(struct drbd_conf *mdev)
|
||||
return err;
|
||||
}
|
||||
|
||||
void _drbd_wait_ee_list_empty(struct drbd_conf *mdev, struct list_head *head)
|
||||
static void _drbd_wait_ee_list_empty(struct drbd_conf *mdev,
|
||||
struct list_head *head)
|
||||
{
|
||||
DEFINE_WAIT(wait);
|
||||
|
||||
@ -443,7 +444,8 @@ void _drbd_wait_ee_list_empty(struct drbd_conf *mdev, struct list_head *head)
|
||||
}
|
||||
}
|
||||
|
||||
void drbd_wait_ee_list_empty(struct drbd_conf *mdev, struct list_head *head)
|
||||
static void drbd_wait_ee_list_empty(struct drbd_conf *mdev,
|
||||
struct list_head *head)
|
||||
{
|
||||
spin_lock_irq(&mdev->tconn->req_lock);
|
||||
_drbd_wait_ee_list_empty(mdev, head);
|
||||
|
Loading…
Reference in New Issue
Block a user