search for: tpm_storage

Displaying 2 results from an estimated 2 matches for "tpm_storage".

Did you mean: vtpm_storage
2008 Aug 26
2
vTPM NVM, loadkey and trousers questions
...lob(TcTcsi.java:535) A lot of vtpm_manager output is produced. The last few lines are: TPMD[6]: tpm/tpm_cmd_handler.c:4162: Debug: tpm_handle_command() TPMD[6]: tpm/tpm_cmd_handler.c:3466: Debug: [TPM_TAG_RQU_AUTH1_COMMAND] TPMD[6]: tpm/tpm_cmd_handler.c:3654: Debug: [TPM_ORD_LoadKey] TPMD[6]: tpm/tpm_storage.c:526: Info: TPM_LoadKey() TPMD[6]: tpm/tpm_storage.c:528: Debug: [ parentHandle=40000000 ] TPMD[6]: tpm/tpm_cmd_handler.c:4117: Info: TPM command succeeded ERROR[VTPM]: [Backend Listener]: Error reading from DMI. Aborting... INFO[VTPM]: [Backend Listener]: Backend Listener waiting for messages....
2012 Sep 17
9
[PATCH] Upgrade vtpmd to berlios version 0.7.4
...2,44 +155,43 @@ void tpm_release_data(void) - - #ifdef TPM_STORE_TO_FILE - --#include <linux/fs.h> --#include <linux/unistd.h> --#include <asm/uaccess.h> -+#include <sys/types.h> -+#include <sys/stat.h> -+#include <fcntl.h> -+#include <unistd.h> - - #define TPM_STORAGE_FILE "/var/tpm/tpm_emulator-1.2." STR(VERSION_MAJOR) "." STR(VERSION_MINOR) - - static int write_to_file(uint8_t *data, size_t data_length) - { - int res; -- struct file *fp; -- mm_segment_t old_fs = get_fs(); -- fp = filp_open(TPM_STORAGE_FILE, O_WRONLY | O_TRUNC | O_CREAT...