kernel: update 4.0 to 4.0.5
[openwrt.git] / target / linux / brcm47xx / patches-4.0 / 031-02-MIPS-BCM47XX-Simplify-function-looking-for-NVRAM-ent.patch
1 From f6f895644230b13618f14f7108f9b23a21a87bfa Mon Sep 17 00:00:00 2001
2 From: =?UTF-8?q?Rafa=C5=82=20Mi=C5=82ecki?= <zajec5@gmail.com>
3 Date: Tue, 12 May 2015 18:46:12 +0200
4 Subject: [PATCH] MIPS: BCM47XX: Simplify function looking for NVRAM entry
5 MIME-Version: 1.0
6 Content-Type: text/plain; charset=UTF-8
7 Content-Transfer-Encoding: 8bit
8
9 First of all it shouldn't modify copied NVRAM just to make sure it can
10 loop over all entries. It's enough to just compare current position
11 pointer with the end of buffer address.
12 Secondly buffer is guaranteed to be \0 ended, so we don't need strnchr.
13
14 Signed-off-by: Rafał Miłecki <zajec5@gmail.com>
15 Cc: linux-mips@linux-mips.org
16 Cc: Hauke Mehrtens <hauke@hauke-m.de>
17 Cc: Hante Meuleman <meuleman@broadcom.com>
18 Cc: Ian Kent <raven@themaw.net>
19 Patchwork: https://patchwork.linux-mips.org/patch/10032/
20 Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
21 ---
22  arch/mips/bcm47xx/nvram.c | 13 +++++--------
23  1 file changed, 5 insertions(+), 8 deletions(-)
24
25 --- a/arch/mips/bcm47xx/nvram.c
26 +++ b/arch/mips/bcm47xx/nvram.c
27 @@ -171,7 +171,7 @@ static int nvram_init(void)
28  int bcm47xx_nvram_getenv(const char *name, char *val, size_t val_len)
29  {
30         char *var, *value, *end, *eq;
31 -       int data_left, err;
32 +       int err;
33  
34         if (!name)
35                 return -EINVAL;
36 @@ -184,19 +184,16 @@ int bcm47xx_nvram_getenv(const char *nam
37  
38         /* Look for name=value and return value */
39         var = &nvram_buf[sizeof(struct nvram_header)];
40 -       end = nvram_buf + sizeof(nvram_buf) - 2;
41 -       end[0] = '\0';
42 -       end[1] = '\0';
43 -       for (; *var; var = value + strlen(value) + 1) {
44 -               data_left = end - var;
45 -
46 -               eq = strnchr(var, data_left, '=');
47 +       end = nvram_buf + sizeof(nvram_buf);
48 +       while (var < end && *var) {
49 +               eq = strchr(var, '=');
50                 if (!eq)
51                         break;
52                 value = eq + 1;
53                 if (eq - var == strlen(name) &&
54                     strncmp(var, name, eq - var) == 0)
55                         return snprintf(val, val_len, "%s", value);
56 +               var = value + strlen(value) + 1;
57         }
58         return -ENOENT;
59  }