diff mbox series

[v1,2/6] lib/efi: Log operations to debug log

Message ID de4ac10a0ed6e199e56cfb744b698f5b3d713038.1533921283.git.geoff@infradead.org
State Accepted
Headers show
Series [v1,1/6] lib/efi: Add EFI_DEFALT_ATTRIBUTES macro | expand

Commit Message

Geoff Levand Aug. 10, 2018, 5:29 p.m. UTC
Signed-off-by: Geoff Levand <geoff@infradead.org>
---
 lib/efi/efivar.c | 3 +++
 1 file changed, 3 insertions(+)
diff mbox series

Patch

diff --git a/lib/efi/efivar.c b/lib/efi/efivar.c
index 91b2507..a0c21b5 100644
--- a/lib/efi/efivar.c
+++ b/lib/efi/efivar.c
@@ -109,6 +109,7 @@  delete:
 		pb_log_fn("unlink failed: (%d) %s\n", errno, strerror(errno));
 		goto exit;
 	}
+	pb_debug_fn("Deleted: '%s'\n", name);
 exit:
 	talloc_free(path);
 	close(fd);
@@ -159,6 +160,7 @@  int efi_get_variable(void *ctx, const char *guidstr, const char *name,
 	(*efi_data)->data_size = total;
 	(*efi_data)->data = (*efi_data)->fill;
 	memcpy((*efi_data)->data, buf + sizeof (uint32_t), total);
+	pb_debug_fn("Found: '%s'='%s'\n", name, (const char *)(*efi_data)->data);
 
 	rc = 0;
 exit:
@@ -199,6 +201,7 @@  int efi_set_variable(const char *guidstr, const char *name,
 		goto exit;
 	}
 	rc = 0;
+	pb_debug_fn("Set: '%s'='%s'\n", name,  (const char *)efi_data->data);
 
 exit:
 	talloc_free(path);