On Tue, 3 Apr 2001, [EMAIL PROTECTED] wrote:
> Ingo Oeser <[EMAIL PROTECTED]> wrote:
>
> >Yes: Let "mknod /dev/foo [bc] x y" die!
>
> I hope this never happens. Improving the major/minor device scheme is
> reasonable; abandoning it would be a sad occurrence. It would make Linux too
> "un-UNIXis
On Wed, 4 Apr 2001, Remko van der Vossen wrote:
> second problem is that when I use the PThread functions from this module I
> need the pthread library. As you probably know gcc doesn't link the pthread
> library into the module, so I tried to do that with ld, that in itself
> worked, I successfu
On Thu, 5 Apr 2001, Manoj Sontakke wrote:
> Addition and subtraction works fine. The problem is with multiplication
> and division. I am doing this to avoid floating point calculation and
> doing fixed point calculation. The rage is large enough to need "long
> long" Any other way to achieve this
On Wed, 4 Apr 2001, Ryan Mack wrote:
> Sorry for such a stupid question, but I'm stumped (it doesn't take much).
> modprobe reports that hotplug_path is unresolved when it processes
> usbcore. CONFIG_HOTPLUG is defined, so it seems that hotplug_path is
> defined and EXPORTed in kernel/kmod.c, so
On Thu, 5 Apr 2001, SardaƱons, Eliel wrote:
> I'm taking a look at the linux code and I don't understand how do you
> programm...mmm (?) may be i'm a stupid why in include/asm/unistd.h in some
> macros you use this:
>
> do {
> ...
> } while (0)
This is a very useful trick.
If you define a macro
On Thu, 5 Apr 2001, Joseph Carter wrote:
> On Thu, Apr 05, 2001 at 09:06:20AM -0400, Bart Trojanowski wrote:
> > So you ask: "why not just use a { ... } to define a macro". I don't
> > remember the case for this but I know it's there. It has to do with a
>
On Thu, 5 Apr 2001, Steve Grubb wrote:
> It would seem to me that after hearing how the macros are used in practice,
> wouldn't turning them into inline functions be an improvement? This is
> something gcc supports, it accomplishes the same thing, and has the added
> advantage of type checking.
>
I am working on a project which will require a lot of CPU power. I will
be running TCP, a managable number of busy threads, and gigabit ether.
I was curious how good the alpha processor support is in Linux as
compared to, say, i386. Also How well do alpha processors scale up on
Linux 2.4 in a
On Fri, 6 Apr 2001, Bill Geissler wrote:
> I need to modify the tcp_input.c and tcp_output.c code
> for a thesis, and want to make sure that I don't mess
> things up when I recompile the code.
>
> What do I need to do to properly recompile the tcp
> functions with my modifications?
As long as y
On Tue, 10 Apr 2001, Ofer Fryman wrote:
> Has any one tested the performance of the Tulip or AMD cards (or any other
> network card) on any Linux version, with any CPU and any chip-set?
Wow... that's a pretty broad question!
Yes I have had very good performance with the 'recent' tulip cards:
#
I used 1024 byte IP packet size (+12 bytes of Ethernet header) under 1500
MTU.
On Tue, 10 Apr 2001, Ofer Fryman wrote:
> At what frame size?.
>
> Thanks
> Ofer
>
> -Original Message-
> From: Bart Trojanowski [mailto:[EMAIL PROTECTED]]
> Sent: Tuesday, April 10,
First it does not work because you do not have access to libc in the
kernel. Secondly your LCD driver is not available at the time of
start_kernel so there is no one to listen to the /dev/lcd.
The quickest hack would be to find your lcd driver and modify it to spit
out the Loading Kernel, after
Coudl the problem be in the NIC driver not in the alloc_skb? I have used
both 2.4.{1,3} for some time and never seen this corruption. I use ping
-f with various packet sizes for stress testing my IPSec boxes... these do
quite a bit of extra skb creation as an IPSec header sometimes does not
fit
Hi CJ,
you should really read the thread titled "Linux's implementation of
poll() not scalable?" in the LKML archives, here is a link:
http://www.uwsg.iu.edu/hypermail/linux/kernel/0010.3/0003.html
There are many problems with the /dev/something interface for events and
all is described in that
There is a great article here:
http://www.linux-mag.com/2000-12/gear_01.html
Here is what I got out of it...
http://www.jukie.net/~bart/kernel/kserv/
Bart.
On Thu, 12 Apr 2001, Sharath Kumar wrote:
> Hi All,
>I am trying to implement a client using sockets in a Linux module,
> and
jiffies is updated by a timer interrupt once every 1/HZ seconds (HZ==100
for i386).
The code intents to start running at the time right after jiffies was
incremented to improve the correctness of the delay calibration loop.
The reason why jiffies is read later is to get the value after the
chan
BTW this is also the case for AMD-K6-3 and I would imagine all other AMD
processors.
B.
On Sun, 15 Apr 2001, Ishikawa wrote:
> Hi,
>
> On my athlong K7 optimized kernel prints "unknown" fir oricessir type.
> (I have not realized what this "unknown" stood for until today.)
>
> #uname -p
> unkn
What kernel are you running? This is disabled by default. search for
where FASTRETRANS_DEBUG is enabled (should be in linux/include/net/tcp.h
and set it someting low (like 1 which is the default. The actual error
message comes up in tcp_input.c (search fro FASTRETRANS_DEBUG).
Regards,
Bart.
Hey, I am looking for some TCP benchmarks for the 2.4.x sersies of
kernels. I am interested in # of new connections per second and impact
of backlogged connections. Memory constraints are also of interest.
An URL or just word-of-mouth stats will do.
Regards,
Bart.
--
WebSig: http://
On Sat, 21 Apr 2001, Tamas Nagy wrote:
> extend the current file-system with an optional plug-in system, which allows
> for file-system level encryption instead of file-level. This could be used
> transparently for applications or even for file-system drivers. This
> doesn't mean an encrypted f
I see benefit in having the .config file in the kernel. It being a non
loadable elf section would be a plus. However I also see merit to having
it available as a proc entry.
Say that we decide to go with /proc/config. In that case I think that
Jeremy is right on with the compressing of the in
On Fri, 18 May 2001, sebastien person wrote:
> I have a network module that need to regularly get data from network
> adaptater.
> But I don't know if it safe to do a loop with a timer in the module.
First off you have to decide where you want to run your 'get data'. There
are three context you
I have been seeing 'SIG: sigpending lied' when I change the current->blocked
value to ignore 'non shutdown' signals. The messages does not show up on
2.2.16.
Searching with google I found a lot of problems being reported but no
solutions... Is this a 2.2.14 "feature"? I ask because we have cli
* Bart Trojanowski <[EMAIL PROTECTED]> [071019 17:00]:
>
> Once the system is booted, I attached using vnc, then I ssh in and ran
> 'svn update'... and the host machine froze.
>
> The last messages I on my serial console are:
>
> kvm: unhandled rdmsr: 0x4
I am running 2.6.23.1 with kvm built from that tree as a module. My
system is running Debian/testing on a Tyan board with two dual-core
Opteron 2216 processors; each socket has 4G of RAM. I have attached the
serial console dump including a bunch of output from SysRq (gzipped,
because it was 300k
* Bart Trojanowski <[EMAIL PROTECTED]> [071019 20:03]:
> * Bart Trojanowski <[EMAIL PROTECTED]> [071019 17:00]:
>
> >
> > Once the system is booted, I attached using vnc, then I ssh in and ran
> > 'svn update'... and the host machine froze.
> &g
* Avi Kivity <[EMAIL PROTECTED]> [071021 07:23]:
> Does 2.6.23 hang immediately? If so, these may be two separate problems
> and it's worth bisecting to find out what's the fix in 2.6.24-rc.
>
> Of course we'll have to address the later hang as well.
Avi,
it does not hang immediately. It seem
* Avi Kivity <[EMAIL PROTECTED]> [071022 09:42]:
> I'm not sure that's useful -- very little changed after 2.6.23-rc1 (10
> patches).
>
> There were 92 kvm patches in 2.6.23, so a bisect should take about a
> week worst case.
I'll get started tonight.
-Bart
--
* Avi Kivity <[EMAIL PROTECTED]> [071023 10:21]:
> Thanks, that will be most helpful. If userspace won't compile against
> some intermediate version, let me know the commit hash and I'll add a fixup.
A bisect didn't find anything between 2.6.22 and 2.6.23. Which made me
very confused. I think,
Hi,
to see my history please see this thread...
http://lkml.org/lkml/2006/11/29/156
It might be sata related, but I cannot tell for sure.
In summary, I have an Opteron 170 in a Shuttle SN25P (nforce4 chipset).
I've tested the ram overnight and swapped out every component in the
system except fo
* Robert Hancock <[EMAIL PROTECTED]> [061202 13:33]:
> >[ 27.337641] Uniform Multi-Platform E-IDE driver Revision: 7.00alpha2
> >[ 27.344035] ide: Assuming 33MHz system bus speed for PIO modes;
> >override with idebus=xx
> >[ 27.352191] Probing IDE interface ide0...
> >[ 28.145997] hda: PL
* Prakash Punnoor <[EMAIL PROTECTED]> [061202 13:32]:
> Am Samstag 02 Dezember 2006 18:22 schrieb Bart Trojanowski:
> > In summary, I have an Opteron 170 in a Shuttle SN25P (nforce4 chipset).
> > I've tested the ram overnight and swapped out every component in the
>
* Bart Trojanowski <[EMAIL PROTECTED]> [061129 12:02]:
> I finally hooked up a serial console to the box and I see the following.
> I include the initial dmesg output to show what's in the machine.
This time I booted with "maxcpus=1" and proceeded to build 2.6.19-rc
One more update. I rebuilt 2.6.19-rc6 and turned off CONFIG_PREEMPT_BKL.
It didn't help much.
I am still getting BUG dumps from the kernel, however they don't cause
freezes immediately. It takes a few minutes of console output before
the computer stops responding to my input.
As I was writing t
Prakash Punnoor punnoor.de> writes:
> Does your bios have the option to enable the hpet? (Maybe after a bios
> update?)
It does not.
> If not:
>
> Try booting with noapic, compile latest git kernel and buut it (w/o noapic).
> Above message should now not appear, if I am not mistaken. Otherwis
Hello,
I've been getting odd crashes in 2.6.18 and .19-rc's with a dual core
opteron on an nforce chipset. I've been running with a serial console
capturing things.
Prakash suggested I try the git tree yesterday afternoon, and I've been
running v2.6.19-rc6-g1275361 ...that ended up being very c
I need to preserve some state from the bios before entering protected
mode. For now I want to copy it into some ram accessible by real-mode,
say the last megabyte visible in real-mode.
What's the easiest way to have linux ignore the megabyte starting at 15M?
Cheers,
-Bart
-
To unsubscribe from t
Hi all,
I am looking at a two stage boot where linux is loaded to do some system
initialization before booting to Windows, which needs BIOS.
I am interested in bypassing the BIOS on the second boot.
I wanted to know if anyone has attempted to restore the BIOS memory such
that this could be atte
38 matches
Mail list logo