diff options
author | Kees Cook <keescook@chromium.org> | 2017-05-19 15:29:10 -0700 |
---|---|---|
committer | Kees Cook <keescook@chromium.org> | 2017-05-31 10:13:44 -0700 |
commit | c7f3c595f6ff7a1cfbf7ac782722bf5173e27775 (patch) | |
tree | 7adaa468343cb5d9a45ce738d1fee91ca22dc489 /drivers/firmware | |
parent | e581ca813a40a4ee53c862d8f6303f486c4b4c34 (diff) | |
download | linux-rpi-c7f3c595f6ff7a1cfbf7ac782722bf5173e27775.tar.gz linux-rpi-c7f3c595f6ff7a1cfbf7ac782722bf5173e27775.tar.bz2 linux-rpi-c7f3c595f6ff7a1cfbf7ac782722bf5173e27775.zip |
pstore: Populate pstore record->time field
The current time will be initially available in the record->time field
for all pstore_read() and pstore_write() calls. Backends can either
update the field during read(), or use the field during write() instead
of fetching time themselves.
Signed-off-by: Kees Cook <keescook@chromium.org>
Diffstat (limited to 'drivers/firmware')
-rw-r--r-- | drivers/firmware/efi/efi-pstore.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/drivers/firmware/efi/efi-pstore.c b/drivers/firmware/efi/efi-pstore.c index d30dc935e20e..5a0fa939d70f 100644 --- a/drivers/firmware/efi/efi-pstore.c +++ b/drivers/firmware/efi/efi-pstore.c @@ -244,9 +244,6 @@ static int efi_pstore_write(struct pstore_record *record) efi_guid_t vendor = LINUX_EFI_CRASH_GUID; int i, ret = 0; - record->time.tv_sec = get_seconds(); - record->time.tv_nsec = 0; - record->id = generic_id(record->time.tv_sec, record->part, record->count); |