1. 12 Apr, 2004 1 commit
  2. 29 Mar, 2004 1 commit
    • Keith M. Wesolowski's avatar
      [SPARC32]: Update module linking for symbols starting with "." · 2ec523a3
      Keith M. Wesolowski authored
      Rusty did not like the __dot_sym approach and suggested instead:
      
      1) make rem, urem, mul, umul, div and udiv aliases to .rem, .urem etc:
      
         extern int rem(int, int) __attribute__((weak,alias(".rem")));
      
      2) EXPORT_SYMBOL(rem) etc.
      3) Check genksyms recognises that prototype (it should).
      4) Copy "dedotify" from ppc64 to handle them on load.
      
      The only real downside is the risk that someone else will export
      those names, but I think that's pretty unlikely.
      2ec523a3
  3. 22 Mar, 2004 2 commits
  4. 18 Mar, 2004 5 commits
    • Andrew Morton's avatar
      [PATCH] config: choice fix · 5a87d187
      Andrew Morton authored
      From: Roman Zippel <zippel@linux-m68k.org>
      
      When a boolean choice value has a dependency of 'm' it can be shortly
      treated as a tristate symbol.  This fixes this and also add a small
      optimization to precompute the value of the module symbol instead of
      checking it all the time.
      5a87d187
    • Andrew Morton's avatar
      [PATCH] config: persistent qconf configuration · 6fa4a50c
      Andrew Morton authored
      From: Roman Zippel <zippel@linux-m68k.org>
      
      This patch is by Andreas Fester <Andreas.Fester@gmx.de> and saves and
      restores various runtime options of qconf.
      6fa4a50c
    • Andrew Morton's avatar
      [PATCH] config: disable debug prints · a72c5f31
      Andrew Morton authored
      From: Roman Zippel <zippel@linux-m68k.org>
      
      This disables some debug prints, which are more confusing than helpful for
      normal users.
      a72c5f31
    • Andrew Morton's avatar
      [PATCH] kconfig: don't rename target dir when saving config · 86b5b992
      Andrew Morton authored
      From: Roman Zippel <zippel@linux-m68k.org>
      
      conf_write() now checks the target path whether it's a directory, so it
      saves the config in the directory instead of renaming it.
      86b5b992
    • Andrew Morton's avatar
      [PATCH] kconfig: fix xconfig on /lib64 properly · dfc78642
      Andrew Morton authored
      From: Roman Zippel <zippel@linux-m68k.org>
      
      The correct link path is needed at config time to find the correct library,
      so let's ask gcc for the real path.
      dfc78642
  5. 15 Mar, 2004 3 commits
    • Andrew Morton's avatar
      [PATCH] kbuild: fix modpost when used with O= · 4a116813
      Andrew Morton authored
      From: Sam Ravnborg <sam@ravnborg.org>
      
      modpost or to be more specific sumversion.c was not behaving correct when
      used with O= and MODULE_VERSION was used.  Previously it failed to use
      local .h when calculation the md-sum in case of a O= build.
      
      The following patch introduces the following:
      
      - A generic get_next_line()
      
      - Check that the topmost part of the directory matches
      
      - Using strrch when checking for file with suffix .o
      
      - Use NOFAIL for allocations in sumversion
      
      - Avoid memory leak in new_module
      
      The generic get_next_line will pay off when Andreas implmentation of
      storing symbol addresses in a seperate file is introduced.
      4a116813
    • Andrew Morton's avatar
      [PATCH] Fix scripts/ver_linux · 332c8c22
      Andrew Morton authored
      From: Trivial Patch Monkey <trivial@rustcorp.com.au>
      
      From:  Thomas Molina <tmolina@cablespeed.com>
      
      ver_linux hasn't displayed binutils version right for some time.  This patch
      corrects that and preserves the old behaviour as well, as suggested by Rusty.
      332c8c22
    • Andrew Morton's avatar
      [PATCH] Fix early parallel make failures · 952a0ae3
      Andrew Morton authored
      From: Sam Ravnborg <sam@ravnborg.org>
      
      Ingo said:
      
        Starting at around 2.6.4-rc2-mm1, I keep seeing 'scripts/fixdep: Text
        file busy' messages when doing a -j10 bzImage build - which seems to
        suggest that by the time fixdep is used by the build system it's not
        built yet.
      
      Sam said:
      
      I was pretty sure it was something I had caused, so I gave it a spin.  What
      actually happened was that we tried to build the target 'silentoldconfig'
      in parrallel with 'scripts'.  Since 'silentoldconfig' started a new make
      and then the config target needed 'scripts' we saw two parallel runs.
      
      The way I decided to fix it was to split scripts/ in two parts.  The first
      part is now the very basic stuff - moved to scripts/basic/.  The second
      part is dependent on kernel config etc.  and kept in scripts/
      
      In the 2.7 timeframe i will redo this initial stuff - it's becoming too
      messy for anyone to understand today.
      
      
      Description:
      
      Fix dependencies in early phases of kernel build.  This solves a few
      problems nively: modpost is no longer rebuild twicewhen reaching the
      'target' state 'make -j10' now works nicely again
      
      The patch is rather large due to the following file moves:
      mkdir scripts/basic
      mv scripts/fixdep.c        scripts/basic
      mv scripts/split-include.c scripts/basic
      mv scripts/docproc.c       scripts/basic
      952a0ae3
  6. 12 Mar, 2004 1 commit
    • Andrew Morton's avatar
      [PATCH] kbuild: fix usage with directories containing '.o' · 2e83d38a
      Andrew Morton authored
      From: Sam Ravnborg <sam@ravnborg.org>
      
      From: Daniel Mack <daniel@zonque.org>, me
      
      modpost unconditionally searched for ".o" assuming this is always the
      suffix of the module.  This fails in two cases:
      
      a) when building external modules where any directory include ".o" in
         the name.  One example is a directory named: .../cvs.alsa.org/...
      
      b) when someone names a kernel directory so it contains ".o".  One
         example is drivers/scsi/aic.ok/...
      
      case b) was triggered by renaming the directory for aic7xxx, and modifying
      Makefile and Kconfig.  This caused make modules to fail.
      2e83d38a
  7. 01 Mar, 2004 1 commit
    • Andrew Morton's avatar
      [PATCH] scripts/modpost warning · b7d83b8c
      Andrew Morton authored
      From: Geert Uytterhoeven <Geert.Uytterhoeven@sonycom.com>
      
      I need the following patch to kill a warning (__endian() may be unused)
      when cross-compiling m68k kernels on an ia32 box.
      b7d83b8c
  8. 26 Feb, 2004 1 commit
    • Andrew Morton's avatar
      [PATCH] Add a MODULE_VERSION macro · ccec1be4
      Andrew Morton authored
      From: Rusty Russell <rusty@au1.ibm.com>
      
      The way it works is that the .mod file contains the name of the module (as
      before), but succeeding lines are the constituent parts (assumed to be .c
      files, which usually works: if they use MODULE_VERSION in a file for which
      this isn't true we'll get a warning).
      
      As we postprocess modules, we look in the .modinfo section for a
      "version=", which is placed by the MODULE_VERSION() macro.  This will be of
      form "version=<macroarg>" "\0" [24 chars] "\0".  The 24 chars are replaced
      by the md4 sum of the .c files and any files they #include using '#include
      "file"' which are found in the current directory.  Whitespace is collapsed
      outside strings, and comments are ignored for purposes of the sum.
      
      The result is a .modinfo entry such as
      
      	version=1.16ac-rustytest B13E9451C4CA3B89577DEFF
      
      
      
      At the kernel summit, various people asked for a MODULE_VERSION macro to
      store module strings (for later access through sysfs).  A simple md4 is
      needed to identify changes in modules which, inevitably, do not update the
      version.  It skips whitespace and comments, and includes #includes which
      are in the same dir.
      
      The module versions should be set according to this definition, based on
      the RPM one, or CVS Revision tags.  Violators will be shot.
      
       [<epoch>`:']<version>[`-'<extraversion>]
       <epoch>: A (small) unsigned integer which allows you to start versions
                anew. If not mentioned, it's zero.  eg. "2:1.0" is after
           "1:2.0".
       <version>: The <version> may contain only alphanumerics.
       <extraversion>: Like <version>, but inserted for local
                customizations, eg "rh3" or "rusty1".
      
      Comparison of two versions (assuming same epoch):
      
      Split each into all-digit and all-alphabetical parts.  Compare each one one
      at a time: digit parts numerically, alphabetical in ASCII order.  So 0.10
      comes after 0.9.
      ccec1be4
  9. 24 Feb, 2004 1 commit
  10. 19 Feb, 2004 1 commit
    • Andrew Morton's avatar
      [PATCH] Add CONFIG for -mregparm=3 · e852f318
      Andrew Morton authored
      From: Andi Kleen <ak@muc.de>, me.
      
      Using -mregparm=3 shrinks the kernel further:
      
      (compiled with gcc 3.4, without -funit-at-a-time, using the later and
      together with -Os shrinks .text even more, making over 700KB difference)
      
      4129346  708629  207240 5045215  4cfbdf vmlinux
      3892905  708629  207240 4808774  496046 vmlinux-regparm
      
      This one helps even more, >236KB .text difference. Clearly worth
      the effort.
      
      This patch adds an option to use -mregparm=3 while compiling the kernel.  I
      did an LTP run and it showed no additional failures over an non regparm
      kernel.
      
      According to some gcc developers it should be safe to use in all gccs that
      are still supports (2.95 and up)
      
      I didn't make it the default because it will break all binary only modules
      (although they can be fixed by adding a wrapper that calls them with
      "asmlinkage").  Actually it may be a good idea to make this default with
      2.7.1 or somesuch.
      
      We add new kbuild infrastructure: the command
      
      	scripts/gcc-version.sh $(CC)
      
      will print out the version of gcc in a canonical 4-digit form suitable for
      performing numerical tests against.
      DESC
      arch/i386/Makefile,scripts/gcc-version.sh,Makefile small fixes
      EDESC
      From: Serge Belyshev <33554432@mtu-net.ru>
      
      arch/i386/Makefile:
      *  omitted $(KBUILD_SRC)/ in script call.
      
      scripts/gcc-version.sh:
      *  GNU tail no longer supports 'tail -1' syntax.
      
      We should consider adding -fweb option:
      
         vanilla:
         $ size vmlinux
            text    data     bss     dec     hex filename
         3056270  526780  386056 3969106  3c9052 vmlinux
      
         with -fweb:
         $ size vmlinux
            text    data     bss     dec     hex filename
         3049523  526780  386056 3962359  3c75f7 vmlinux
      
         Also note 0.1 ... 1.0% speedup in various benchmarks.
         This option is not enabled by default at -O2 because it
         (like -fomit-frame-pointer) makes debugging impossible.
      e852f318
  11. 18 Feb, 2004 2 commits
    • Andrew Morton's avatar
      [PATCH] menuconfig: fix the check for ncurses-devel · 9d02772a
      Andrew Morton authored
      From: Sam Ravnborg <sam@ravnborg.org>
      
      Corrected check for missing ncurses-devel when executing "make menuconfig".
      Now tell user to install 'ncurses-devel' if check fails.
      9d02772a
    • Andrew Morton's avatar
      [PATCH] Fix make rpm when using RH9 or Fedora.. · 4550fd73
      Andrew Morton authored
      From: Thomas Davis <tadavis@lbl.gov>
      
      Doing a 'make rpm' will fail with the current RH9/Fedora RPM macros.
      
      The failure message is this:
      
      Processing files: kernel-debuginfo-2.6.3rc1mm1-12
      error: Could not open %files file /usr/src/redhat/BUILD/kernel-2.6.3rc1mm1/debugfiles.list: No such file or directory
      
      The fix is this patch:
      4550fd73
  12. 17 Feb, 2004 1 commit
    • Roman Zippel's avatar
      [PATCH] Avoid bogus warning about recursive dependencies · 1fd850c4
      Roman Zippel authored
      This allows us to do something like
      
      	config FB_RADEON
      		select I2C_ALGOBIT if FB_RADEON_I2C
      
      where FB_RADEON_I2C itself depends on FB_RADEON without getting a bogus
      warning about recursive dependencies.
      
      This matters because the select takes the default minimum dependancy
      from the parent menu, so we want to do this under FB_RADEON rather than
      under FB_RADEON_I2C (so that the I2C_ALGOBIT config depends properly
      on the state of FB_RADEON)
      1fd850c4
  13. 08 Feb, 2004 1 commit
  14. 06 Feb, 2004 1 commit
  15. 04 Feb, 2004 4 commits
    • Andrew Morton's avatar
      [PATCH] Lindent fixed to match reality · 9a76f566
      Andrew Morton authored
      From: Matt Mackall <mpm@selenic.com>
      
      I've been fiddling with cleaning up some old code here and suggest the
      following to make Lindent match actual practice more closely. This does:
      
      a) (no -psl)
      
      void *foo(void)
      {
      
       instead of
      
      void *
      foo(void) {
      
      b) (no -bs) "sizeof(foo)" rather than "sizeof (foo)"
      
      c) (-ncs) "(void *)foo" rather than "(void *) foo"
      9a76f566
    • Andrew Morton's avatar
      [PATCH] fix menuconfig choice item help display · ccd3fed5
      Andrew Morton authored
      From: Bjorn Helgaas <bjorn.helgaas@hp.com>
            Anders Gustafsson <andersg@0x63.nu>
            Roman Zippel <zippel@linux-m68k.org>
      
      This patch fixes menuconfig so it can display help text for individual
      choice group config entries.
      
      Previously it would only display the help text attached to the "choice"
      item.  There was no way to display the help attached to individual config
      entries inside the choice group.  Typically, the "choice" item has no help
      text, and all the useful help is attached to the individual entries, so
      this was a bit of a problem.
      ccd3fed5
    • Andrew Morton's avatar
      [PATCH] Kconfig: use select statements · a26fd06e
      Andrew Morton authored
      From: Sam Ravnborg <sam@ravnborg.org>
      
      - Use keyword select in relevant warning
      
      - Include more information in warnings related to select
      
      - Move part of error-checking to a sepearate function
      
      - Added helpers used when issuing warnings - makes code simpler
      
      - Wrapped most edited lines at column 80
      a26fd06e
    • Andrew Morton's avatar
      [PATCH] kbuild: Unmangle include options for gcc · 9f61b232
      Andrew Morton authored
      From: Sam Ravnborg <sam@ravnborg.org>
      
      When utilising the make O=...  option the include options for gcc were
      mangled even when absolute paths was used.  Also remove duplication of
      CPPFLAGS.  They were assigned twice.  [It is still possible for
      architectures to modify CPPFLAGS].
      
      This patch allows xconfig to be build with make O=...  xconfig.It will also
      help development of external modules with absolute paths for their -I
      options.
      
      Note: As a side effect a full recompile of the kernel takes place due to
      changes in number of gcc options.
      9f61b232
  16. 19 Jan, 2004 2 commits
    • Andrew Morton's avatar
      [PATCH] make gcc 3.4 compilation work · fd2ac4b2
      Andrew Morton authored
      From: David Mosberger <davidm@napali.hpl.hp.com>
      
      With gcc-3.4 we need "attribute((used))" declarations to get "make
      modules_install" to work.
      
      Otherwise these sections get dropped from the final image (I assume).
      fd2ac4b2
    • Andrew Morton's avatar
      [PATCH] kconfig: fix menuconfig exit code · 6dd6551e
      Andrew Morton authored
      From: Sam Ravnborg <sam@ravnborg.org>
      
      If the user decides to not write the config file out, menuconfig exits with
      a non-zero code.  This causes make to allege that there was an error.
      6dd6551e
  17. 06 Jan, 2004 5 commits
  18. 30 Dec, 2003 3 commits
    • Andrew Morton's avatar
      [PATCH] make gconfig warning removal · 3116a3ac
      Andrew Morton authored
      From: "Maciej Soltysiak" <solt@dns.toxicfilms.tv>
      
      make gconfig causes this:
      
      scripts/kconfig/gconf.c: In function `on_treeview1_button_press_event':
      scripts/kconfig/gconf.c:1175: warning: passing arg 1 of
      `gtk_widget_grab_focus' from incompatible pointer type
      3116a3ac
    • Andrew Morton's avatar
      [PATCH] fix non-ia32 `make rpm' · 1e9c0d3b
      Andrew Morton authored
      From: "Zhu, Yi" <yi.zhu@intel.com>
      
      The "make rpm" rule in top Makefile isn't aware of the enviorment ARCH.  For
      example, people issue "make ARCH=ia64" to compile the ia64 kernel on i386
      platform for cross compilation.  This works pretty well now.  But if one uses
      "make rpm ARCH=ia64", it will fail.  Because current rpm rule in Makefile and
      mkspec are not aware of ARCH.
      1e9c0d3b
    • Matthew Wilcox's avatar
      [PATCH] fix make config help · ea114bac
      Matthew Wilcox authored
      fgets puts a \n in the buffer before the terminating \0.
      ea114bac
  19. 29 Dec, 2003 1 commit
  20. 10 Dec, 2003 1 commit
    • Andrey Borzenkov's avatar
      [PATCH] USB: prevent catch-all USB aliases in modules.alias · 0d558317
      Andrey Borzenkov authored
      visor.c defines one empty slot in USB ids table that can be filled in at
      runtime using module parameters. file2alias generates catch-all alias for it:
      
      alias usb:v*p*dl*dh*dc*dsc*dp*ic*isc*ip* visor
      
      patch adds the same sanity check as in depmod to scripts/file2alias.
      0d558317
  21. 16 Oct, 2003 1 commit
    • Andrew Morton's avatar
      [PATCH] Correct case sensitivity in make mandocs · ab642d48
      Andrew Morton authored
      From: Michael Still <mikal@stillhq.com>
      
      The attached patch corrects case sensitivity in the mandocs make target.
      XML is case insensitive, and a bunch of the kernel-doc assumes this.  The
      makeman and splitman scripts incorrectly cared about case.  This patch also
      updates the Docbook DTD version which the script generates.
      ab642d48
  22. 05 Oct, 2003 1 commit