1. 02 Apr, 2003 6 commits
    • Kai Germaschewski's avatar
      Hand merge · 5279bb94
      Kai Germaschewski authored
      5279bb94
    • Kai Germaschewski's avatar
      kbuild: Fix dependencies for generated .mod.o files · 46cfe05f
      Kai Germaschewski authored
      For some reason which I cannot remember, we didn't use the automatic
      dependency generation for the generated .mod.[co] files. However, we do
      of course need dependency information for those, too, they need to be updated
      when e.g. the kernel version number changes.
      46cfe05f
    • Kai Germaschewski's avatar
      modules: Fix exporting symbols from modules · 494c779a
      Kai Germaschewski authored
      This patch fixes two issues:
      o The CONFIG_MODVERSIONING=y case broke at compile time since some
        functions were not updated with the latest module changes
      o Exporting symbols from modules stopped working due to confusion of
        mod->num_syms and mod->num_ksyms. Rename mod->num_ksyms to mod->num_syms,
        which is more logical since the associated array is called ->syms, and
        for the kallsyms member use "num_symtab", since the associated array is
        ->symtab.
      494c779a
    • Kai Germaschewski's avatar
      b35e3015
    • Linus Torvalds's avatar
      Fix naming confusion: number of symbol kallsyms is "num_kallsyms", · 797886bf
      Linus Torvalds authored
      while number of symbols is "num_syms". It used to be "num_syms" and
      "num_ksyms" respectively (ie the "k" was the wrong way around).
      
      The previous naming was not just confusing, it had caused one actual
      bug (ie the normal symbol code had used "num_syms", which was wrong
      in the old confusing naming scheme).
      797886bf
    • John Levon's avatar
      [PATCH] Convert APIC to driver model · e193be86
      John Levon authored
      This is Mikael's version of Pavel's patch, fixed to let CONFIG_PM=n
      compile. It works for me on my 2-way using oprofile.
      e193be86
  2. 01 Apr, 2003 34 commits