Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 680895d6 authored by Christoph Hellwig's avatar Christoph Hellwig
Browse files

sysctl: switch to use uuid_t

parent 59b9c629
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -1119,7 +1119,7 @@ static ssize_t bin_uuid(struct file *file,
	/* Only supports reads */
	if (oldval && oldlen) {
		char buf[UUID_STRING_LEN + 1];
		uuid_be uuid;
		uuid_t uuid;

		result = kernel_read(file, 0, buf, sizeof(buf) - 1);
		if (result < 0)
@@ -1128,7 +1128,7 @@ static ssize_t bin_uuid(struct file *file,
		buf[result] = '\0';

		result = -EIO;
		if (uuid_be_to_bin(buf, &uuid))
		if (uuid_parse(buf, &uuid))
			goto out;

		if (oldlen > 16)