From: Jes Sorensen <Jes.Sorensen@xxxxxxxxxx> This avoids adding the same orom entry to the oroms list multiple times, as the comparison of pointers is never going to succeed, in particular when '*orom' points to a local stack variable in the calling function. Signed-off-by: Jes Sorensen <Jes.Sorensen@xxxxxxxxxx> --- platform-intel.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/platform-intel.c b/platform-intel.c index 37274da..a4ffa9f 100644 --- a/platform-intel.c +++ b/platform-intel.c @@ -255,8 +255,8 @@ static const struct imsm_orom *add_orom(const struct imsm_orom *orom) int i; for (i = 0; i < SYS_DEV_MAX; i++) { - if (&oroms[i].orom == orom) - return orom; + if (!memcmp(&oroms[i].orom, orom, sizeof(struct imsm_orom))) + return &oroms[i].orom; if (oroms[i].orom.signature[0] == 0) { oroms[i].orom = *orom; return &oroms[i].orom; -- 2.1.0 -- To unsubscribe from this list: send the line "unsubscribe linux-raid" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html