Re: [Xen-devel] [PATCH v1 5/5] tmem: Parse UUIDs correctly.

2017-03-21 Thread Wei Liu
On Sun, Mar 19, 2017 at 09:41:12AM -0400, Konrad Rzeszutek Wilk wrote: > A simple > xl tmem-shared-auth -u --000A--0001 -A 0 0 > > resulted in uuid_low = 1 (correct) and uuid_high = 0 (umm?). > > The issue was that for hex values above 'A' (or 'a') we forgot > to add 10. >

[Xen-devel] [PATCH v1 5/5] tmem: Parse UUIDs correctly.

2017-03-19 Thread Konrad Rzeszutek Wilk
A simple xl tmem-shared-auth -u --000A--0001 -A 0 0 resulted in uuid_low = 1 (correct) and uuid_high = 0 (umm?). The issue was that for hex values above 'A' (or 'a') we forgot to add 10. Signed-off-by: Konrad Rzeszutek Wilk --- Cc: Ian Jackson Cc: Wei Liu --- tools/li