aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/acpi/apei/erst.c
diff options
context:
space:
mode:
authorMatthew Garrett <mjg@redhat.com>2011-07-21 16:57:53 -0400
committerTony Luck <tony.luck@intel.com>2011-07-22 19:14:20 -0400
commit56280682ceeef74b692b3e21d1872049eea7c887 (patch)
tree6d00729db23dff065ad60bf2f7be3f96b6fd4008 /drivers/acpi/apei/erst.c
parent638c1fd3033c76778e6d9975ad8a4a9cdd5b96d9 (diff)
pstore: Add extra context for writes and erases
EFI only provides small amounts of individual storage, and conventionally puts metadata in the storage variable name. Rather than add a metadata header to the (already limited) variable storage, it's easier for us to modify pstore to pass all the information we need to construct a unique variable name to the appropriate functions. Signed-off-by: Matthew Garrett <mjg@redhat.com> Signed-off-by: Tony Luck <tony.luck@intel.com>
Diffstat (limited to 'drivers/acpi/apei/erst.c')
-rw-r--r--drivers/acpi/apei/erst.c10
1 files changed, 6 insertions, 4 deletions
diff --git a/drivers/acpi/apei/erst.c b/drivers/acpi/apei/erst.c
index de3ae92adaa5..d842ac4f8cfe 100644
--- a/drivers/acpi/apei/erst.c
+++ b/drivers/acpi/apei/erst.c
@@ -933,9 +933,10 @@ static int erst_open_pstore(struct pstore_info *psi);
933static int erst_close_pstore(struct pstore_info *psi); 933static int erst_close_pstore(struct pstore_info *psi);
934static ssize_t erst_reader(u64 *id, enum pstore_type_id *type, 934static ssize_t erst_reader(u64 *id, enum pstore_type_id *type,
935 struct timespec *time, struct pstore_info *psi); 935 struct timespec *time, struct pstore_info *psi);
936static u64 erst_writer(enum pstore_type_id type, size_t size, 936static u64 erst_writer(enum pstore_type_id type, int part, size_t size,
937 struct pstore_info *psi); 937 struct pstore_info *psi);
938static int erst_clearer(u64 id, struct pstore_info *psi); 938static int erst_clearer(enum pstore_type_id type, u64 id,
939 struct pstore_info *psi);
939 940
940static struct pstore_info erst_info = { 941static struct pstore_info erst_info = {
941 .owner = THIS_MODULE, 942 .owner = THIS_MODULE,
@@ -1039,7 +1040,7 @@ out:
1039 return (rc < 0) ? rc : (len - sizeof(*rcd)); 1040 return (rc < 0) ? rc : (len - sizeof(*rcd));
1040} 1041}
1041 1042
1042static u64 erst_writer(enum pstore_type_id type, size_t size, 1043static u64 erst_writer(enum pstore_type_id type, int part, size_t size,
1043 struct pstore_info *psi) 1044 struct pstore_info *psi)
1044{ 1045{
1045 struct cper_pstore_record *rcd = (struct cper_pstore_record *) 1046 struct cper_pstore_record *rcd = (struct cper_pstore_record *)
@@ -1083,7 +1084,8 @@ static u64 erst_writer(enum pstore_type_id type, size_t size,
1083 return rcd->hdr.record_id; 1084 return rcd->hdr.record_id;
1084} 1085}
1085 1086
1086static int erst_clearer(u64 id, struct pstore_info *psi) 1087static int erst_clearer(enum pstore_type_id type, u64 id,
1088 struct pstore_info *psi)
1087{ 1089{
1088 return erst_clear(id); 1090 return erst_clear(id);
1089} 1091}