mirror of
https://github.com/versity/scoutfs.git
synced 2026-09-27 10:24:31 +00:00
11 lines
229 B
C
11 lines
229 B
C
#include "sparse.h"
|
|
#include "util.h"
|
|
#include "format.h"
|
|
|
|
#include "quorum.h"
|
|
|
|
bool quorum_slot_present(struct scoutfs_super_block *super, int i)
|
|
{
|
|
return super->qconf.slots[i].addr.v4.family == cpu_to_le16(SCOUTFS_AF_IPV4);
|
|
}
|