On Sat, Jun 16, 2007 at 08:10:53PM -0700, Linus Torvalds wrote:
> This is where we started. The same way you seem to think that "freedom"
> has only the meaning *you* and the FSF give it, and that somehow the
> spirit of the GPL includes the "four freedoms" that aren't even
> _mentioned_ in it.
On Sun, May 27, 2007 at 06:10:41PM +0200, Jesper Juhl wrote:
> >bool "USB device class-devices (DEPRECATED)"
> >depends on USB
> >- default n
> >+ default y
>
> It puzzles me why a deprecated option should be default 'Y'...
Because if it defaults to 'n', a 'make oldcon
On Sun, May 27, 2007 at 04:34:37PM +0200, Kay Sievers wrote:
> older kernels. That's all, and correctly configured kernels don't break
> anything.
>
> > So instead of papering this breakage over with cleverly worded help texts
> > that suggest a solution, how about we set USB_DEVICE_CLASS to 'y' b
> the separate class device. How does that help text sound?
>
> This option provides backward compatibility for systems where
> usbfs is not mounted, and no udev rule like this exists:
> SUBSYSTEM=="usb", ACTION=="add", ENV{DEVTYPE}=="usb_device", \
> NAME="bus/usb/$env{BUSNUM}/$env{
On Sun, May 27, 2007 at 04:42:35AM +0200, Kay Sievers wrote:
> > Any clues? Please let me know how I can help solve this problem!
>
> It works fine for me here. Do you have CONFIG_USB_DEVICE_CLASS=y set?
Ah, I have not. However, this setting was not present in 2.6.21-rc3, from
which configuration
Greg, Kay, kernel people,
Today I booted 2.6.22-rc2 on Ubunty Edgy Eft, and lsusb died on me:
[EMAIL PROTECTED]:~$ lsusb
[EMAIL PROTECTED]:~$ sudo lsusb
[EMAIL PROTECTED]:~$
This behaviour persists in rc4. This might be udev related. I'm running:
ii udev 093-0
Con,
Recent kernel versions have real problems for me on the interactivity front,
with even a simple 'make' of my C++ program (PowerDNS) causing Firefox to
slow down to a crawl.
RSDL fixed all that, the system is noticeably snappier.
As a case in point, I used to notice when a compile was done b
On Sat, Mar 03, 2007 at 02:26:09PM -0800, Andrew Morton wrote:
> > > It is *not* a global instruction. It uses setenv, so the user's policy
> > > affects only the target process and its forked children.
> >
> > ... and all other processes accessing the same file(s)!
> >
> > Your library and the
On Sat, Mar 03, 2007 at 11:30:49PM +0100, Arnd Bergmann wrote:
> It might be nicer to make this
>
> for (;;)
> asm volatile ("idle");
This looks remarkably like relax_cpu()
--
http://www.PowerDNS.com Open source, database driven DNS Software
http://netherlabs.nl
On Sat, Mar 03, 2007 at 04:30:56PM -0500, Rik van Riel wrote:
> The user has been accessing the kernel tree over and over
> again, for hours on end (compile testing a patch). Along
> comes a backup program, that tells you to evict the whole
> thing from the cache.
This is arguably due to a linux
On Tue, Feb 20, 2007 at 02:02:00PM -0800, Rick Jones wrote:
> The slope appears to be flattening-out the farther out to the right it
> goes. Perhaps that is the length of time it takes to take all the
> requisite cache misses.
The rate of flattening out appears to correlate with the number of
On Tue, Feb 20, 2007 at 02:40:40PM -0500, Benjamin LaHaise wrote:
> Make sure your system is idle. Userspace bloat means that *lots* of idle
> activity occurs in between timer ticks on recent distributions -- all those
You hit the nail on the head. I had previously measured with X shut down,
b
On Tue, Feb 20, 2007 at 09:48:59PM +0300, Evgeniy Polyakov wrote:
> Likely first overhead related to cache population or gamma-ray radiation.
> If it happens only one (it does in my test), then everything is ok I
> think. Bert, how frequently you get that long recvfrom()?
I have plotted the avera
On Tue, Feb 20, 2007 at 07:41:25PM +0300, Evgeniy Polyakov wrote:
> It can be recvfrom only problem - syscall overhead on my p4 (core duo,
> debian testing) is bout 300 usec - to test I ran read('dev/zero', &data,
> 0) in a loop.
nsec I assume?
The usec numbers for read(fd, &c, 0) where fd is /d
On Tue, Feb 20, 2007 at 11:50:13AM +0100, Andi Kleen wrote:
> P4s are pretty slow at taking locks (or rather doing atomical operations)
> and there are several of them in this path. You could try it with a UP
> kernel. Actually hotunplugging the other virtual CPU should be sufficient
> with recent
On Thu, Feb 15, 2007 at 09:42:32AM -0800, Linus Torvalds wrote:
> We know one interface: the current aio_read() one. Nobody really _likes_
[...]
> Others? We don't know yet. And exposing complex interfaces that may not be
> the right ones is much *worse* than exposing simple interfaces (that
>
On Tue, Feb 13, 2007 at 09:58:48AM -0500, Benjamin LaHaise wrote:
> not present is mandatory). I have looked into exactly this approach, and
> it's only cheaper if the code is incomplete. Linux's native threads are
> pretty damned good.
Cheaper in time or in memory? Iow, would you be able to
On Fri, Feb 09, 2007 at 02:33:01PM -0800, Linus Torvalds wrote:
> - IF the system call blocks, we call the architecture-specific
>"schedule_async()" function before we even get any scheduler locks, and
>it can just do a fork() at that time, and let the *child* return to the
>origin
On Mon, Feb 05, 2007 at 01:57:15PM -0800, Linus Torvalds wrote:
> I doubt very many people want to do that. It would tend to simply be nicer
> to do
>
> async(poll);
Yeah - I saw that technique being mentioned later on in the thread, and it
would work, I think.
To make up for the waste o
On Fri, Feb 02, 2007 at 03:37:09PM -0800, Davide Libenzi wrote:
> Since I still think that the many-thousands potential async operations
> coming from network sockets are better handled with a classical event
> machanism [1], and since smooth integration of new async syscall into the
> standard
O_NONBLOCK supposedly hits the entire 'ofile' and not just the fd:
http://cr.yp.to/unix/nonblock.html
--
http://www.PowerDNS.com Open source, database driven DNS Software
http://netherlabs.nl Open and Closed source services
-
To unsubscribe from this list: send the line "unsubs
>From two comments posted to my "blog"
http://blog.netherlabs.nl/articles/2007/02/04/a-synchronous-programming
Excerpted from the diary of Dragonfly BSD,
http://www.dragonflybsd.org/status/diary.shtml
Remove the asynchronous syscall interface. It was an idea before its time.
However, keep the
On Fri, Feb 02, 2007 at 03:17:57PM -0800, Linus Torvalds wrote:
> threads. But you need to look at what it is we parallelize here, and ask
> yourself why we're doing what we're doing, and why people aren't *already*
> just using a separate thread for it.
Partially this is for the bad reason tha
On Thu, Feb 01, 2007 at 01:29:41PM -0800, Zach Brown wrote:
> >I want to try it on from a userspace perspective.
>
> Frankly, I'm not sure its ready for that yet. You're welcome to give
> it a try, but it's early enough that you're sure to hit problems
> almost immediately.
I'm counting on
On Tue, Jan 30, 2007 at 01:39:45PM -0700, Zach Brown wrote:
> sys_asys_submit() is added to let userspace submit asynchronous system calls.
> It specifies the system call number and arguments. A fibril is constructed
> for
> each call. Each starts with a stack which executes the given system ca
On Thu, Feb 01, 2007 at 03:11:03PM +0100, Martin Klejch wrote:
>I am a linux user (distro Ubuntu 6.10) with a 2.6.17.10-generic
> kernel running on my Acer TravelMate 4672LMi.
> I found a line "Please report the result to linux-kernel to fix this
> permanently" in my /var/log/kern.log but ha
On Mon, Jan 22, 2007 at 11:24:06AM -0500, Neil Horman wrote:
> The error was reported to me second hand. I'm expecting a reproducer
> (although
> to date, I'm still waiting for it, so I may have jumped the gun here). In
> fact,
I've asked for a repoducer weeks ago and nothing happened, nobody
On Tue, Jan 16, 2007 at 10:42:53PM +0100, Aurelien Jarno wrote:
> I have just tried a 2.6.20-rc5 kernel (I previously used a 2.6.19 one),
> and I have noticed that the IPv6 router advertisement functionality is
Can you check if rc1, rc2, rc3 etc do work?
Thanks.
--
http://www.PowerDNS.com
On Thu, Jan 11, 2007 at 01:25:16AM -0700, Sean Reifschneider wrote:
> Nope, I haven't looked in strace at all. It's definitely making it to
> user-space. The code in question is (abbreviated):
>
>if (select(0, (fd_set *)0, (fd_set *)0, (fd_set *)0, &t) != 0) {
> PyErr_SetFromErrno(PyE
On Thu, Jan 11, 2007 at 07:50:26AM -0800, Linus Torvalds wrote:
> Yes. O_DIRECT is really fundamentally broken. There's just no way to fix
> it sanely. Except by teaching people not to use it, and making the normal
Does this mean that it will eat data today? Or that it is broken because it
requi
On Sun, Dec 31, 2006 at 12:13:52PM -0500, Jon Smirl wrote:
> What is the simplest way to get open/close/read/write working under
> 2.6.20-rc2? I know this is horrible and shouldn't be done, I just want
> to get the driver working long enough to see if it is worth saving.
I'm no expert, but try loo
On Fri, Dec 29, 2006 at 07:28:55PM +0100, Dr.-Ing. Ingo D. Rullhusen wrote:
> i hope that's the right address for this little problem, which arises
> with linux kernel 2.4.34.
>
> If i compile the Advanced Power Management as module it do not work. If
> i try a depmod i get an unresolved symbols
On Sun, Dec 24, 2006 at 09:51:50AM -0600, Larry Finger wrote:
> This is a heads-up for anyone wishing to use bcm43xx-softmac on Linus's git
> tree, which is now at
> v2.6.20-rc2. There are two serious bugs in that code. Fixes are found below.
For some reason your patch does not apply to stock 2.6
On Mon, Dec 04, 2006 at 07:30:33AM -0500, Josef 'Jeff' Sipek wrote:
> The following patches are in a git repo at:
>
> git://git.kernel.org/pub/scm/linux/kernel/git/jsipek/unionfs.git
Jeff,
Do you have a pointer to a quick blurb on this work?
Thanks.
--
http://www.PowerDNS.com Open source
On Sun, Dec 03, 2006 at 05:53:23PM -0800, Bill Huey wrote:
> [8264, 996648, 0] {inode_init_once, fs/inode.c, 196}
> [8552, 996648, 0] {inode_init_once, fs/inode.c, 193}
Impressive, Bill!
How tightly is your work bound to -rt? Iow, any chance of separating the
two? Or shou
On Mon, Nov 27, 2006 at 06:26:34PM +, Eric Van Hensbergen wrote:
> This is the first cut of a device-mapper target which provides a write-back
> or write-through block cache. It is intended to be used in conjunction with
> remote block devices such as iSCSI or ATA-over-Ethernet, particularly i
On Sat, Sep 03, 2005 at 06:58:00PM -0400, Chuck Ebbert wrote:
> I just bought a new notebook. Here is the output from lspci using the latest
> pci.ids file from sourceforge:
I'd suggest researching before buying.
--
http://www.PowerDNS.com Open source, database driven DNS Software
http://
On Tue, Aug 23, 2005 at 04:49:14AM -0500, Davy Durham wrote:
> However, I'm getting segfaults because some pointers in places are
> getting set to low integer values (which didn't used to have those values).
epoll is pretty heavily benchmarked and hence tested. I don't entirely
understand the re
On Wed, Aug 03, 2005 at 02:14:03PM +0200, Jules Colding wrote:
> I am experiencing segfaults in mkdir, and mkdir alone, under high load.
I've seen errors like these happen, and they were kernel bugs.
> [0.00] Bootdata ok (command line is root=/dev/sda4 vga=0x31B
> video=vesafb:mtrr,ywrap
On Fri, Jul 29, 2005 at 08:10:32PM -0400, Xin Zhao wrote:
> Thanks. I will try. The only problem I have right now is I am using
> Xenolinux instead of standard Linux kernel, I cannot see the option to
> enable the frame pointer. But I will figure out how to enable that.
If you ever report somethi
On Fri, Jul 29, 2005 at 05:00:20PM -0400, Xin Zhao wrote:
> Thanks for your reply.
>
> Below is the code that print the kernel calling trace:
Can I suggest just turning on frame pointers like I suggested?
If you say Y here the resulting kernel image will be slightly larger
and slower, but it
On Fri, Jul 29, 2005 at 04:27:16PM -0400, Xin Zhao wrote:
> I supprisely noticed that the dump_stack results are quite different!
> Why did I get the calling traces below our_ssy_open() and above
> syscall_call()? Any thought on this? Many thanks!
This might depend on compiling with frame pointer
On Mon, Jul 25, 2005 at 07:47:45PM -0400, Karim Yaghmour wrote:
> Now if only I could remember what I talked about after I left the Black
> Thorn at 2h45am and the guy in the elevator at Les Suites pressed on a
> button and said "'M' for more beer" ...
I bet in involved 'M' for more markers, Kari
On Mon, Jul 25, 2005 at 11:12:25AM -0400, Christopher Friesen wrote:
> >Is do_gettimeofday supposed to be monotonous?
>
> Nope.
>
> > I'm seeing time go backward by tiny amounts, and then progressing.
>
> Are you running NTP? Corrections could cause this.
No. I am running a machine which often
On Mon, Jul 25, 2005 at 03:56:48AM -0400, Sonny Rao wrote:
> Hi, I had some trouble compiling it, I figured out that one needs
> libboost, but then I've also discovered that g++-3.4.4 and g++-4.0.1
> don't want to compile it while g++-3.3.5 works. (FYI, all of these were
> Ubuntu versions)
Yes, y
Is do_gettimeofday supposed to be monotonous? I'm seeing time go backward by
tiny amounts, and then progressing.
I'm using do_gettimeofday on a single processor, CONFIG_PREEMPT_NONE=y, and
saving stuff from generic_make_request - see http://ds9a.nl/diskstat for the
source. 2.6.13-rc3-mm1, HZ=250.
It is with distinct lack of pride that I release version 0.1 of diskstat
'Geeks in Black Thorn', a tool that allows you to generate the kinds of
graphs as presented in my OLS talk 'On faster application startup times:
Cache stuffing, seek profiling, adaptive preloading'. The lack of pride is
becaus
On Fri, Jul 22, 2005 at 04:18:46PM -0500, Davy Durham wrote:
> Please forgive and redirect me if this is not the right place to ask
> this question:
>
> I'm looking to write a sort of messaging system that would take input
> from any number of entities that "register" with it.. it would then
>
On Fri, Jul 22, 2005 at 01:01:32PM -0700, Paul Jackson wrote:
> Another vote in favor of relayfs here ...
At OLS the 'SystemTAP' idea was presented, which has been partially
implemented already, and it builds on relayfs as well. It dovetails nicely
with kprobes.
So it appears there is a sizeable
Hi Andrew,
I'm currently at OLS and presented http://ds9a.nl/diskstat yesterday, which
also references your ancient 'fboot' program.
I've also done experiments along those lines, and will be doing more of them
soon.
You mention it was a waste of time, do you recall if that meant:
1) that the t
>
> When I'm debugging something requiring detailed tracing, I don't want
> to have to think about whether the tracing tool has the particular
> behaviour, performance, data loss, and other such characteristics
> needed for my immediate needs. It is easier to code up some little
> ad hoc mechanis
On Sun, Jul 17, 2005 at 10:43:40AM -0500, Tom Zanussi wrote:
> It is racey - in this mode, there's nothing to keep the kernel from
> writing as much as it wants before the user side has a chance to read
> any of it. The only way this can be used safely is to make sure the
> kernel side isn't writ
On Sat, Jul 16, 2005 at 06:13:55PM -0500, Tom Zanussi wrote:
> relayfs itself only provides the buffering and file operations along
> with the kernel API for clients as documented in
> Documentation/filesystems/relayfs.txt. Applications still need some
> kind of communication between the kernel a
Ok, I'm working furiously on my OLS presentation (Wednesday, 3pm, be
there), but I'm running into a wall with relayfs, which I intend to use to
convey large amounts of disk statistics towards userspace.
Now, I've read Documentation/filesystems/relayfs.txt many times over, and I
don't get it.
It a
> that (at least for now) no *MAJOR* "rip it out, stomp on it, burn it and
> start over" parts of the kernel exist any longer? In other words, do you
These ideas continue to exist. This is partly due to increasing skills of
developers but also to the changing environment. You'll find literally
s
On Fri, Apr 15, 2005 at 10:00:39AM +0200, Eduard de Boer wrote:
> I use rsync to copy a bunch of files (several GB's) to the designated
> filesystems. But after a while, all file systems get corrupted and
> 'dmesg' lists all kinds of memory corruptions in 'dm' and so on.
> Hence, the file copying s
On Wed, Apr 13, 2005 at 11:35:12PM -0400, Gene Heskett wrote:
> How can we make the reply to an action go back out through the route
> it came in on? As it exists, queries, ssh sessions etc coming in
> thru a vpn from one router are being replied to on the default
> gateways card that hits the
On Sun, Apr 10, 2005 at 03:38:39PM -0700, Linus Torvalds wrote:
> compressed with zlib, they are all named by the sha1 file, and they all
Now I know this is a concious decision, but recent zlib allows you to write
out gzip content, at a cost of 14 bytes I think per file, by adding 32 to
the wind
On Wed, Apr 06, 2005 at 11:39:11PM +0400, Paul P Komkoff Jr wrote:
> Monotone is good, but I don't really know limits of sqlite3 wrt kernel
> case. And again, what we need to do to retain history ...
I would't fret over that :-) the big issue I have with sqlite3 is that it
interacts horribly with
On Tue, Apr 05, 2005 at 07:07:46PM -0400, Jeff Garzik wrote:
> As a tangent, I'd also like to see iSCSI over SCTP.
http://ds9a.nl/klogbot/?year=2005&month=3&day=21&hour=12.5
See conversation between 'nab_' and ahu (me).
--
http://www.PowerDNS.com Open source, database driven DNS Software
On Tue, Mar 22, 2005 at 10:32:44PM -0500, Jeff Garzik wrote:
> Wireless update, and various minor fixes.
>
> BK URL, patch URL, and changelog attached.
Jeff, akpm can you predict if this will make 2.6.12? Especially the wireless
& hostap stuff.
> net/ieee80211/Kconfig
On Sun, Mar 20, 2005 at 10:55:15PM +0100, Jan Engelhardt wrote:
> encfs being hard from kernel space? I've seen a whole cryptoloop in the
> kernel. Can't be "hard". At least unpracticable.
encfs is not cryptoloop - please follow the URL.
--
http://www.PowerDNS.com Open source, database dr
Miklos, Andrew,
I'm wondering what the status of Fuse is wrt to 2.6.12 or 2.6.13, especially
since the code is (now) perfectly orthogonal.
I just spent a short amount of time setting up and trying to break fusefs
and some of the filesystems based on it, and I did not succeed (in breaking
it).
S
On Thu, Feb 24, 2005 at 11:14:45AM +0100, J?rn Nettingsmeier wrote:
> ever since moving to ldap for passwd/group/shadow/hosts lookup, ping to
> a non-reachable host just freezes up and never returns:
>
> spunk:~ # strace ping herrnilsson
> execve("/bin/ping", ["ping", "herrnilsson"], [/* 61 vars
On Tue, Jan 18, 2005 at 10:39:35PM +0100, Fabio Coatti wrote:
> vmstat under load is the following, and config.gz attached. Of course I can
> provide any other needed detail; many thanks for any hint.
Looks mightily like DMA is not on, even though you compiled the PIIX driver
in, which lists
> 0
,
bert hubert
--
http://www.PowerDNS.com Versatile DNS Services
Trilab The Technology People
'SYN! .. SYN|ACK! .. ACK!' - the mating call of the internet
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of
On Tue, Jun 19, 2001 at 05:23:48PM -0400, Ed Connell wrote:
> If I run, for example, linuxthreads/Examples/ex1 (one thread prints 'a',
>one prints 'b') it will run fine. If I run it from a shell script
>(bash or ksh) with exec ex1
> it almost always hangs. When I do a "ps" I see the ori
On Tue, Jun 19, 2001 at 08:18:59PM +0100, Alan Cox wrote:
> > But that foregoes the point that the code is far more complex and harder to
> > make 'obviously correct', a concept that *does* translate well to userspace.
>
> There I disagree. Threads introduce parallelism that the majority of user
On Tue, Jun 12, 2001 at 12:06:40PM -0700, Kip Macy wrote:
> This may sound like flamebait, but its not. Linux threads are basically
> just processes that share the same address space. Their performance is
> measurably worse than it is on most commercial Unixes and FreeBSD.
Thread creation may be
and that no amount of prodding, cajoling or legal pressure
will get any company anywhere. That's just not the way. As we say "It's the
code, stupid!". Good luck!
Regards,
bert hubert
>
> -
> To unsubscribe from this list: send the line "unsubscribe linux-kernel&q
On Tue, May 15, 2001 at 09:54:33AM +0100, Alan Cox wrote:
> > So I would think that this block of new major number allocations holds for
> > 2.5 and not 2.4. Also, if I'm correct, 2.4 won't be needing a lot of new
> > major numbers anyhow.
>
> I wouldnt bet on that. Going to a 32bit dev_t interna
On Mon, May 14, 2001 at 11:58:39PM +0100, Alan Cox wrote:
> Yet another 2.5 project. If Linus wants to go play with name driven devices
> and you want to help him great, but if he'd care to put out
> linux-2.5.0.tar.gz _before_ starting that would be good for all of us
Well, that's one thing. 2.4
On Sun, May 13, 2001 at 09:38:53PM +0200, [EMAIL PROTECTED] wrote:
> Using 2.2.19 I discovered that running two simultaneous scp's (uses up whole
> capacity in TCP traffic) on a 115200bps full duplex serial port nullmodem cable
> causes the earlier started one to survive and the later to starve. R
On Fri, May 04, 2001 at 02:09:16PM -0700, [EMAIL PROTECTED] wrote:
> -BEGIN PGP SIGNED MESSAGE-
> Hash: SHA1
>
> Hello,
>
> I am working on an kernel module which forwards TCP segments from one
> interface to another (basic routing, no proxy or listener socket), but
> which needs to be a
On Thu, May 03, 2001 at 09:19:15PM +0100, Alan Cox wrote:
> If they are using glibc then you have the right to the object to link
> with the library and the library source under the LGPL. I dont know of any
> app using its own C lib
qmail is nearly there.
--
http://www.PowerDNS.com Versat
On Sat, Apr 28, 2001 at 02:21:29PM -0700, Ion Badulescu wrote:
> Hi Alan,
>
> Over the last week I've tried to upgrade a 4-CPU Xeon box to 2.2.19, but
> the it keeps locking up whenever the disks are stresses a bit, e.g. when
> updatedb is running. I get the following messages on the console:
>
On Sat, Apr 14, 2001 at 10:44:46AM -0700, Rob Landley wrote:
> Info. Never thought to check info. Here I am
> checking linuxdoc's howtos, man pages, and google...
> Sigh... I don't suppose there's an info2html tool
> anywhere?
'pinfo' can also be very useful - looks a lot like lynx, but proc
Hi everybody,
I want to write a tool that can extract information from the kernel about
the VM situation. Conceptually, I want something that looks like this:
# cacheinfo /var/mysql/data/powerdns/records.MYD
75% of blocks in memory
12% dirty
# cacheinfo -d -v /var/mysql/data/powerdns/records.MYD
On Thu, Mar 15, 2001 at 03:42:37PM +0200, Sampsa Ranta wrote:
> Yesterday I discovered that the load I can throw out to network seems to
> depend on other activities running on machine. I was able to get
> throughput of 33M/s with ATM when machine was idle, while I compiled
> kernel at same time,
On Sat, Mar 03, 2001 at 10:20:02PM +, Alan Cox wrote:
> > > Also try the techtalk mailing list on linuxchix - www.linuxchix.org, IIRC.
> > > A good place to ask "newbie" questions without being told to RTFM!
> >
> > You might even score!
>
> Of course its attitudes like that which leads them
On Sat, Mar 03, 2001 at 08:59:27PM +, James A. Sutherland wrote:
> > Another great place to ask questions is on irc, see
> > http://www.kernelnewbies.org
>
> Also try the techtalk mailing list on linuxchix - www.linuxchix.org, IIRC.
> A good place to ask "newbie" questions without being told
On Sat, Mar 03, 2001 at 11:52:22AM -0800, Peter Jay Salzman wrote:
> is there a more suitable mailing list for me to sign up for? debian has a
> mailing list both for package maintainers and those who are trying to learn
> how to be package maintainers.
>
> is there a similar thing with the ker
d a file - especially useful in combination
with mmap().
I don't really care where it is done, in glibc or in the kernel - but let's
honor this convention and not needlessly break code.
Regards,
bert hubert
--
http://www.PowerDNS.com Versatile DNS Services
Trilab
On Tue, Feb 27, 2001 at 11:18:39AM +0100, Rasmus Andersen wrote:
> terminate, apparently because the child does not receive the KILLUSR1
> (wild speculation)? Anyways, the parent process waits in wait4 and
> the child loops, waiting for the signal. This is not reproducable
> in 2.2.X (for me).
r
tly, there are problems if your dt*pps product is bigger than 32000,
which in practice won't ever happen.
Regards,
bert hubert
--
http://www.PowerDNS.com Versatile DNS Services
Trilab The Technology People
'SYN! .. SYN|ACK! .. ACK!' - the mating c
On Thu, Feb 22, 2001 at 04:35:35PM +0100, Heusden, Folkert van wrote:
> Hi,
Hi Folkert!
> I wrote a patch against 2.2.18 and 2.4.1 to have the kernel generate
> random PIDs. You can find it at http://vanheusden.com/Linux/security.php3
> (amongst other patches). Beware: pretty much experimental a
based on its pid of 1.
If you are PID 1, make sure that you handle SIGCHLDs etcetera from daemons.
Check the source of init, I suspect it does something which tells the kernel
'I am your init'.
Regards,
bert hubert
--
PowerDNS Versatile DNS Services
Trilab
some documentation can be found on
ftp://ftp.linux.org.uk/pub/linux/sct/fs/raw-io/raw-19990728.tar.gz
AFAIK you don't need any patches anymore if you run 2.4 or a recent 2.3.
Regards,
bert hubert
--
PowerDNS Versatile DNS Services
Trilab
On Wed, Jan 31, 2001 at 11:52:25AM -0500, Nathan Black wrote:
> I was wondering if there is a way to make the kernel write to disk faster.
> I need to maintain a 10 MB /sec write rate to a 10K scsi disk in a computer,
> but it caches and doesn't start writing to disk until I hit about 700 MB. At
On Wed, Jan 31, 2001 at 06:21:04PM +0100, Igmar Palsenberg wrote:
> Jan 31 18:01:57 base kernel: EXT2-fs error (device ide0(3,71)):
> ext2_new_inode:
> reserved inode or inode > inodes count - block_group = 0,inode=1
does fsck run on this fs find any errors?
> Igmar Palsenberg
> JDI Media Solut
se.
>From a kernel coders perspective, possibly. But a lot of SMB details are
pretty convoluted. Statemachines may produce more efficient code but can be
hell to maintain and expand. Bugs can hide in lots of corners.
Regards,
bert hubert
--
PowerDNS Versatile DNS Se
chine :-)
Regards,
bert hubert
--
PowerDNS Versatile DNS Services
Trilab The Technology People
'SYN! .. SYN|ACK! .. ACK!' - the mating call of the internet
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel&qu
> resources even at high loads?
>
> I'm using kernel version 2.2.14.
Try using 2.2.18 - lots of work has been done to get the eepro100 working
properly.
Regards,
bert hubert
--
PowerDNS Versatile DNS Services
Trilab The Technology P
ons the LARTC mailinglist
and archive.
Regards,
bert hubert
--
PowerDNS Versatile DNS Services
Trilab The Technology People
'SYN! .. SYN|ACK! .. ACK!' - the mating call of the internet
-
To unsubscribe from this list: send the line "unsubs
l. Just put a breakpoint in sys_mount(), or whatever it is called
and see what happens.
Linus is dead set against using a debugger in daily development but it is a
very valuable tool for quickly gaining insight.
Regards,
bert hubert
--
PowerDNS Versatile DNS Services
Trila
t. It is able to list filenames though.
Regards,
bert hubert
--
PowerDNS Versatile DNS Services
Trilab The Technology People
'SYN! .. SYN|ACK! .. ACK!' - the mating call of the internet
-
To unsubscribe from this list: send the line "unsu
[skip to the end for syslog snippet, full dmesg and lspci -v -v -v output &
.config]
Hi,
I'm fighting my PPro200 desktop to get it to support the USB pci card I just
bought. At first the entire computer became instable but choosing CMD640
chipset support solved that problem.
But now I find that
ernel at least does some of the work. Does anybody know if these socket
options work as they should under Linux, and if so, which versions?
I might even whip up a better entry for the manpage if given enough data.
Regards,
bert hubert
--
PowerDNS Versatile DNS Services
T
ated note, I seem to remember that back in the dark ages, the BSS
wasn't cleared. It said so somewhere in the Kernel Hackers Guide, I think.
Regards,
bert hubert
--
PowerDNS Versatile DNS Services
Trilab The Technology People
'SYN! .. SYN|
atches on a properly configured site. The site
> admins have all ICMP packets blocked on www.uow.edu.au so you are a PMTU
> blackhole and unreachable via my tunnel.
Or configure your host to do MSS Clamping. I have a similar situation over
here and no problems.
Regards,
bert hubert
--
1 - 100 of 130 matches
Mail list logo