All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v2 1/2] uuid: Add a glue layer macros for raw buffers
@ 2019-03-29 20:26 Andy Shevchenko
  2019-04-03 18:09 ` Christoph Hellwig
  0 siblings, 1 reply; 4+ messages in thread
From: Andy Shevchenko @ 2019-03-29 20:26 UTC (permalink / raw)
  To: Chris Mason, Josef Bacik, David Sterba, Lu Fengqi, linux-btrfs,
	Christoph Hellwig, David Sterba
  Cc: Andy Shevchenko

When the ID comes from or we would like to pass it to a raw buffer,
the casting is needed.

Instead of doing it each time, provide a helpful set of macros.

Suggested-by: David Sterba <dsterba@suse.cz>
Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
---
 include/linux/uuid.h | 13 +++++++++++++
 1 file changed, 13 insertions(+)

diff --git a/include/linux/uuid.h b/include/linux/uuid.h
index d9c4a6cce3c2..917f1d4e5d44 100644
--- a/include/linux/uuid.h
+++ b/include/linux/uuid.h
@@ -51,11 +51,16 @@ static inline void guid_copy(guid_t *dst, const guid_t *src)
 	memcpy(dst, src, sizeof(guid_t));
 }
 
+#define guid_copy_from_raw(dst, src)	guid_copy(dst, (const guid_t *)src)
+#define guid_copy_to_raw(dst, src)	guid_copy((void *)dst, src)
+
 static inline bool guid_is_null(const guid_t *guid)
 {
 	return guid_equal(guid, &guid_null);
 }
 
+#define guid_is_null_raw(guid)		guid_is_null((const guid_t *)guid)
+
 static inline bool uuid_equal(const uuid_t *u1, const uuid_t *u2)
 {
 	return memcmp(u1, u2, sizeof(uuid_t)) == 0;
@@ -66,16 +71,24 @@ static inline void uuid_copy(uuid_t *dst, const uuid_t *src)
 	memcpy(dst, src, sizeof(uuid_t));
 }
 
+#define uuid_copy_from_raw(dst, src)	uuid_copy(dst, (const uuid_t *)src)
+#define uuid_copy_to_raw(dst, src)	uuid_copy((void *)dst, src)
+
 static inline bool uuid_is_null(const uuid_t *uuid)
 {
 	return uuid_equal(uuid, &uuid_null);
 }
 
+#define uuid_is_null_raw(uuid)		uuid_is_null((const uuid_t *)uuid)
+
 void generate_random_uuid(unsigned char uuid[16]);
 
 extern void guid_gen(guid_t *u);
 extern void uuid_gen(uuid_t *u);
 
+#define guid_gen_raw(guid)		guid_gen((guid_t *)guid)
+#define uuid_gen_raw(uuid)		uuid_gen((uuid_t *)uuid)
+
 bool __must_check uuid_is_valid(const char *uuid);
 
 extern const u8 guid_index[16];
-- 
2.20.1


^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [PATCH v2 1/2] uuid: Add a glue layer macros for raw buffers
  2019-03-29 20:26 [PATCH v2 1/2] uuid: Add a glue layer macros for raw buffers Andy Shevchenko
@ 2019-04-03 18:09 ` Christoph Hellwig
  2019-04-04  8:45   ` Andy Shevchenko
  0 siblings, 1 reply; 4+ messages in thread
From: Christoph Hellwig @ 2019-04-03 18:09 UTC (permalink / raw)
  To: Andy Shevchenko
  Cc: Chris Mason, Josef Bacik, David Sterba, Lu Fengqi, linux-btrfs,
	Christoph Hellwig, David Sterba

On Fri, Mar 29, 2019 at 11:26:43PM +0300, Andy Shevchenko wrote:
> When the ID comes from or we would like to pass it to a raw buffer,
> the casting is needed.

Something is missing in this sentence.

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH v2 1/2] uuid: Add a glue layer macros for raw buffers
  2019-04-03 18:09 ` Christoph Hellwig
@ 2019-04-04  8:45   ` Andy Shevchenko
  2019-04-09 10:25     ` Christoph Hellwig
  0 siblings, 1 reply; 4+ messages in thread
From: Andy Shevchenko @ 2019-04-04  8:45 UTC (permalink / raw)
  To: Christoph Hellwig
  Cc: Chris Mason, Josef Bacik, David Sterba, Lu Fengqi, linux-btrfs,
	David Sterba

On Wed, Apr 03, 2019 at 08:09:03PM +0200, Christoph Hellwig wrote:
> On Fri, Mar 29, 2019 at 11:26:43PM +0300, Andy Shevchenko wrote:
> > When the ID comes from or we would like to pass it to a raw buffer,
> > the casting is needed.
> 
> Something is missing in this sentence.

What I meant there is if we got a raw buffer, consider u8 * pointer to it, and
we would like to either take a UUID in binary form from it or pass it to that
buffer, we have to cast due to type inequivalence.

Can you suggest how to compress it nicely to few words?

-- 
With Best Regards,
Andy Shevchenko



^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH v2 1/2] uuid: Add a glue layer macros for raw buffers
  2019-04-04  8:45   ` Andy Shevchenko
@ 2019-04-09 10:25     ` Christoph Hellwig
  0 siblings, 0 replies; 4+ messages in thread
From: Christoph Hellwig @ 2019-04-09 10:25 UTC (permalink / raw)
  To: Andy Shevchenko
  Cc: Christoph Hellwig, Chris Mason, Josef Bacik, David Sterba,
	Lu Fengqi, linux-btrfs, David Sterba

On Thu, Apr 04, 2019 at 11:45:26AM +0300, Andy Shevchenko wrote:
> On Wed, Apr 03, 2019 at 08:09:03PM +0200, Christoph Hellwig wrote:
> > On Fri, Mar 29, 2019 at 11:26:43PM +0300, Andy Shevchenko wrote:
> > > When the ID comes from or we would like to pass it to a raw buffer,
> > > the casting is needed.
> > 
> > Something is missing in this sentence.
> 
> What I meant there is if we got a raw buffer, consider u8 * pointer to it, and
> we would like to either take a UUID in binary form from it or pass it to that
> buffer, we have to cast due to type inequivalence.
> 
> Can you suggest how to compress it nicely to few words?

Well, the usual way is to memcpy it out, and I'm not sure how this
is so much better.  But maybe a detailed changelog that actuall parses
and properly typed inline functions might convince me :)

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2019-04-09 10:25 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-03-29 20:26 [PATCH v2 1/2] uuid: Add a glue layer macros for raw buffers Andy Shevchenko
2019-04-03 18:09 ` Christoph Hellwig
2019-04-04  8:45   ` Andy Shevchenko
2019-04-09 10:25     ` Christoph Hellwig

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.