Linux PARISC architecture development
 help / color / mirror / Atom feed
* [parisc-linux] [git patches] parisc changes for 2.6.18
@ 2006-06-25 23:31 Kyle McMartin
  2006-06-25 23:34 ` [parisc-linux] [PATCH 09/23] [PARISC] Remove unconditional #define PIC in syscall macros Kyle McMartin
                   ` (10 more replies)
  0 siblings, 11 replies; 12+ messages in thread
From: Kyle McMartin @ 2006-06-25 23:31 UTC (permalink / raw)
  To: torvalds, akpm; +Cc: parisc-linux

The following changes since commit f36f44de721db44b4c2944133c3c5c2e06f633f0:
  Linus Torvalds:
        Fix NFS2 compile error

are found in the git repository at:

  master.kernel.org:/pub/scm/linux/kernel/git/kyle/parisc-2.6.git

Carlos O'Donell:
      [PARISC] Use FIXUP_BRANCH_CLOBBER to asm clobber list
      [PARISC] Remove unconditional #define PIC in syscall macros

Grant Grundler:
      [PARISC] Fix gcc 4.1 warnings in sba_iommu.c

James Bottomley:
      [PARISC] Fix PCREL22F relocation problem for most modules
      [PARISC] Fix do_gettimeofday() hang

Kyle McMartin:
      [PARISC] Ensure all ldcw uses are ldcw,co on pa2.0
      [PARISC] Whitespace clean up in asm/pgtable.h
      [PARISC] Add asm/mckinley.h bus header
      [PARISC] Test ioc_needs_fdc variable instead of open coding
      [PARISC] Remove dead function pc_in_user_space
      [PARISC] Use MFIA in current_text_addr on pa2.0 processors
      [PARISC] Add is_compat_task() helper
      [PARISC] Remove unused macro fixup_branch in syscall.S
      [PARISC] Match show_cache_info with reality
      [PARISC] Ensure Space ID hashing is turned off
      [PARISC] OS_ID_LINUX == 0x0006
      [PARISC] Add os_id_to_string helper
      [PARISC] Refactor show_regs in traps.c

Thibaut Varene:
      [PARISC] PDC_CHASSIS is implemented on all machines
      [PARISC] Work around machines which do not support chassis warnings
      [PARISC] pdc_stable version 0.30
      [PARISC] Reduce data footprint in pdc_stable.c
      [PARISC] Update Thibaut Varene's CREDITS entry

 CREDITS                          |    4 -
 arch/parisc/kernel/cache.c       |   28 +++--
 arch/parisc/kernel/entry.S       |    6 +
 arch/parisc/kernel/firmware.c    |   46 +++++++-
 arch/parisc/kernel/module.c      |   63 +++++++++--
 arch/parisc/kernel/pdc_chassis.c |  109 ++++++++++++++-----
 arch/parisc/kernel/ptrace.c      |    8 +
 arch/parisc/kernel/real2.S       |    9 --
 arch/parisc/kernel/setup.c       |    5 +
 arch/parisc/kernel/signal.c      |   20 ++-
 arch/parisc/kernel/syscall.S     |   14 --
 arch/parisc/kernel/time.c        |   18 +++
 arch/parisc/kernel/traps.c       |   84 +++++++-------
 arch/parisc/kernel/unaligned.c   |   18 ++-
 drivers/parisc/Kconfig           |   33 ++++--
 drivers/parisc/pdc_stable.c      |  223 ++++++++++++++++++++++++++++++++++----
 drivers/parisc/sba_iommu.c       |   22 ++--
 include/asm-parisc/assembly.h    |    2 
 include/asm-parisc/compat.h      |   11 ++
 include/asm-parisc/mckinley.h    |    9 ++
 include/asm-parisc/pdc.h         |   22 +++-
 include/asm-parisc/pgtable.h     |    8 +
 include/asm-parisc/processor.h   |   14 +-
 include/asm-parisc/system.h      |   26 ++--
 include/asm-parisc/uaccess.h     |    9 +-
 include/asm-parisc/unistd.h      |    5 -
 26 files changed, 592 insertions(+), 224 deletions(-)
 create mode 100644 include/asm-parisc/mckinley.h
_______________________________________________
parisc-linux mailing list
parisc-linux@lists.parisc-linux.org
http://lists.parisc-linux.org/mailman/listinfo/parisc-linux

^ permalink raw reply	[flat|nested] 12+ messages in thread

end of thread, other threads:[~2006-06-25 23:34 UTC | newest]

Thread overview: 12+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2006-06-25 23:31 [parisc-linux] [git patches] parisc changes for 2.6.18 Kyle McMartin
2006-06-25 23:34 ` [parisc-linux] [PATCH 09/23] [PARISC] Remove unconditional #define PIC in syscall macros Kyle McMartin
2006-06-25 23:34 ` [parisc-linux] [PATCH 10/23] [PARISC] PDC_CHASSIS is implemented on all machines Kyle McMartin
2006-06-25 23:34 ` [parisc-linux] [PATCH 12/23] [PARISC] pdc_stable version 0.30 Kyle McMartin
2006-06-25 23:34 ` [parisc-linux] [PATCH 13/23] [PARISC] Reduce data footprint in pdc_stable.c Kyle McMartin
2006-06-25 23:34 ` [parisc-linux] [PATCH 15/23] [PARISC] Add is_compat_task() helper Kyle McMartin
2006-06-25 23:34 ` [parisc-linux] [PATCH 16/23] [PARISC] Remove unused macro fixup_branch in syscall.S Kyle McMartin
2006-06-25 23:34 ` [parisc-linux] [PATCH 17/23] [PARISC] Match show_cache_info with reality Kyle McMartin
2006-06-25 23:34 ` [parisc-linux] [PATCH 19/23] [PARISC] OS_ID_LINUX == 0x0006 Kyle McMartin
2006-06-25 23:34 ` [parisc-linux] [PATCH 20/23] [PARISC] Add os_id_to_string helper Kyle McMartin
2006-06-25 23:34 ` [parisc-linux] [PATCH 21/23] [PARISC] Refactor show_regs in traps.c Kyle McMartin
2006-06-25 23:34 ` [parisc-linux] [PATCH 22/23] [PARISC] Fix PCREL22F relocation problem for most modules Kyle McMartin

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox