Lines Matching refs:xfs_uuid_table
48 static uuid_t *xfs_uuid_table; variable
55 kmem_free(xfs_uuid_table); in xfs_uuid_table_free()
56 xfs_uuid_table = NULL; in xfs_uuid_table_free()
81 if (uuid_is_nil(&xfs_uuid_table[i])) { in xfs_uuid_mount()
85 if (uuid_equal(uuid, &xfs_uuid_table[i])) in xfs_uuid_mount()
90 xfs_uuid_table = kmem_realloc(xfs_uuid_table, in xfs_uuid_mount()
91 (xfs_uuid_table_size + 1) * sizeof(*xfs_uuid_table), in xfs_uuid_mount()
92 xfs_uuid_table_size * sizeof(*xfs_uuid_table), in xfs_uuid_mount()
96 xfs_uuid_table[hole] = *uuid; in xfs_uuid_mount()
119 if (uuid_is_nil(&xfs_uuid_table[i])) in xfs_uuid_unmount()
121 if (!uuid_equal(uuid, &xfs_uuid_table[i])) in xfs_uuid_unmount()
123 memset(&xfs_uuid_table[i], 0, sizeof(uuid_t)); in xfs_uuid_unmount()