diff options
author | Matthieu CASTET <matthieu.castet@parrot.com> | 2010-06-03 10:14:27 -0400 |
---|---|---|
committer | Artem Bityutskiy <Artem.Bityutskiy@nokia.com> | 2010-06-11 10:23:37 -0400 |
commit | 095751a6e0838a712393a74eb0b7b6559dbdbe81 (patch) | |
tree | 286ae0ee280545b85b7636cca91fb8e7f4efc859 | |
parent | 1a49af2ca019dcb4614c32f832bbcb814b61409c (diff) |
UBI: generate random image_seq when formatting MTD devices
Generate random image_seq when attaching empty MTD device (kernel do the
ubi formating).
Signed-off-by: Matthieu CASTET <matthieu.castet@parrot.com>
Signed-off-by: Artem Bityutskiy <Artem.Bityutskiy@nokia.com>
-rw-r--r-- | drivers/mtd/ubi/scan.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/mtd/ubi/scan.c b/drivers/mtd/ubi/scan.c index 6b7c0c4baf07..de7b2f1c4113 100644 --- a/drivers/mtd/ubi/scan.c +++ b/drivers/mtd/ubi/scan.c | |||
@@ -44,6 +44,7 @@ | |||
44 | #include <linux/slab.h> | 44 | #include <linux/slab.h> |
45 | #include <linux/crc32.h> | 45 | #include <linux/crc32.h> |
46 | #include <linux/math64.h> | 46 | #include <linux/math64.h> |
47 | #include <linux/random.h> | ||
47 | #include "ubi.h" | 48 | #include "ubi.h" |
48 | 49 | ||
49 | #ifdef CONFIG_MTD_UBI_DEBUG_PARANOID | 50 | #ifdef CONFIG_MTD_UBI_DEBUG_PARANOID |
@@ -956,6 +957,7 @@ static int check_what_we_have(const struct ubi_device *ubi, | |||
956 | */ | 957 | */ |
957 | si->is_empty = 1; | 958 | si->is_empty = 1; |
958 | ubi_msg("empty MTD device detected"); | 959 | ubi_msg("empty MTD device detected"); |
960 | get_random_bytes(&ubi->image_seq, sizeof(ubi->image_seq)); | ||
959 | } else { | 961 | } else { |
960 | ubi_err("MTD device possibly contains non-UBI data, " | 962 | ubi_err("MTD device possibly contains non-UBI data, " |
961 | "refusing it"); | 963 | "refusing it"); |