Skip to content
  1. Jan 21, 2016
  2. Jan 16, 2016
  3. Jan 15, 2016
  4. Jan 13, 2016
    • Ulrich Weigand's avatar
      scripts/recordmcount.pl: support data in text section on powerpc · 2e50c4be
      Ulrich Weigand authored
      
      
      If a text section starts out with a data blob before the first
      function start label, disassembly parsing doing in recordmcount.pl
      gets confused on powerpc, leading to creation of corrupted module
      objects.
      
      This was not a problem so far since the compiler would never create
      such text sections.  However, this has changed with a recent change
      in GCC 6 to support distances of > 2GB between a function and its
      assoicated TOC in the ELFv2 ABI, exposing this problem.
      
      There is already code in recordmcount.pl to handle such data blobs
      on the sparc64 platform.  This patch uses the same method to handle
      those on powerpc as well.
      
      Cc: stable@vger.kernel.org
      Acked-by: default avatarSteven Rostedt <rostedt@goodmis.org>
      Signed-off-by: default avatarUlrich Weigand <ulrich.weigand@de.ibm.com>
      Signed-off-by: default avatarMichael Ellerman <mpe@ellerman.id.au>
      2e50c4be
  5. Jan 12, 2016
  6. Jan 11, 2016
  7. Jan 10, 2016
    • Vegard Nossum's avatar
      um: link with -lpthread · a7df4716
      Vegard Nossum authored
      
      
      Similarly to commit fb1770aa, with gcc 5
      on Ubuntu and CONFIG_STATIC_LINK=y I was seeing these linker errors:
      
      /usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu/librt.a(timer_create.o): In function `__timer_create_new':
      (.text+0xcd): undefined reference to `pthread_once'
      /usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu/librt.a(timer_create.o): In function `__timer_create_new':
      (.text+0x126): undefined reference to `pthread_attr_init'
      /usr/lib/gcc/x86_64-linux-gnu/5/../../../x86_64-linux-gnu/librt.a(timer_create.o): In function `__timer_create_new':
      (.text+0x168): undefined reference to `pthread_attr_setdetachstate'
      [...]
      
      Obviously we also need -lpthread for librt.a.
      
      Cc: stable@vger.kernel.org # 4.4
      Signed-off-by: default avatarVegard Nossum <vegard.nossum@oracle.com>
      Signed-off-by: default avatarRichard Weinberger <richard@nod.at>
      a7df4716
  8. Jan 08, 2016
  9. Jan 05, 2016
    • Michal Marek's avatar
      tags: Unify emacs and exuberant rules · 93209d65
      Michal Marek authored
      
      
      The emacs rules were constantly lagging behind the exuberant ones. Use a
      single set of rules for both, to make the script easier to maintain.
      The language understood by both tools is basic regular expression with
      some limitations, which are documented in a comment. To be able to store
      the rules in an array and easily iterate over it, the script requires
      bash now. In the exuberant case, the change fixes some false matches in
      <linux/page-flags.h> and also some too greedy matches in the arguments
      of the DECLARE_*/DEFINE_* macros. In the emacs case, several previously
      not working rules are matching now. Tested with these versions of the
      tools:
      
        Exuberant Ctags 5.8, Copyright (C) 1996-2009 Darren Hiebert
        etags (GNU Emacs 24.5)
      
      Signed-off-by: default avatarMichal Marek <mmarek@suse.com>
      93209d65
    • Michal Marek's avatar
      tags: Drop the _PE rule · a1ccdb63
      Michal Marek authored
      
      
      We are not indexing the userspace tools, so the rules only match some
      false positives in the kernel code.
      
      Signed-off-by: default avatarMichal Marek <mmarek@suse.com>
      a1ccdb63
    • Michal Marek's avatar
      tags: Do not try to index defconfigs · ab9ca615
      Michal Marek authored
      
      
      The defconfig files are in predictable locations, so there is no need to
      index them. Plus, the script was only looking for files named
      'defconfig', which only works on a few architectures nowadays.
      
      Signed-off-by: default avatarMichal Marek <mmarek@suse.com>
      ab9ca615
    • Michal Marek's avatar
      tags: Process Kconfig files in a single pass · a281b856
      Michal Marek authored
      
      
      Signed-off-by: default avatarMichal Marek <mmarek@suse.com>
      a281b856
    • Michal Marek's avatar
      tags: Fix erroneous pattern match in a comment · c26206f2
      Michal Marek authored
      
      
      Apparently, ctags applies the rules before deleting comments:
      
      ctags: Warning: include/linux/completion.h:22: null expansion of name pattern "\2"
      
      Work around this particular case by requiring the group to contain at
      least one character. Leave the other patters as they are, until a better
      solution is found.
      
      Signed-off-by: default avatarMichal Marek <mmarek@suse.com>
      c26206f2
    • Michal Marek's avatar
      tags: Treat header files as C code · d2fb5aed
      Michal Marek authored
      
      
      This allows to apply the same patters to both source and header files.
      The effect is mostly visible in the case of DECLARE_BITMAP, but there
      are small gains all over the place. There is also lots of random changes
      in the diff, I believe this is simply because there are still lots of
      unexpanded macros in the code and the C and C++ parsers fail and recover
      at different points. Also, qconf.h is parsed as C, but that's a
      negligible regression.
      
      Signed-off-by: default avatarMichal Marek <mmarek@suse.com>
      d2fb5aed
    • Vegard Nossum's avatar
      kconfig: return 'false' instead of 'no' in bool function · aab24a89
      Vegard Nossum authored
      
      
      menu_is_visible() is a bool function and should use boolean return
      values. "no" is a tristate value which happens to also have a value
      of 0, but we should nevertheless use the right symbol for it.
      
      This is a very minor cleanup with no semantic change.
      
      Fixes: 86e187ff ("kconfig: add an option to determine a menu's visibility")
      Cc: Arnaud Lacombe <lacombar@gmail.com>
      Cc: Mauro Carvalho Chehab <mchehab@redhat.com>
      Signed-off-by: default avatarVegard Nossum <vegard.nossum@oracle.com>
      Signed-off-by: default avatarMichal Marek <mmarek@suse.com>
      aab24a89
  10. Jan 04, 2016
  11. Dec 18, 2015
  12. Dec 16, 2015
  13. Dec 15, 2015
  14. Dec 14, 2015
  15. Dec 10, 2015
  16. Dec 09, 2015
    • Michal Marek's avatar
      genksyms: Handle string literals with spaces in reference files · a78f70e8
      Michal Marek authored
      
      
      The reference files use spaces to separate tokens, however, we must
      preserve spaces inside string literals. Currently the only case in the
      tree is struct edac_raw_error_desc in <linux/edac.h>:
      
      $ KBUILD_SYMTYPES=1 make -s drivers/edac/amd64_edac.symtypes
      $ mv drivers/edac/amd64_edac.{symtypes,symref}
      $ KBUILD_SYMTYPES=1 make -s drivers/edac/amd64_edac.symtypes
      drivers/edac/amd64_edac.c:527: warning: amd64_get_dram_hole_info: modversion changed because of changes in struct edac_raw_error_desc
      
      Signed-off-by: default avatarMichal Marek <mmarek@suse.com>
      a78f70e8
  17. Dec 08, 2015
    • Lorenzo Colitti's avatar
      arch: um: fix error when linking vmlinux. · fb1770aa
      Lorenzo Colitti authored
      
      
      On gcc Ubuntu 4.8.4-2ubuntu1~14.04, linking vmlinux fails with:
      
      arch/um/os-Linux/built-in.o: In function `os_timer_create':
      /android/kernel/android/arch/um/os-Linux/time.c:51: undefined reference to `timer_create'
      arch/um/os-Linux/built-in.o: In function `os_timer_set_interval':
      /android/kernel/android/arch/um/os-Linux/time.c:84: undefined reference to `timer_settime'
      arch/um/os-Linux/built-in.o: In function `os_timer_remain':
      /android/kernel/android/arch/um/os-Linux/time.c:109: undefined reference to `timer_gettime'
      arch/um/os-Linux/built-in.o: In function `os_timer_one_shot':
      /android/kernel/android/arch/um/os-Linux/time.c:132: undefined reference to `timer_settime'
      arch/um/os-Linux/built-in.o: In function `os_timer_disable':
      /android/kernel/android/arch/um/os-Linux/time.c:145: undefined reference to `timer_settime'
      
      This is because -lrt appears in the generated link commandline
      after arch/um/os-Linux/built-in.o. Fix this by removing -lrt from
      arch/um/Makefile and adding it to the UM-specific section of
      scripts/link-vmlinux.sh.
      
      Signed-off-by: default avatarLorenzo Colitti <lorenzo@google.com>
      Signed-off-by: default avatarRichard Weinberger <richard@nod.at>
      fb1770aa
  18. Dec 07, 2015
  19. Nov 25, 2015
    • Michal Marek's avatar
      kbuild: Allow to specify composite modules with modname-m · cf4f2193
      Michal Marek authored
      
      
      This allows to write
      
        drm-$(CONFIG_AGP) += drm_agpsupport.o
      
      without having to handle CONFIG_AGP=y vs. CONFIG_AGP=m. Only support
      this syntax for modules, since built-in code depending on something
      modular cannot work and init/Makefile actually relies on the current
      semantics. There are a few drivers which adapted to the current
      semantics out of necessity; these are fixed to also work when the
      respective subsystem is modular.
      
      Acked-by: Peter Chen <peter.chen@freescale.com> [chipidea]
      Signed-off-by: default avatarMichal Marek <mmarek@suse.com>
      cf4f2193
  20. Nov 24, 2015
    • Riku Voipio's avatar
      package Makefile: fix perf-tar targets when outdir is set · 4b63f603
      Riku Voipio authored
      
      
      building with $srctree != $objtree, perf-tar-* targets fail
      to read the MANIFEST file and add the PERF-VERSION-FILE needed
      by out-of-tree builds. The build errors and an incorrect tar is created:
      
      $ make O=build-x86 perf-targz-src-pkg
        TAR
      cat: ../tools/perf/MANIFEST: No such file or directory
      tar: perf-4.1.0-rc8/PERF-VERSION-FILE: Cannot stat: No such file or
      dir..
      tar: Exiting with failure status due to previous errors
      
      Kbuild sets objtree to "." and srctree to ".." The command to output
      MANIFEST becomes:
      
         $(cd ..; echo $(cat ../tools/perf/MANIFEST))
      
      Without MANIFEST, the entire kernel source tree is added to the perf
      source tarball. The *correct* fix is to keep the cd and remove srctree
      from cat command line since MANIFEST has wildcards that fail to expand
      working directory isn't srctree.
      
      Second, PERF-VERSION-FILE gets not added, because in-tree build path is
      hardcoded to Makefile:
      
         util/PERF-VERSION-GEN ../../$(perf-tar)/ 2>/dev/null)
      
      The PERF-VERSION-GEN needs to be run from tools/perf directory,
      and the output directory needs to be changed from relative to
      to absolute. This can be achieved using the $(CURDIR) variable.
      
      Also remove the error redirect to /dev/null which hid the error.
      
      Signed-off-by: default avatarRiku Voipio <riku.voipio@linaro.org>
      Signed-off-by: default avatarMichal Marek <mmarek@suse.com>
      4b63f603
  21. Nov 20, 2015
    • Conchúr Navid's avatar
      kernel-doc: Fix parsing of DECLARE_BITMAP in struct · b22b5a9e
      Conchúr Navid authored
      
      
      Some documented structures in the kernel use DECLARE_BITMAP to create
      arrays of unsigned longs to store information using the bitmap functions.
      These have to be replaced with a parsable version for kernel-doc.
      
      For example a simple input like
      
          /**
           * struct something - some test
           * @members: active members
           */
          struct something {
          	DECLARE_BITMAP(members, MAX_MEMBERS);
          };
      
      resulted in parsing warnings like
      
          warning: No description found for parameter 'MAX_MEMBERS)'
          warning: Excess struct/union/enum/typedef member 'members' description in 'something'
      
      Signed-off-by: default avatarConchúr Navid <conchur@web.de>
      Signed-off-by: default avatarJonathan Corbet <corbet@lwn.net>
      b22b5a9e
    • Conchúr Navid's avatar
      kernel-doc: Strip #ifdef/#endif in enums · 4468e21e
      Conchúr Navid authored
      
      
      Some enumerations in the kernel headers use #ifdef to reduce their size
      based on the the configuration. These lines have to be stripped to avoid
      parsing problems.
      
      For example a simple input like
      
          /**
           * enum flags - test flags
           * @flag1: first flag
           * @flag2: second flag
           */
          enum flags {
          	flag1 = BIT(0),
          #ifdef SECOND_FLAG
          	flag2 = BIT(1),
          #endif
          };
      
      resulted in parsing warnings like
      
          warning: Enum value '#ifdef SECOND_FLAG;flag2 = BIT(1)' not described in enum 'flags'
          warning: Enum value '#endif;' not described in enum 'flags'
      
      Signed-off-by: default avatarConchúr Navid <conchur@web.de>
      Signed-off-by: default avatarJonathan Corbet <corbet@lwn.net>
      4468e21e
Loading