mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-02-19 12:25:40 -05:00
bcachefs: Revert UUID format-specifier change
"bcachefs: Log & error message improvements" accidentally changed the format specifier we use for converting UUIDs to strings, which broke mounting of encrypted filesystems - this patch reverts that change. Signed-off-by: Kent Overstreet <kent.overstreet@gmail.com>
This commit is contained in:
committed by
Kent Overstreet
parent
718ce1eb8a
commit
590b91cf3f
@@ -372,7 +372,7 @@ static inline void pr_time(struct printbuf *out, u64 _time)
|
||||
#ifdef __KERNEL__
|
||||
static inline void uuid_unparse_lower(u8 *uuid, char *out)
|
||||
{
|
||||
sprintf(out, "%plU", uuid);
|
||||
sprintf(out, "%pUb", uuid);
|
||||
}
|
||||
#else
|
||||
#include <uuid/uuid.h>
|
||||
|
||||
Reference in New Issue
Block a user