* [PATCH] parisc: pass through '\t' to early (iodc) console
@ 2010-06-14 16:02 Kyle McMartin
2010-06-14 20:08 ` Helge Deller
0 siblings, 1 reply; 3+ messages in thread
From: Kyle McMartin @ 2010-06-14 16:02 UTC (permalink / raw)
To: linux-parisc
The firmware handles '\t' internally, so stop trying to emulate it
(which, incidentally, had a bug in it.)
Fixes a really weird hang at bootup in rcu_bootup_announce, which,
as far as I can tell, is the first printk in the core kernel to use
a tab as the first character.
Signed-off-by: Kyle McMartin <kyle@parisc-linux.org>
---
arch/parisc/kernel/firmware.c | 12 ++----------
1 files changed, 2 insertions(+), 10 deletions(-)
diff --git a/arch/parisc/kernel/firmware.c b/arch/parisc/kernel/firmware.c
index 4c247e0..df971fa 100644
--- a/arch/parisc/kernel/firmware.c
+++ b/arch/parisc/kernel/firmware.c
@@ -1123,7 +1123,6 @@ static char __attribute__((aligned(64))) iodc_dbuf[4096];
*/
int pdc_iodc_print(const unsigned char *str, unsigned count)
{
- static int posx; /* for simple TAB-Simulation... */
unsigned int i;
unsigned long flags;
@@ -1133,19 +1132,12 @@ int pdc_iodc_print(const unsigned char *str, unsigned count)
iodc_dbuf[i+0] = '\r';
iodc_dbuf[i+1] = '\n';
i += 2;
- posx = 0;
goto print;
- case '\t':
- while (posx & 7) {
- iodc_dbuf[i] = ' ';
- i++, posx++;
- }
- break;
case '\b': /* BS */
- posx -= 2;
+ i--; /* overwrite last */
default:
iodc_dbuf[i] = str[i];
- i++, posx++;
+ i++;
break;
}
}
--
1.7.0.1
^ permalink raw reply related [flat|nested] 3+ messages in thread* Re: [PATCH] parisc: pass through '\t' to early (iodc) console
2010-06-14 16:02 [PATCH] parisc: pass through '\t' to early (iodc) console Kyle McMartin
@ 2010-06-14 20:08 ` Helge Deller
0 siblings, 0 replies; 3+ messages in thread
From: Helge Deller @ 2010-06-14 20:08 UTC (permalink / raw)
To: Kyle McMartin; +Cc: linux-parisc
On 06/14/2010 06:02 PM, Kyle McMartin wrote:
> The firmware handles '\t' internally, so stop trying to emulate it
> (which, incidentally, had a bug in it.)
>
> Fixes a really weird hang at bootup in rcu_bootup_announce, which,
> as far as I can tell, is the first printk in the core kernel to use
> a tab as the first character.
>
> Signed-off-by: Kyle McMartin <kyle@parisc-linux.org>
Kernel boots now nicely.
Thanks Kyle!
Tested-by: Helge Deller <deller@gmx.de>
> ---
> arch/parisc/kernel/firmware.c | 12 ++----------
> 1 files changed, 2 insertions(+), 10 deletions(-)
>
> diff --git a/arch/parisc/kernel/firmware.c b/arch/parisc/kernel/firmware.c
> index 4c247e0..df971fa 100644
> --- a/arch/parisc/kernel/firmware.c
> +++ b/arch/parisc/kernel/firmware.c
> @@ -1123,7 +1123,6 @@ static char __attribute__((aligned(64))) iodc_dbuf[4096];
> */
> int pdc_iodc_print(const unsigned char *str, unsigned count)
> {
> - static int posx; /* for simple TAB-Simulation... */
> unsigned int i;
> unsigned long flags;
>
> @@ -1133,19 +1132,12 @@ int pdc_iodc_print(const unsigned char *str, unsigned count)
> iodc_dbuf[i+0] = '\r';
> iodc_dbuf[i+1] = '\n';
> i += 2;
> - posx = 0;
> goto print;
> - case '\t':
> - while (posx & 7) {
> - iodc_dbuf[i] = ' ';
> - i++, posx++;
> - }
> - break;
> case '\b': /* BS */
> - posx -= 2;
> + i--; /* overwrite last */
> default:
> iodc_dbuf[i] = str[i];
> - i++, posx++;
> + i++;
> break;
> }
> }
^ permalink raw reply [flat|nested] 3+ messages in thread
* [PATCH] parisc: pass through '\t' to early (iodc) console
@ 2010-08-04 0:38 Kyle McMartin
0 siblings, 0 replies; 3+ messages in thread
From: Kyle McMartin @ 2010-08-04 0:38 UTC (permalink / raw)
To: torvalds; +Cc: linux-parisc
The firmware handles '\t' internally, so stop trying to emulate it
(which, incidentally, had a bug in it.)
Fixes a really weird hang at bootup in rcu_bootup_announce, which,
as far as I can tell, is the first printk in the core kernel to use
a tab as the first character.
Cc: stable@kernel.org
Signed-off-by: Kyle McMartin <kyle@parisc-linux.org>
---
Oops, looks like this slipped through the cracks in my summer
vacation. Resending for 2.6.36 and stable kernels...
arch/parisc/kernel/firmware.c | 12 ++----------
1 files changed, 2 insertions(+), 10 deletions(-)
diff --git a/arch/parisc/kernel/firmware.c b/arch/parisc/kernel/firmware.c
index 4c247e0..df971fa 100644
--- a/arch/parisc/kernel/firmware.c
+++ b/arch/parisc/kernel/firmware.c
@@ -1123,7 +1123,6 @@ static char __attribute__((aligned(64))) iodc_dbuf[4096];
*/
int pdc_iodc_print(const unsigned char *str, unsigned count)
{
- static int posx; /* for simple TAB-Simulation... */
unsigned int i;
unsigned long flags;
@@ -1133,19 +1132,12 @@ int pdc_iodc_print(const unsigned char *str, unsigned count)
iodc_dbuf[i+0] = '\r';
iodc_dbuf[i+1] = '\n';
i += 2;
- posx = 0;
goto print;
- case '\t':
- while (posx & 7) {
- iodc_dbuf[i] = ' ';
- i++, posx++;
- }
- break;
case '\b': /* BS */
- posx -= 2;
+ i--; /* overwrite last */
default:
iodc_dbuf[i] = str[i];
- i++, posx++;
+ i++;
break;
}
}
--
1.7.0.1
^ permalink raw reply related [flat|nested] 3+ messages in thread
end of thread, other threads:[~2010-08-04 0:38 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-06-14 16:02 [PATCH] parisc: pass through '\t' to early (iodc) console Kyle McMartin
2010-06-14 20:08 ` Helge Deller
-- strict thread matches above, loose matches on Subject: below --
2010-08-04 0:38 Kyle McMartin
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.