1. 17 6月, 2009 1 次提交
  2. 29 5月, 2009 1 次提交
  3. 21 10月, 2008 1 次提交
  4. 18 6月, 2008 1 次提交
  5. 30 1月, 2008 4 次提交
    • A
      x86: arch/x86/kernel/cpu/mcheck/k7.c checkpatch fixes · 72713393
      Andrew Morton 提交于
      #88: FILE: arch/x86/kernel/cpu/mcheck/k7.c:34:
      +		rdmsr(MSR_IA32_MC0_STATUS+i*4,low, high);
       		                             ^
      
      ERROR: need space after that ',' (ctx:VxV)
      #142: FILE: arch/x86/kernel/cpu/mcheck/p4.c:170:
      +		rdmsr(MSR_IA32_MC0_STATUS+i*4,low, high);
       		                             ^
      
      ERROR: need space after that ',' (ctx:VxV)
      #180: FILE: arch/x86/kernel/cpu/mcheck/p6.c:34:
      +		rdmsr(MSR_IA32_MC0_STATUS+i*4,low, high);
       		                             ^
      
      total: 3 errors, 0 warnings, 114 lines checked
      
      Your patch has style problems, please review.  If any of these errors
      are false positives report them to the maintainer, see
      CHECKPATCH in MAINTAINERS.
      
      Please run checkpatch prior to sending patches
      
      Cc: Min Zhang <mzhang@mvista.com>
      Signed-off-by: NAndrew Morton <akpm@linux-foundation.org>
      Signed-off-by: NIngo Molnar <mingo@elte.hu>
      Signed-off-by: NThomas Gleixner <tglx@linutronix.de>
      72713393
    • A
      x86: arch/x86/kernel/cpu/mcheck/ checkpatch fixes · b912a1c7
      Andrew Morton 提交于
      #40: FILE: arch/x86/kernel/cpu/mcheck/k7.c:46:
      +				snprintf (misc, 20, "[%08x%08x]", ahigh, alow);
      
      WARNING: line over 80 characters
      #45: FILE: arch/x86/kernel/cpu/mcheck/k7.c:50:
      +				snprintf (addr, 24, " at %08x%08x", ahigh, alow);
      
      WARNING: no space between function name and open parenthesis '('
      #45: FILE: arch/x86/kernel/cpu/mcheck/k7.c:50:
      +				snprintf (addr, 24, " at %08x%08x", ahigh, alow);
      
      WARNING: no space between function name and open parenthesis '('
      #48: FILE: arch/x86/kernel/cpu/mcheck/k7.c:52:
      +			printk (KERN_EMERG "CPU %d: Bank %d: %08x%08x%s%s\n",
      
      WARNING: no space between function name and open parenthesis '('
      #65: FILE: arch/x86/kernel/cpu/mcheck/p4.c:161:
      +		printk (KERN_DEBUG "CPU %d: EIP: %08x EFLAGS: %08x\n"
      
      WARNING: no space between function name and open parenthesis '('
      #88: FILE: arch/x86/kernel/cpu/mcheck/p4.c:182:
      +				snprintf (misc, 20, "[%08x%08x]", ahigh, alow);
      
      WARNING: line over 80 characters
      #93: FILE: arch/x86/kernel/cpu/mcheck/p4.c:186:
      +				snprintf (addr, 24, " at %08x%08x", ahigh, alow);
      
      WARNING: no space between function name and open parenthesis '('
      #93: FILE: arch/x86/kernel/cpu/mcheck/p4.c:186:
      +				snprintf (addr, 24, " at %08x%08x", ahigh, alow);
      
      WARNING: no space between function name and open parenthesis '('
      #96: FILE: arch/x86/kernel/cpu/mcheck/p4.c:188:
      +			printk (KERN_EMERG "CPU %d: Bank %d: %08x%08x%s%s\n",
      
      WARNING: no space between function name and open parenthesis '('
      #120: FILE: arch/x86/kernel/cpu/mcheck/p6.c:46:
      +				snprintf (misc, 20, "[%08x%08x]", ahigh, alow);
      
      WARNING: line over 80 characters
      #125: FILE: arch/x86/kernel/cpu/mcheck/p6.c:50:
      +				snprintf (addr, 24, " at %08x%08x", ahigh, alow);
      
      WARNING: no space between function name and open parenthesis '('
      #125: FILE: arch/x86/kernel/cpu/mcheck/p6.c:50:
      +				snprintf (addr, 24, " at %08x%08x", ahigh, alow);
      
      WARNING: no space between function name and open parenthesis '('
      #128: FILE: arch/x86/kernel/cpu/mcheck/p6.c:52:
      +			printk (KERN_EMERG "CPU %d: Bank %d: %08x%08x%s%s\n",
      
      total: 0 errors, 13 warnings, 100 lines checked
      
      Your patch has style problems, please review.  If any of these errors
      are false positives report them to the maintainer, see
      CHECKPATCH in MAINTAINERS.
      
      Please run checkpatch prior to sending patches
      
      Cc: Min Zhang <mzhang@mvista.com>
      Signed-off-by: NAndrew Morton <akpm@linux-foundation.org>
      Signed-off-by: NIngo Molnar <mingo@elte.hu>
      Signed-off-by: NThomas Gleixner <tglx@linutronix.de>
      b912a1c7
    • M
      arch/x86/kernel/cpu/mcheck/p4.c: cleanups · 9e8b6d90
      Min Zhang 提交于
      SMP, the machine check exception dispatches all logical processors within a
      physical package to the machine-check exception handler, so the printk
      within each handler outputs concurrently and makes the output unreadable.
      Refer to Intel system programming guide Part 1 Section 7.8.5
      http://developer.intel.com/design/processor/manuals/253668.pdfSigned-off-by: NMin Zhang <mzhang@mvista.com>
      Signed-off-by: NAndrew Morton <akpm@linux-foundation.org>
      Signed-off-by: NIngo Molnar <mingo@elte.hu>
      Signed-off-by: NThomas Gleixner <tglx@linutronix.de>
      9e8b6d90
    • H
      x86: remove all definitions with fastcall · 75604d7f
      Harvey Harrison 提交于
      fastcall is always defined to be empty, remove it from arch/x86
      Signed-off-by: NHarvey Harrison <harvey.harrison@gmail.com>
      Signed-off-by: NIngo Molnar <mingo@elte.hu>
      Signed-off-by: NThomas Gleixner <tglx@linutronix.de>
      75604d7f
  6. 11 10月, 2007 1 次提交
  7. 22 5月, 2007 1 次提交
  8. 03 5月, 2007 2 次提交
  9. 01 7月, 2006 1 次提交
  10. 07 11月, 2005 1 次提交
  11. 27 9月, 2005 1 次提交
  12. 26 6月, 2005 1 次提交
  13. 17 4月, 2005 1 次提交
    • L
      Linux-2.6.12-rc2 · 1da177e4
      Linus Torvalds 提交于
      Initial git repository build. I'm not bothering with the full history,
      even though we have it. We can create a separate "historical" git
      archive of that later if we want to, and in the meantime it's about
      3.2GB when imported into git - space that would just make the early
      git days unnecessarily complicated, when we don't have a lot of good
      infrastructure for it.
      
      Let it rip!
      1da177e4