diff options
author | Huang Ying <ying.huang@intel.com> | 2010-05-18 14:35:18 +0800 |
---|---|---|
committer | Len Brown <len.brown@intel.com> | 2010-05-19 22:40:47 -0400 |
commit | fab1c23242528771a955c475ef23d99156a71a7f (patch) | |
tree | 2d882ead41cd984628cbfc18c9a2a0a663539602 /lib/Makefile | |
parent | 801eab8118f61255d8e2be35939c572042618742 (diff) | |
download | linux-3.10-fab1c23242528771a955c475ef23d99156a71a7f.tar.gz linux-3.10-fab1c23242528771a955c475ef23d99156a71a7f.tar.bz2 linux-3.10-fab1c23242528771a955c475ef23d99156a71a7f.zip |
Unified UUID/GUID definition
There are many different UUID/GUID definitions in kernel, such as that
in EFI, many file systems, some drivers, etc. Every kernel components
need UUID/GUID has its own definition. This patch provides a unified
definition for UUID/GUID.
UUID is defined via typedef. This makes that UUID appears more like a
preliminary type, and makes the data type explicit (comparing with
implicit "u8 uuid[16]").
The binary representation of UUID/GUID can be little-endian (used by
EFI, etc) or big-endian (defined by RFC4122), so both is defined.
Signed-off-by: Huang Ying <ying.huang@intel.com>
Signed-off-by: Andi Kleen <ak@linux.intel.com>
Signed-off-by: Len Brown <len.brown@intel.com>
Diffstat (limited to 'lib/Makefile')
-rw-r--r-- | lib/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Makefile b/lib/Makefile index 0d4015205c6..f3eb6e8766b 100644 --- a/lib/Makefile +++ b/lib/Makefile @@ -21,7 +21,7 @@ lib-y += kobject.o kref.o klist.o obj-y += bcd.o div64.o sort.o parser.o halfmd4.o debug_locks.o random32.o \ bust_spinlocks.o hexdump.o kasprintf.o bitmap.o scatterlist.o \ - string_helpers.o gcd.o lcm.o list_sort.o + string_helpers.o gcd.o lcm.o list_sort.o uuid.o ifeq ($(CONFIG_DEBUG_KOBJECT),y) CFLAGS_kobject.o += -DDEBUG |