diff options
| author | Andy Shevchenko <[email protected]> | 2020-04-22 13:03:17 +0000 |
|---|---|---|
| committer | Jens Axboe <[email protected]> | 2020-06-18 15:17:54 +0000 |
| commit | bc163c2046c5867df7d2b03e85bca29adf83fa32 (patch) | |
| tree | 64aefeb280bfb90a1f2cbf6e60a2949610aac58d | |
| parent | block: update hctx map when use multiple maps (diff) | |
| download | kernel-bc163c2046c5867df7d2b03e85bca29adf83fa32.tar.gz kernel-bc163c2046c5867df7d2b03e85bca29adf83fa32.zip | |
partitions/ldm: Replace uuid_copy() with import_uuid() where it makes sense
There is a specific API to treat raw data as UUID, i.e. import_uuid().
Use it instead of uuid_copy() with explicit casting.
Signed-off-by: Andy Shevchenko <[email protected]>
Signed-off-by: Jens Axboe <[email protected]>
| -rw-r--r-- | block/partitions/ldm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/block/partitions/ldm.c b/block/partitions/ldm.c index 6fdfcb40c537..d333786b5c7e 100644 --- a/block/partitions/ldm.c +++ b/block/partitions/ldm.c @@ -910,7 +910,7 @@ static bool ldm_parse_dsk4 (const u8 *buffer, int buflen, struct vblk *vb) return false; disk = &vb->vblk.disk; - uuid_copy(&disk->disk_id, (uuid_t *)(buffer + 0x18 + r_name)); + import_uuid(&disk->disk_id, buffer + 0x18 + r_name); return true; } |
