lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <CAL_JsqKY7hTurOdR4kgXZBT922-s-paM-CgU5rv_fB4qinfxSA@mail.gmail.com>
Date:	Fri, 24 Jul 2015 14:00:57 -0500
From:	Rob Herring <robherring2@...il.com>
To:	Wang Long <long.wanglong@...wei.com>
Cc:	Grant Likely <grant.likely@...aro.org>,
	Rob Herring <robh+dt@...nel.org>,
	"devicetree@...r.kernel.org" <devicetree@...r.kernel.org>,
	"linux-kernel@...r.kernel.org" <linux-kernel@...r.kernel.org>,
	peifeiyue@...wei.com, wanglong@...qinren.net
Subject: Re: [PATCH] drivers/of/fdt.c: replace pr_warning by pr_warn

On Tue, Jul 21, 2015 at 3:01 AM, Wang Long <long.wanglong@...wei.com> wrote:
> Update the last pr_warning callsite in drivers/of.

That is obvious in the diff, but can you tell me why?

Rob

> Signed-off-by: Wang Long <long.wanglong@...wei.com>
> ---
>  drivers/of/fdt.c | 10 +++++-----
>  1 file changed, 5 insertions(+), 5 deletions(-)
>
> diff --git a/drivers/of/fdt.c b/drivers/of/fdt.c
> index 0749656..e1f61b8 100644
> --- a/drivers/of/fdt.c
> +++ b/drivers/of/fdt.c
> @@ -425,7 +425,7 @@ static void __unflatten_device_tree(const void *blob,
>         start = 0;
>         unflatten_dt_node(blob, mem, &start, NULL, mynodes, 0, false);
>         if (be32_to_cpup(mem + size) != 0xdeadbeef)
> -               pr_warning("End of tree marker overwritten: %08x\n",
> +               pr_warn("End of tree marker overwritten: %08x\n",
>                            be32_to_cpup(mem + size));
>
>         pr_debug(" <- unflatten_device_tree()\n");
> @@ -985,24 +985,24 @@ void __init __weak early_init_dt_add_memory_arch(u64 base, u64 size)
>         size &= PAGE_MASK;
>
>         if (base > MAX_PHYS_ADDR) {
> -               pr_warning("Ignoring memory block 0x%llx - 0x%llx\n",
> +               pr_warn("Ignoring memory block 0x%llx - 0x%llx\n",
>                                 base, base + size);
>                 return;
>         }
>
>         if (base + size - 1 > MAX_PHYS_ADDR) {
> -               pr_warning("Ignoring memory range 0x%llx - 0x%llx\n",
> +               pr_warn("Ignoring memory range 0x%llx - 0x%llx\n",
>                                 ((u64)MAX_PHYS_ADDR) + 1, base + size);
>                 size = MAX_PHYS_ADDR - base + 1;
>         }
>
>         if (base + size < phys_offset) {
> -               pr_warning("Ignoring memory block 0x%llx - 0x%llx\n",
> +               pr_warn("Ignoring memory block 0x%llx - 0x%llx\n",
>                            base, base + size);
>                 return;
>         }
>         if (base < phys_offset) {
> -               pr_warning("Ignoring memory range 0x%llx - 0x%llx\n",
> +               pr_warn("Ignoring memory range 0x%llx - 0x%llx\n",
>                            base, phys_offset);
>                 size -= phys_offset - base;
>                 base = phys_offset;
> --
> 1.8.3.4
>
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ