quorum.h 422 B

12345678910111213141516171819
  1. /* SPDX-License-Identifier: GPL-2.0-or-later */
  2. /*
  3. * Copyright (C) 2005 Oracle. All rights reserved.
  4. */
  5. #ifndef O2CLUSTER_QUORUM_H
  6. #define O2CLUSTER_QUORUM_H
  7. void o2quo_init(void);
  8. void o2quo_exit(void);
  9. void o2quo_hb_up(u8 node);
  10. void o2quo_hb_down(u8 node);
  11. void o2quo_hb_still_up(u8 node);
  12. void o2quo_conn_up(u8 node);
  13. void o2quo_conn_err(u8 node);
  14. void o2quo_disk_timeout(void);
  15. #endif /* O2CLUSTER_QUORUM_H */