1. 09 1月, 2006 2 次提交
    • A
      [PATCH] ppc32: cpm_uart: fix xchar sending · 03929c76
      Aristeu Sergio Rozanski Filho 提交于
      while using SCC as uart and as serial console at same time I got this:
      
      [  138.214258] Oops: kernel access of bad area, sig: 11 [#1]
      [  138.218832] PREEMPT
      [  138.221021] NIP: C0105C48 LR: C0105E60 SP: C03D5D10 REGS: c03d5c60 TRAP: 0300    Not tainted
      [  138.229280] MSR: 00009032 EE: 1 PR: 0 FP: 0 ME: 1 IR/DR: 11
      [  138.234713] DAR: 00000000, DSISR: C0000000
      [  138.238745] TASK = c0349420[693] 'sh' THREAD: c03d4000
      [  138.243754] Last syscall: 6
      [  138.246402] GPR00: FEFFFFFF C03D5D10 C0349420 C01FB094 00000011 00000000 C1ECFBBC C01F24B0
      [  138.254602] GPR08: FF002820 00000000 FF0028C0 00000000 19133615 A0CBCD5E 02000300 00000000
      [  138.262804] GPR16: 00000000 01FF9E4C 00000000 7FA9A770 00000000 00000000 1003E2A8 00000000
      [  138.271003] GPR24: 100562F4 7F9B6EF4 C0210000 C02A5338 C01FB094 00000000 C01FB094 C1F14574
      [  138.279376] NIP [c0105c48] cpm_uart_tx_pump+0x4c/0x22c
      [  138.284419] LR [c0105e60] cpm_uart_start_tx+0x38/0xb0
      [  138.289361] Call trace:
      [  138.291762]  [c0105e60] cpm_uart_start_tx+0x38/0xb0
      [  138.296547]  [c010277c] uart_send_xchar+0x88/0x118
      [  138.301244]  [c01029a0] uart_unthrottle+0x6c/0x138
      [  138.305942]  [c00ece10] check_unthrottle+0x60/0x64
      [  138.310641]  [c00ecec4] reset_buffer_flags+0xb0/0x138
      [  138.315595]  [c00ecf64] n_tty_flush_buffer+0x18/0x78
      [  138.320465]  [c00e81b0] tty_ldisc_flush+0x64/0x7c
      [  138.325078]  [c010410c] uart_close+0xf0/0x2c8
      [  138.329348]  [c00e9c48] release_dev+0x724/0x8d4
      [  138.333790]  [c00e9e18] tty_release+0x20/0x3c
      [  138.338061]  [c006e544] __fput+0x178/0x1e0
      [  138.342076]  [c006c43c] filp_close+0x54/0xac
      [  138.346261]  [c0002d90] ret_from_syscall+0x0/0x44
      [  138.352386] note: sh[693] exited with preempt_count 2
      
      a easy way to reproduce it is log into the system using ssh and do:
      	cat >/dev/ttyCPM0
      then, switch to minicom and write some stuff on it back to ssh, a control C
      produce the oops
      
      this happens because uart_close calls uart_shutdown which frees xmit.buf,
      currently used by xchar sending in cpm_uart_tx_pump(), which seems wrong.
      
      the attached patch fixes the oops and also fixes xchar sending.
      Signed-off-by: NPaul Mackerras <paulus@samba.org>
      03929c76
    • B
      [PATCH] powerpc: Remove device_node addrs/n_addr · cc5d0189
      Benjamin Herrenschmidt 提交于
      The pre-parsed addrs/n_addrs fields in struct device_node are finally
      gone. Remove the dodgy heuristics that did that parsing at boot and
      remove the fields themselves since we now have a good replacement with
      the new OF parsing code. This patch also fixes a bunch of drivers to use
      the new code instead, so that at least pmac32, pseries, iseries and g5
      defconfigs build.
      Signed-off-by: NBenjamin Herrenschmidt <benh@kernel.crashing.org>
      Signed-off-by: NPaul Mackerras <paulus@samba.org>
      cc5d0189
  2. 08 1月, 2006 3 次提交
  3. 07 1月, 2006 3 次提交
  4. 06 1月, 2006 4 次提交
  5. 05 1月, 2006 7 次提交
  6. 04 1月, 2006 1 次提交
  7. 30 12月, 2005 1 次提交
  8. 27 12月, 2005 1 次提交
  9. 23 12月, 2005 1 次提交
  10. 08 12月, 2005 1 次提交
  11. 29 11月, 2005 1 次提交
  12. 22 11月, 2005 1 次提交
  13. 19 11月, 2005 3 次提交
  14. 18 11月, 2005 2 次提交
    • R
      [PARISC] Define port->timeout to fix a long msleep in mux.c · a137ce85
      Ryan Bradetich 提交于
      This commit is in response to a bug reported by Vesa on the irc channel
      a couple of weeks ago.
      
      The bug was that the console would apparently hang (not return) while
      using the mux console.
      
      The root cause of this bug is that bash (with readline support) makes a
      call to the tcsetattr() glibc function with the argument TCSADRAIN.  This
      causes the serial core in the kernel use the uart_wait_until_sent() to be
      called. This function verifies the mux transmit queue is empty or calls the
      msleep_interruptable() with a calculated timeout value that is dependant
      upon the port->timeout variable.
      
      The real problem here is that the port->timeout was not defined so it
      was defaulted to 0 and the timeout calculation performs the following
      calculation:
      
      char_time = (port->timeout - HZ/50) / port->fifosize;
      
      where char_time is an unsigned long. Since the serial Mux does not use
      interrupts, the msleep_interruptable() function waits until the timeout
      has been reached ... and when the port->timeout < HZ/50 this timeout will
      be a long time. (I have validated that the console will eventually
      return ... but it takes quite a while for this to happen).
      
      This patch simply sets the port->timeout on the Mux to HZ/50 to avoid
      this long timeout period.
      Signed-off-by: NRyan Bradetich <rbrad@parisc-linux.org>
      Signed-off-by: NKyle McMartin <kyle@parisc-linux.org>
      a137ce85
    • R
      [PARISC] Compile fixups for serial/mux.c · 92495c0e
      Ryan Bradetich 提交于
      This patch does the following:
      * Fixes compiler warnings.
      * Replaces a __raw_readl call with the existing macro.
      Signed-off-by: NRyan Bradetich <rbrad@parisc-linux.org>
      Signed-off-by: NKyle McMartin <kyle@parisc-linux.org>
      92495c0e
  15. 14 11月, 2005 2 次提交
  16. 13 11月, 2005 7 次提交