t; an if branch to indicate a software failure there.
>
> This issue was detected by using the Coccinelle software.
>
> Signed-off-by: Markus Elfring
Acked-by: Jan-Benedict Glaw
MfG, JBG
--
Jan-Benedict Glaw jbg...@lug-owl.de +49-172-7608481
memmove(mouse->buf, mouse->buf + num, BUFLEN - num);
> mouse->count -= num;
> }
> }
Good catch! I fucked up the error recovery path.
Acked-by: Jan-Benedict Glaw
MfG, JBG
--
Jan-Benedict Glaw jbg...@lug-owl.de +49-172
], found mode 1024x768
[ 28.892115] [drm:drm_setup_crtcs], picking CRTCs for 4096x4096 config
[ 28.892126] [drm:drm_setup_crtcs], desired mode 1280x1024 set on crtc 3
[ 28.892132] [drm:drm_setup_crtcs], desired mode 1920x1080 set on crtc 4
[ 28.892208] [drm:cdv_get_max_backlight], LVDS Panel
nd only that. They won't
require operatins system specific modifications afterwards. OTOH, this
library will probably quite portable by itself and shouldn't need
any kernel changes, independent of the underlying kernel.
MfG, JBG
--
Jan-Benedict Glaw [EMAIL PROTECTED] +4
u
describe your application and the overall goal in detail, please don't
expect too much help.
MfG, JBG
--
Jan-Benedict Glaw [EMAIL PROTECTED] +49-172-7608481
Signature of: Wenn ich wach bin, träume ich.
the second :
signature.asc
Description: Digital signature
the initial value.
If you're getting error messages with ECC errors, that means that your
RAM really looses its contents. You should fix your machine. (Check
that eg. timings are correct with RAM's specification, ...)
You're on risk. Really.
MfG, JBG
--
Jan-B
y
>
> Now you can do "ls -l" and "rm" or whatever.
*cough* The original mail you're replying to had this inside:
> > I was hitting another issue with permissions-as root :(
> >
I really
and needs a fsck.
MfG, JBG
--
Jan-Benedict Glaw [EMAIL PROTECTED] +49-172-7608481
Signature of: Zensur im Internet? Nein danke!
the second :
signature.asc
Description: Digital signature
~0UL >> shift;
> }
>
> static __init void radix_tree_init_maxindex(void)
`index' seems to be unused now? And indention does neither follow
kernel coding style, nor this file's style. You'd also hammer out
`tmp' and put its initializer right there w
act steps, but that
> wasn't always trivial.
Some years ago, I also worked on old Linux releases. Have you found
the tarballs in my directory at kernel.org?
MfG, JBG
--
Jan-Benedict Glaw [EMAIL PROTECTED] +49-172-7608481
Signature of: God put me o
a/MAINTAINERS
> +++ b/MAINTAINERS
> @@ -4386,6 +4386,8 @@ P: Jan-Benedict Glaw
> M: [EMAIL PROTECTED]
> L: linux-kernel@vger.kernel.org
> S: Maintained
> +F: arch/alpha/kernel/*srm*
> +F: arch/alpha/lib/srm*
>
> STARFIRE/DURALAN NETWORK DRIVER
> P: Ion Badu
ap_32(n);
> > #endif
> > }
>
> #if __BYTE_ORDER == __LITTLE_ENDIAN, that is. sigh.
Don't forget PDP11 byteorder :-)
MfG, JBG
--
Jan-Benedict Glaw [EMAIL PROTECTED] +49-172-7608481
Signature of: Wenn ich wach bin, träume ich.
the second :
signature.asc
Description: Digital signature
);
> return EXIT_FAILURE;
> }
> fd = open(argv[1], O_RDONLY);
> if (fd < 0) {
> perror("open");
> return EXIT_FAILURE;
> }
> if (fstat(fd, &buf) < 0) {
> perror("stat");
> return EXIT_FAILURE;
> }
> if (!S_ISBLK(buf.st_mode))
> fprintf(stderr, "warning: not a block device\n");
>
> if (do_sector(fd, 0, 0) < 0)
> return EXIT_FAILURE;
>
> if (close(fd) < 0) {
> perror("close");
> return EXIT_FAILURE;
> }
> if (write(STDOUT_FILENO, &backup, sizeof backup) != sizeof backup) {
> perror("write");
> return EXIT_FAILURE;
> }
>
> show_backup();
>
> return EXIT_SUCCESS;
> }
Looks like a useful program, but you'd definively fix the LE/BE
issues. If you do that, it'll be able to even run on BE machines, too.
MfG, JBG
--
Jan-Benedict Glaw [EMAIL PROTECTED] +49-172-7608481
Signature of: Träume nicht von Dein Leben: Lebe Deinen Traum!
the second :
signature.asc
Description: Digital signature
t the low 4 bit?
MfG, JBG
--
Jan-Benedict Glaw [EMAIL PROTECTED] +49-172-7608481
Signature of: God put me on earth to accomplish a certain number of
the second :things. Right now I am so far behind I will never die.
signature.asc
Description: Digital signature
On Fri, 2007-07-20 14:29:34 +0300, Al Boldi <[EMAIL PROTECTED]> wrote:
>
> But, I want something much more automated. And the partition table backup
> per partition entry isn't really a bad idea.
That's called `gpart'.
MfG, JBG
--
Jan-Bened
ilesystem used there, you
may even be able to get back the remaining data.
MfG, JBG
--
Jan-Benedict Glaw [EMAIL PROTECTED] +49-172-7608481
Signature of: God put me on earth to accomplish a certain number of
the second :things. Right now I am so far behind I will never die.
signature.asc
Description: Digital signature
ant to fix it. You're not _obliged_
> > to fix it, of course. I just thought you'd like to know.
>
> Well there you are: my mailer is definitely NOT missbehaving.
> Please do not repeat similar accusations when not knowing the reason.
Just out of interest: In which cases do
/bash. If
> they want/need bash, that's ok to me, I will have it installed for such
> tasks, but they should call it "#!/bin/bash".
...or "#!/usr/bin/env bash" for what it's worth... The same for plain
`sh'.
MfG, JBG
--
Jan-Benedict
allcfsm.strEvent = strEvent;
> callcfsm.strState = strState;
> - return FsmNew(&callcfsm, fnlist, FNCOUNT);
> + return FsmNew(&callcfsm, fnlist, ARRAY_SIZE(fnlist));
> }
>
> void
I think that's really a nice improvement :) Thanks for the work,
MfG,
gt; > -#define FNCOUNT (sizeof(fnlist)/sizeof(struct FsmNode))
> > +#define FNCOUNT ARRAY_SIZE(fnlist)
> >
> > int __init
> > CallcNew(void)
>
> This is OK, thanks for changing.
I'd suggest to not use another define, but use ARRAY_SIZE(foo)
_in
d even go so far and implement it unconditionally.
MfG, JBG
--
Jan-Benedict Glaw [EMAIL PROTECTED] +49-172-7608481
Signature of: Eine Freie Meinung in einem Freien Kopf
the second : für einen Freien Staat voll Freier Bürger.
signature.asc
Description: Digital signature
en by one person, but a small
number of lines changed here and there by others to adopt the code to
new APIs. Ask them all, I think?
MfG, JBG
--
Jan-Benedict Glaw [EMAIL PROTECTED] +49-172-7608481
Signature of: God put me on earth to accomplish a certain nu
ng "ls")
>
> No, "ls" can handle it perfectly:
>
> # echo $LANG
> C
> # ls
> ??rsted
> #
`ls' may be playing tricks by checking whether its output goes to a
TTY. Does the terminal also hang for
$ ls | cat
or
$ ls -N
MfG, JBG
--
Jan-Ben
On Wed, 2007-06-06 12:52:13 +0200, Lars K.W. Gohlke <[EMAIL PROTECTED]> wrote:
> Jan-Benedict Glaw schrieb:
> > On Wed, 2007-06-06 12:39:17 +0200, Lars K.W. Gohlke <[EMAIL PROTECTED]>
> > wrote:
> > > Jan-Benedict Glaw schrieb:
> > > > OTOH, why d
On Wed, 2007-06-06 12:39:17 +0200, Lars K.W. Gohlke <[EMAIL PROTECTED]> wrote:
> Jan-Benedict Glaw schrieb:
> > OTOH, why do you want to do the serial stuff in kernel land? Isn't it
> > a *lot* easier to do it in userspace? What's your specific device you
> >
On Wed, 2007-06-06 11:34:49 +0200, Lars K.W. Gohlke <[EMAIL PROTECTED]> wrote:
> Jan-Benedict Glaw schrieb:
> > On Wed, 2007-06-06 11:11:23 +0200, Lars K.W. Gohlke <[EMAIL PROTECTED]>
> > wrote:
> > > wouldsomebody explain me the serio interface or give
de? See for example the various
serial keyboards and mice drivers.
MfG, JBG
--
Jan-Benedict Glaw [EMAIL PROTECTED] +49-172-7608481
Signature of: Friends are relatives you make for yourself.
the second :
signature.asc
Description: Digital signature
er...
MfG, JBG
--
Jan-Benedict Glaw [EMAIL PROTECTED] +49-172-7608481
Signature of: Alles wird gut! ...und heute wirds schon ein bißchen
besser.
the second :
signature.asc
Description: Digital signature
f is very busy, but maybe this can
> be done via dedicated lxr machine/webserver someone is willing
> to donate !?
There's *no* way to add this to the current kernel.org machines.
There's quite some DB access during indexing, and making up the
sources on re
l bug, but probably a bad RAM
chip. Did you run memtest86 for a while? ...and can you reproduce this
problem on different machines?
MfG, JBG
--
Jan-Benedict Glaw [EMAIL PROTECTED] +49-172-7608481
Signature of: Friends are relatives you make for yourself.
the second :
signature.asc
Description: Digital signature
code as
well as printk() and how it actually outputs its output?
MfG, JBG
PS: netdev no longer Cc'ed. It's not a networking topic.
--
Jan-Benedict Glaw [EMAIL PROTECTED] +49-172-7608481
Signature of:http://www.chiark.greenend.org.uk/~sgtatha
TION_IN 0x9e
> /* values for service action in */
Where's the user?
MfG, JBG
--
Jan-Benedict Glaw [EMAIL PROTECTED] +49-172-7608481
Signature of: Zensur im Internet? Nein danke!
the second :
signature.asc
Description: Digital signature
_timeout, int, 0444);
> MODULE_PARM_DESC(ata_probe_timeout, "Set ATA probing timeout (seconds)");
For ignore_hpa, it would be nice to not go through inverse logic and
fix the help text a bit (0=honor HPA, 1=ignore HPA).
MfG, JBG
--
Jan-Benedict Glaw [EMAIL PROTECTED]
y like this.
Sure, but at least mentioning that there's more than only a simple
table of function pointers may or may not help to *plan* the code to
fit future needs.
> But I suspect s390 would need number of arguments anyways.
Any they're already merged. Yay :)
Mf
pointers :) For example,
for vax-linux, we use a struct per syscall with the expected number of
on-stack longwords for the call.
So if something "new" is coming up, please keep in mind that it should
be flexible enough to represent that. :)
MfG, JBG
--
Jan-Benedict Glaw
ile-into-the-kernel-image problem, but after all,
it doesn't lead to a working driver being freely available.
MfG, JBG
--
Jan-Benedict Glaw [EMAIL PROTECTED] +49-172-7608481
Signature of:If it doesn't work, force it.
the secon
don't see bad memory...
MfG, JBG
--
Jan-Benedict Glaw [EMAIL PROTECTED] +49-172-7608481
Signature of: 23:53 <@jbglaw> So, ich kletter' jetzt mal ins Bett.
the second : 23:57 <@jever2> .oO( kletter ..., hat er noch Gitter vorm Bett,
wie früher mein
dev (compaq touchscreen emulation) is scheduled "
> + "for removal.\nSee Documentation/feature-removal-schedule.txt "
> + "for details.\n");
> +
> if (i >= TSDEV_MINORS || !tsdev_table[i & TSDEV_MINOR_MASK])
>
On Wed, 2007-01-31 22:56:03 +0100, Willy Tarreau <[EMAIL PROTECTED]> wrote:
> On Wed, Jan 31, 2007 at 10:13:12PM +0100, Jan-Benedict Glaw wrote:
> > On Tue, 2007-01-30 21:23:34 +0100, Diego Calleja <[EMAIL PROTECTED]> wrote:
> > > El Tue, 30 Jan 2007 20:31:01 +0100
omething like that...
MfG, JBG
--
Jan-Benedict Glaw [EMAIL PROTECTED] +49-172-7608481
Signature of: Alles wird gut! ...und heute wirds schon ein bißchen
besser.
the second :
signature.asc
Description: Digital signature
incorporate the last few months of upstream development. But NetBSD
still does better hardware support.
MfG, JBG
--
Jan-Benedict Glaw [EMAIL PROTECTED] +49-172-7608481
Signature of: http://www.eyrie.org/~eagle/faqs/questions.html
the second :
signature.asc
Description: Digital signature
es.
You can set these with O=/path/to/output, but you need to do that
during *any* make calls, eg. already for make oldconfig/menuconfig.
MfG, JBG
--
Jan-Benedict Glaw [EMAIL PROTECTED] +49-172-7608481
Signature of: Friends are relatives you make for yours
_esp+0x56/0x79
===
Code: 56 53 85 ff 74 47 9c 5e fa 8d 97 00 00 00 40 c1 ea 0c c1 e2 05 03 15 a0
26 68 c0 8b 02 f6 c4 40 74 03 8b 52 0c 8b 02 84 c0 78 02 <0f> 0b 8b 4a 18 8b 19
8b 03 3b 43 04 72 0b 89 c8 89 da e8 25 ff
EIP: [] kfree+0x32/0x59 SS:ESP 0068:ea4a5e10
MfG,
Hi!
Please pull from
git://git.kernel.org/pub/scm/linux/kernel/git/jbglaw/vax-linux.git fixes4linus
You'll get:
drivers/input/keyboard/lkkbd.c |5 -
1 files changed, 0 insertions(+), 5 deletions(-)
commit 1d08811d0c05cd54a778f45588ec22eee027ff89
Author: Jan-Benedict Glaw &l
arate output
> directory,
> +# preparei3 is used to check if we are building in a separate output
> directory,
^^^
Typo?
MfG, JBG
--
Jan-Benedict Glaw [EMAIL PROTECTED]. +49-172-7608481 _ O _
"Eine Freie Meinung in einem Freien Kopf| Gegen Zens
ort, except when a serious problem (eg, oops) occurs.
Alternatively, IIRC one of the printk-nullifying patches were taken
some time ago. You should be able to eleminate any printk()s through
kernel configuration in the embedded menu.
MfG, JBG
--
Jan-Benedict Glaw [EMAIL PROTECTED]. +
't exactly a Linux kernel-related question, but to answer it
anyways: that's the way to go.
MfG, JBG
--
Jan-Benedict Glaw [EMAIL PROTECTED]. +49-172-7608481 _ O _
"Eine Freie Meinung in einem Freien Kopf| Gegen Zensur | Gegen Krieg _ _ O
fuer einen Frei
On Thu, 2005-08-04 22:38:31 +0200, Adrian Bunk <[EMAIL PROTECTED]> wrote:
> On Thu, Aug 04, 2005 at 08:54:47AM +0200, Jan-Benedict Glaw wrote:
> > I guess that if you remove -fno-unit-at-a-time from i386 and use a
> > current GCC, you'll run into that fun, too.
&g
On Fri, 2005-08-12 09:40:18 +0200, Geert Uytterhoeven <[EMAIL PROTECTED]> wrote:
> On Thu, 4 Aug 2005, Jan-Benedict Glaw wrote:
> > -sh-3.00# cat cpuinfo
> > cpu : VAX
> > cpu type: KA43
> > cpu sid : 0x0b06
> > cpu
l purpose distributed lock manager for kernel or userspace
Why don't you allow modular builds of both? ...or aren't the IPv6
symbols exported?
MfG, JBG
--
Jan-Benedict Glaw [EMAIL PROTECTED]. +49-172-7608481 _ O _
"Eine Freie Meinung in einem Freien Kopf
d.
So I actually suspect two bugs: one in the kernel's sources (missing
"const" or rw/ro attributes) and -fno-unit-at-a-time disables some
gcc-internal tests that should have fired.
MfG, JBG
--
Jan-Benedict Glaw [EMAIL PROTECTED]. +49-172-7608481 _ O _
"
On Thu, 2005-08-04 22:38:31 +0200, Adrian Bunk <[EMAIL PROTECTED]> wrote:
> On Thu, Aug 04, 2005 at 08:54:47AM +0200, Jan-Benedict Glaw wrote:
> >...
> > Current GCC from CVS (plus minor configury patches) seems to work. We
> > had -fno-unit-at-a-time missing in our arch
igury patches) seems to work. We
had -fno-unit-at-a-time missing in our arch Makefile which hides a bug
in kernel's sources.
I guess that if you remove -fno-unit-at-a-time from i386 and use a
current GCC, you'll run into that fun, too.
MfG, JBG
PS: Yes, we lie about page size.
--
Jan-Be
-unit-at-a-time seems to hide a bug here.
Could somebody comment on this? Or shall I open a bug report for GCC?
MfG, JBG
--
Jan-Benedict Glaw [EMAIL PROTECTED]. +49-172-7608481 _ O _
"Eine Freie Meinung in einem Freien Kopf| Gegen Zensur | Gegen Krieg _ _ O
fu
...), sticking a #warning or #error right
into the driver (and not into an included header file) looks quite right
to me.
MfG, JBG
--
Jan-Benedict Glaw [EMAIL PROTECTED]. +49-172-7608481 _ O _
"Eine Freie Meinung in einem Freien Kopf| Gegen Zensur | Gegen Krieg _
at your side...
MfG, JBG
--
Jan-Benedict Glaw [EMAIL PROTECTED]. +49-172-7608481 _ O _
"Eine Freie Meinung in einem Freien Kopf| Gegen Zensur | Gegen Krieg _ _ O
fuer einen Freien Staat voll Freier Buerger" | im Internet! | im Irak! O O O
it, because it's
not there.
MfG, JBG
--
Jan-Benedict Glaw [EMAIL PROTECTED]. +49-172-7608481 _ O _
"Eine Freie Meinung in einem Freien Kopf| Gegen Zensur | Gegen Krieg _ _ O
fuer einen Freien Staat voll Freier BÃrger" | im Internet! | im Irak
se features *ever*), then
an own interface is okay. But if there's a possibility that a different
vendor *might* introduce these as well, then a generic interface needs
to be build (with first of all only one user: your driver).
> I will let the chips fall where they will, and clean up the mess th
cluded by just telling once about it; you'll need to work
towards that goal, and probably monitor the driver to be useable in the
future.
MfG, JBG
--
Jan-Benedict Glaw [EMAIL PROTECTED]. +49-172-7608481 _ O _
"Eine Freie Meinung in einem Freien Kopf| Gegen Ze
On Sat, 2005-04-02 23:03:14 +0200, Geert Uytterhoeven <[EMAIL PROTECTED]>
wrote in message <[EMAIL PROTECTED]>:
> On Fri, 1 Apr 2005, Jan-Benedict Glaw wrote:
> > Well, the patch looks fine, but you forgot to also do the VAX-specific
> > part. Withoug the BUGs, maybe t
See? Much nicer. This patch saves about 375k on my laptop config and
> nearly 100k on minimal configs.
Please also notice these space-savings in the Kconfig help text.
MfG, JBG
--
Jan-Benedict Glaw [EMAIL PROTECTED]. +49-172-7608481 _ O _
"Eine Freie Meinung in ei
ernel would be even faster?
:-), JBG
--
Jan-Benedict Glaw [EMAIL PROTECTED]. +49-172-7608481 _ O _
"Eine Freie Meinung in einem Freien Kopf| Gegen Zensur | Gegen Krieg _ _ O
fuer einen Freien Staat voll Freier BÃrger" | im Internet! | im Irak! O O
O
ret
On Thu, 2005-02-10 15:35:28 +, Paulo Marques <[EMAIL PROTECTED]>
wrote in message <[EMAIL PROTECTED]>:
> Jan-Benedict Glaw wrote:
> So you're seriously saying that a perfectly good touchscreen, that
> returned values in the range [350..3800] after being injured
done with all TS controllers. The very
old ones actually just hand over the pure A/D values as a 10bit integer.
For sure, you won't ever see a touchscreen that covers the whole scale:)
> Actually a calibration that can do scaling and rotation, can
> automatically compensate for mirroring and
tween the
> resistive layers, you get nonlinear distortion of the resistivity and
> that cannot be calibrated for.
If they were private customers, sure, they'd just buy a new touchscreen.
But in reality, as long as it somewhat "works", it'll be used as long as
possible.
M
On Wed, 2005-02-09 21:10:32 +0100, Vojtech Pavlik <[EMAIL PROTECTED]>
wrote in message <[EMAIL PROTECTED]>:
> On Wed, Feb 09, 2005 at 09:03:51PM +0100, Jan-Benedict Glaw wrote:
> > The problematic part is that this needs to be done at a quite low level,
> > since POS key
On Wed, 2005-02-09 20:51:43 +, Paulo Marques <[EMAIL PROTECTED]>
wrote in message <[EMAIL PROTECTED]>:
> Jan-Benedict Glaw wrote:
> >On Wed, 2005-02-09 18:08:10 +, Paulo Marques <[EMAIL PROTECTED]>
> >wrote in message <[EMAIL PROTECTED]>:
> >Th
is lib? At
least, my employer is interested I guess. (But this is OT wrt. the Linux
kernel, could you contact me at [EMAIL PROTECTED])
MfG, JBG
--
Jan-Benedict Glaw [EMAIL PROTECTED]. +49-172-7608481 _ O _
"Eine Freie Meinung in einem Freien Kopf| Gegen Zensur | Gegen K
key presses to distinguish between normal key presses and MSR data :P
>
> Yes, embedded and single purpose systems are often full of hacks like
> this.
...and especially this problem can be better solved by reprogramming the
MCR readers :-)
MfG, JBG
--
Jan-Benedict Glaw [EMAIL
late key presses for MSR
> data. They expect the software to be in a state where it is waiting for
> that data, and will process it accordingly.
This only happens if you don't configurethe MSR properly :-) Most of
them can be configured to send quite complex (as in: structured) init
omething as complex as "three-track magnetic stripe
data" or a whole scanned EAN barcode. Also, some
keyboards can be written to (change display contents,
switch on/off scanners, ...).
This is usually "solved" with a little
rent TC bus driver: this will be needed for
Linux' port to VAX computers, which may have TC busses, too.
MfG, JBG
--
Jan-Benedict Glaw [EMAIL PROTECTED]. +49-172-7608481 _ O _
"Eine Freie Meinung in einem Freien Kopf| Gegen Zensur | Gegen Krieg _ _ O
fuer einen
y got too many of 'em... So what's
the main goal you want to achieve with your software?
> Just don't expect this to be put into a standard kernel.
Seconded...
MfG, JBG
--
Jan-Benedict Glaw [EMAIL PROTECTED]. +49-172-7608481 _ O _
"Eine Freie Meinung in
G, JBG
--
Fehler eingestehen, Größe zeigen: Nehmt die Rechtschreibreform zurück!!!
/* Jan-Benedict Glaw <[EMAIL PROTECTED]> -- +49-172-7608481 */
keyID=0x8399E1BB fingerprint=250D 3BCF 7127 0D8C A444 A961 1DBD 5E75 8399 E1BB
"insmod vi.o and there we go..." (Alexander Viro
':
/usr/src/packages/linux-2.4.5-pre4/include/asm/pci.h:152: dereferencing pointer to
incomplete type
make: *** [arch/alpha/kernel/setup.o] Error 1
MfG, JBG
--
Fehler eingestehen, Größe zeigen: Nehmt die Rechtschreibreform zurück!!!
/* Jan-Benedict Glaw <[EMAIL PROTECTED]> -- +4
Hi!
This allows me to use some (old and broken) AT/LANTIC boards.
MfG, JBG
--
Fehler eingestehen, Größe zeigen: Nehmt die Rechtschreibreform zurück!!!
/* Jan-Benedict Glaw <[EMAIL PROTECTED]> -- +49-172-7608481 */
keyID=0x8399E1BB fingerprint=250D 3BCF 7127 0D8C A444 A961 1DBD 5E75 839
called MOP (Maintainence and Operations Protocol)
comes in mind...
MfG, JBG
--
Fehler eingestehen, Größe zeigen: Nehmt die Rechtschreibreform zurück!!!
/* Jan-Benedict Glaw <[EMAIL PROTECTED]> -- +49-177-5601720 */
keyID=0x8399E1BB fingerprint=250D 3BCF 7127 0D8C A444 A961 1DBD 5E75 8399 E
077a42d0.
0: @fc00077a4200 length 8042 status 0042
...
MfG, JBG
--
Fehler eingestehen, Größe zeigen: Nehmt die Rechtschreibreform zurück!!!
/* Jan-Benedict Glaw <[EMAIL PROTECTED]> -- +49-177-5601720 */
keyID=0x8399E1BB fingerprint=250D 3BCF 7127 0D8C A444 A961 1DBD 5E75 8399 E1BB
"
On Tue, Feb 13, 2001 at 12:38:15AM +0100, Adam Lackorzynski wrote:
Hi Adam!
> On Mon Feb 12, 2001 at 14:04:20 +0100, Jan-Benedict Glaw wrote:
> > I've got a "Bull Express5800/Series" (dual P3) with a DAC1164 RAID
> > controller. The mainboard is ServerWorks
PIC IRQ transform: (B0,I3,P0) -> 18
PCI->APIC IRQ transform: (B0,I6,P0) -> 26
PCI->APIC IRQ transform: (B0,I7,P0) -> 23
Can you give me some advice on how to hack those PCI bridges?
MfG, JBG
--
Fehler eingestehen, Größe zeigen: Nehmt die Rechtschreibreform zurück!!!
/* Jan-Benedic
Hi Geert!
On Mon, Jan 22, 2001 at 09:20:07PM +0100, Geert Uytterhoeven wrote:
> On Mon, 22 Jan 2001, Jan-Benedict Glaw wrote:
> > I just discovered a solid freeze:
> > jbglaw@jbglaw-sid:~$ uname -r
> > 2.4.1-pre8
> > jbglaw@jbglaw-sid:~$ grep aty /etc/lilo.conf
>
is okay. But if I press (for example)
the system just dies. I've not yet attached a serial console,
but SysRq keys seem to not be functional, as well as the NumLock
LED doesn't change when pressing the NumLock key...
MfG, JBG
--
Fehler eingestehen, Größe zeigen: Nehmt die Rechtschrei
arcling 2.4.0-test12 #2 SMP Sat Dec 16 02:25:25 CET 2000 sparc unknown
It's a SparcStation 10 w/ 2 CPUs.
Anton, do you have any clue where changes could have broke SS10 support?
MfG, JBG
--
Fehler eingestehen, Größe zeigen: Nehmt die Rechtschreibreform zurück!!!
/* Jan-Benedict Glaw &l
roc/interrupts
> etc was good advice and then found out that it's as messy :-(
That's just what I thought;)
MfG, JBG
--
Fehler eingestehen, Größe zeigen: Nehmt die Rechtschreibreform zurück!!!
/* Jan-Benedict Glaw <[EMAIL PROTECTED]> -- +49-177-5601720 */
keyID=0x8399E1BB fi
schreibreform zurück!!!
/* Jan-Benedict Glaw <[EMAIL PROTECTED]> -- +49-177-5601720 */
keyID=0x8399E1BB fingerprint=250D 3BCF 7127 0D8C A444 A961 1DBD 5E75 8399 E1BB
"insmod vi.o and there we go..." (Alexander Viro on linux-kernel)
PGP signature
On Wed, Jan 03, 2001 at 03:32:38PM +0100, [EMAIL PROTECTED] wrote:
> How you got into scancode mode 1 I don't know
> (maybe by sending the command f0 01 to the keyboard).
Kind of f00f bug?
SCNR, JBG
--
Fehler eingestehen, Größe zeigen: Nehmt die Rechtschreibreform zurück!!!
/* J
Nehmt die Rechtschreibreform zurück!!!
/* Jan-Benedict Glaw <[EMAIL PROTECTED]> -- +49-177-5601720 */
keyID=0x8399E1BB fingerprint=250D 3BCF 7127 0D8C A444 A961 1DBD 5E75 8399 E1BB
"insmod vi.o and there we go..." (Alexander Viro on linux-kernel)
PGP signature
o... I think
that's worth it...
MfG, JBG
--
Fehler eingestehen, Größe zeigen: Nehmt die Rechtschreibreform zurück!!!
/* Jan-Benedict Glaw <[EMAIL PROTECTED]> -- +49-177-5601720 */
keyID=0x8399E1BB fingerprint=250D 3BCF 7127 0D8C A444 A961 1DBD 5E75 8399 E1BB
"insmod vi.o and there
should
test sth around -test8...
MfG, JBG
--
Fehler eingestehen, Größe zeigen: Nehmt die Rechtschreibreform zurück!!!
/* Jan-Benedict Glaw <[EMAIL PROTECTED]> -- +49-177-5601720 */
keyID=0x8399E1BB fingerprint=250D 3BCF 7127 0D8C A444 A961 1DBD 5E75 8399 E1BB
"insmod vi.o and t
evel 15 Interrupt" und "Program
terminated" ;-)
MfG, JBG
--
Fehler eingestehen, Größe zeigen: Nehmt die Rechtschreibreform zurück!!!
/* Jan-Benedict Glaw <[EMAIL PROTECTED]> -- +49-177-5601720 */
keyID=0x8399E1BB fingerprint=250D 3BCF 7127 0D8C A444 A961 1DBD 5E75 8399 E1BB
"insmod vi.o and there we go..." (Alexander Viro on linux-kernel)
PGP signature
sn't get really slower as these paths
are more-or-less never taken; but there is a little bit more bloat...).
With such an infrastructure, klogd could pass those lines to an external
helper (and additionally to syslog).
MfG, JBG
--
Fehler eingestehen, Größe zeigen: Nehmt die Rechtschre
quot;
"never ever use this on data you'd like to see tomorrow "
"again!!! Please remount in read-only mode *now* or don't "
"complain afterwards!");
Maybe that can prevent pupils^H^H^H^H^Heople from shooting their
foots...
MfG, JBG
--
Fe
On Wed, Dec 06, 2000 at 08:31:31AM -0500, Timothy A. DeWees wrote:
Hi!
> a list of parameters I can pass to a kernel on boot. I am looking for
./linux/init/main.c
MfG, JBG
--
Fehler eingestehen, Größe zeigen: Nehmt die Rechtschreibreform zurück!!!
/* Jan-Benedict Glaw <[EMAIL PRO
and 'mount' shows no usb or usbdevfs entries listed.
Are there usbdevfs entries in /proc/mount? Maybe 'umount' removes
too many entries from /etc/mtab...
MfG, JBG
--
Fehler eingestehen, Größe zeigen: Nehmt die Rechtschreibreform zurück!!!
/* Jan-Benedict Glaw <[EMAIL PROTEC
htschreibreform zurück!!!
/* Jan-Benedict Glaw <[EMAIL PROTECTED]> -- +49-177-5601720 */
keyID=0x8399E1BB fingerprint=250D 3BCF 7127 0D8C A444 A961 1DBD 5E75 8399 E1BB
"insmod vi.o and there we go..." (Alexander Viro on linux-kernel)
PGP signature
e noticed that as well, but I've not
seen that on UP machines as well...
.oO( Where did I see those MTRR settings? )
MfG, JBG
--
Fehler eingestehen, Größe zeigen: Nehmt die Rechtschreibreform zurück!!!
/* Jan-Benedict Glaw <[EMAIL PROTECTED]> -- +49-177-5601720 */
keyID=0x8399E1B
> So, use "vga=791" in your lilo.conf.
lilo accepts hex values as well, AFAIK, so lets do:
vga = 0x317
MfG, JBG
--
Fehler eingestehen, Größe zeigen: Nehmt die Rechtschreibreform zurück!!!
/* Jan-Benedict Glaw <[EMAIL PROTECTED]> -- +49-177-5601720 */
keyID=0x8399E1BB finge
way to "remove" a file is to
delete all ist contents, but the (empty) file remains...
MfG, JBG
--
Fehler eingestehen, Größe zeigen: Nehmt die Rechtschreibreform zurück!!!
/* Jan-Benedict Glaw <[EMAIL PROTECTED]> -- +49-177-5601720 */
keyID=0x8399E1BB fingerprint=250D 3BCF 7127
On Tue, Sep 26, 2000 at 09:15:33AM -0500, Jeff Garzik wrote:
> On Tue, 26 Sep 2000, Jan-Benedict Glaw wrote:
Hi!
> Take a look at past lkml messages from today... A larger Alpha patch
> was posted. Does that patch fix this problem too?
Oops. Yes, it does;)
MfG, JBG
--
Fehler ei
IFIC_BASE 1024
+
#endif
--
Fehler eingestehen, Größe zeigen: Nehmt die Rechtschreibreform zurück!!!
/* Jan-Benedict Glaw <[EMAIL PROTECTED]> -- +49-177-5601720 */
keyID=0x8399E1BB fingerprint=250D 3BCF 7127 0D8C A444 A961 1DBD 5E75 8399 E1BB
"insmod vi.o and there we go..."
1 - 100 of 105 matches
Mail list logo