]> git.sesse.net Git - bcachefs-tools-debian/blob - c_src/include/linux/uuid.h
a9990902871d1d9ed23224faad9c662af0eeb689
[bcachefs-tools-debian] / c_src / include / linux / uuid.h
1 /*
2  * UUID/GUID definition
3  *
4  * Copyright (C) 2010, 2016 Intel Corp.
5  *      Huang Ying <ying.huang@intel.com>
6  *
7  * This program is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU General Public License version
9  * 2 as published by the Free Software Foundation;
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  */
16 #ifndef _LINUX_UUID_H_
17 #define _LINUX_UUID_H_
18
19 #include <string.h>
20 #include <asm/types.h>
21 #include <stdbool.h>
22
23 #define UUID_SIZE 16
24
25 typedef struct {
26         __u8 b[UUID_SIZE];
27 } __uuid_t;
28
29 #define UUID_INIT(a, b, c, d0, d1, d2, d3, d4, d5, d6, d7)                      \
30 ((__uuid_t)                                                             \
31 {{ ((a) >> 24) & 0xff, ((a) >> 16) & 0xff, ((a) >> 8) & 0xff, (a) & 0xff, \
32    ((b) >> 8) & 0xff, (b) & 0xff,                                       \
33    ((c) >> 8) & 0xff, (c) & 0xff,                                       \
34    (d0), (d1), (d2), (d3), (d4), (d5), (d6), (d7) }})
35
36 static inline bool uuid_equal(const __uuid_t *u1, const __uuid_t *u2)
37 {
38         return memcmp(u1, u2, sizeof(__uuid_t)) == 0;
39 }
40
41 #endif