lkml.org 
[lkml]   [2011]   [Dec]   [6]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
    Patch in this message
    /
    From
    Subject[PATCH 01/25] kernel/module.c: fix compile err, warnings under ifdef DEBUGP
    Date
    From: Jim Cromie <jim.cromie@gmail.com>

    resubmit of https://lkml.org/lkml/2010/9/15/399 4/4 patch
    with tiny mod.

    Fixes these warnings, err if DEBUGP is defined in kernel/module.c:

    kernel/module.c: In function ‘layout_sections’:
    kernel/module.c:1776: error: ‘name’ undeclared (first use in this function)
    kernel/module.c:1776: error: (Each undeclared identifier is reported only once
    kernel/module.c:1776: error: for each function it appears in.)
    kernel/module.c: In function ‘move_module’:
    kernel/module.c:2394: warning: format ‘%lx’ expects type ‘long unsigned int’,
    but argument 2 has type ‘Elf64_Addr’

    Signed-off-by: Jim Cromie <jim.cromie@gmail.com>
    ---
    kernel/module.c | 6 +++---
    1 files changed, 3 insertions(+), 3 deletions(-)

    diff --git a/kernel/module.c b/kernel/module.c
    index 178333c..30ffed4 100644
    --- a/kernel/module.c
    +++ b/kernel/module.c
    @@ -1978,7 +1978,7 @@ static void layout_sections(struct module *mod, struct load_info *info)
    || strstarts(sname, ".init"))
    continue;
    s->sh_entsize = get_offset(mod, &mod->core_size, s, i);
    - DEBUGP("\t%s\n", name);
    + DEBUGP("\t%s\n", sname);
    }
    switch (m) {
    case 0: /* executable */
    @@ -2639,8 +2639,8 @@ static int move_module(struct module *mod, struct load_info *info)
    memcpy(dest, (void *)shdr->sh_addr, shdr->sh_size);
    /* Update sh_addr to point to copy in image. */
    shdr->sh_addr = (unsigned long)dest;
    - DEBUGP("\t0x%lx %s\n",
    - shdr->sh_addr, info->secstrings + shdr->sh_name);
    + DEBUGP("\t0x%p %s\n",
    + (void *)shdr->sh_addr, info->secstrings + shdr->sh_name);
    }

    return 0;
    --
    1.7.7.3
    --
    To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
    the body of a message to majordomo@vger.kernel.org
    More majordomo info at http://vger.kernel.org/majordomo-info.html
    Please read the FAQ at http://www.tux.org/lkml/

    \
     
     \ /
      Last update: 2011-12-06 20:15    [W:5.210 / U:0.008 seconds]
    ©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site