pstore: Make "part" unsigned
authorMatthew Garrett <mjg@redhat.com>
Thu, 21 Jul 2011 20:57:54 +0000 (16:57 -0400)
committerTony Luck <tony.luck@intel.com>
Fri, 22 Jul 2011 23:14:29 +0000 (16:14 -0700)
We'll never have a negative part, so just make this an unsigned int.

Signed-off-by: Matthew Garrett <mjg@redhat.com>
Signed-off-by: Tony Luck <tony.luck@intel.com>
drivers/acpi/apei/erst.c
fs/pstore/platform.c
include/linux/pstore.h

index d842ac4f8cfe6073924ba959233dd4bd20e663b9..6053f4780df94b67aa2f9bffc535e72c2c03ab94 100644 (file)
@@ -933,8 +933,8 @@ static int erst_open_pstore(struct pstore_info *psi);
 static int erst_close_pstore(struct pstore_info *psi);
 static ssize_t erst_reader(u64 *id, enum pstore_type_id *type,
                           struct timespec *time, struct pstore_info *psi);
-static u64 erst_writer(enum pstore_type_id type, int part, size_t size,
-                      struct pstore_info *psi);
+static u64 erst_writer(enum pstore_type_id type, unsigned int part,
+                      size_t size, struct pstore_info *psi);
 static int erst_clearer(enum pstore_type_id type, u64 id,
                        struct pstore_info *psi);
 
@@ -1040,8 +1040,8 @@ out:
        return (rc < 0) ? rc : (len - sizeof(*rcd));
 }
 
-static u64 erst_writer(enum pstore_type_id type, int part, size_t size,
-                      struct pstore_info *psi)
+static u64 erst_writer(enum pstore_type_id type, unsigned int part,
+                      size_t size, struct pstore_info *psi)
 {
        struct cper_pstore_record *rcd = (struct cper_pstore_record *)
                                        (erst_info.buf - sizeof(*rcd));
index 163bb40511e75b7cfef0804ad71873170c8f5b4e..49ff1de2178aabe6d8e29ab79f703d0752c20256 100644 (file)
@@ -67,7 +67,8 @@ static void pstore_dump(struct kmsg_dumper *dumper,
        unsigned long   size, total = 0;
        char            *dst, *why;
        u64             id;
-       int             hsize, part = 1;
+       int             hsize;
+       unsigned int    part = 1;
 
        if (reason < ARRAY_SIZE(reason_str))
                why = reason_str[reason];
index 12be8f193d09bd38f19d39f9c69a306f3f5cf9d9..cc03bbf5c4b8e4dbe8c2b91b39f7a1b83b866fcb 100644 (file)
@@ -39,7 +39,7 @@ struct pstore_info {
        int             (*close)(struct pstore_info *psi);
        ssize_t         (*read)(u64 *id, enum pstore_type_id *type,
                        struct timespec *time, struct pstore_info *psi);
-       u64             (*write)(enum pstore_type_id type, int part,
+       u64             (*write)(enum pstore_type_id type, unsigned int part,
                        size_t size, struct pstore_info *psi);
        int             (*erase)(enum pstore_type_id type, u64 id,
                        struct pstore_info *psi);