RE: Netfilter: TARPIT Target

2005-02-17 Thread Massimo Cetra
> -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On Behalf Of Fao, Sean > Sent: Thursday, February 17, 2005 3:42 PM > To: linux-kernel@vger.kernel.org > Subject: Netfilter: TARPIT Target > > I wanted to use the TARPIT target provided by Netfilter, but > I am

Re: rmmod while module is in use

2005-02-17 Thread Zwane Mwaikambo
On Thu, 17 Feb 2005, Zwane Mwaikambo wrote: > On Thu, 17 Feb 2005, Davide Rossetti wrote: > > > maybe RTFM... > > a module: > > - char device driver for.. > > - a PCI device > > > > any clue as to how to protect from module unloading while there is still > > some > > process opening it??? have

[2.6 patch] kill include/linux/eeprom.h

2005-02-17 Thread Adrian Bunk
This patch kills include/linux/eeprom.h . Rationale: - it's only used by one single driver - most of this file are non-inline and non-static functions (sic) This patch moves all required contents of this file into ns83820.c and removes include/linux/eeprom.h (and makes setup_ee_mem_bitbanger

Re: Netfilter: TARPIT Target

2005-02-17 Thread Max Kellermann
On 2005/02/17 15:41, "Fao, Sean" <[EMAIL PROTECTED]> wrote: > I wanted to use the TARPIT target provided by Netfilter, but I am unable > to find the module in the kernel. Has it been removed or am I looking > in the wrong place? It is not in the mainstream kernel yet. You can find it in

Netfilter: TARPIT Target

2005-02-17 Thread Fao, Sean
I wanted to use the TARPIT target provided by Netfilter, but I am unable to find the module in the kernel. Has it been removed or am I looking in the wrong place? Thank you in advance, -- Sean E. Fao - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a

Re: AMD 64 and Kernel AGPart support

2005-02-17 Thread Paolo Ornati
On Thu, 17 Feb 2005 15:08:32 +0100 Marc Cramdal <[EMAIL PROTECTED]> wrote: > I have an AMD 64 (gentoo compiled for amd64) and I would like to > succeed in my video driver installation (ATI Radeon 9250 :-/). I would > need the agpgart support for the Sis Chipset, but all the entry for > agpgart

[2.6 patch] drivers/net/3c509.c: make 2 structs static

2005-02-17 Thread Adrian Bunk
This patch makes two needlessly global structs static. Signed-off-by: Adrian Bunk <[EMAIL PROTECTED]> --- drivers/net/3c509.c |4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) --- linux-2.6.11-rc3-mm2-full/drivers/net/3c509.c.old 2005-02-16 15:12:23.0 +0100 +++

Re: rmmod while module is in use

2005-02-17 Thread Zwane Mwaikambo
On Thu, 17 Feb 2005, Davide Rossetti wrote: > maybe RTFM... > a module: > - char device driver for.. > - a PCI device > > any clue as to how to protect from module unloading while there is still some > process opening it??? have I to sleep in the remove_one() pci driver function > till last

Re: 2.6.10: irq 12 nobody cared!

2005-02-17 Thread Zwane Mwaikambo
On Wed, 16 Feb 2005, Joshua Kwan wrote: >CPU0 > 0:1073809 XT-PIC timer > 1: 1291 XT-PIC i8042 > 2: 0 XT-PIC cascade > 4: 7 XT-PIC serial > 5: 4366 XT-PIC eth0 > 7: 12

E-cards for You

2005-02-17 Thread e-cards
Greetings! has sent you an E-Card -- a virtual postcard from TheArtHaven.com. You can pickup your card at the TheArtHaven.com website. -> If your e-mail is hot-link enabled, click here: http://thearthaven.com/cards/[EMAIL PROTECTED] Your E-Card will be available for 15 days from the

Re: [PATCH] Realtime preempt support for PPC

2005-02-17 Thread Matt Porter
On Thu, Feb 17, 2005 at 05:01:39AM -0800, Frank Rowand wrote: > Ingo Molnar wrote: > > * Frank Rowand <[EMAIL PROTECTED]> wrote: > > - could you submit the drivers/net/ibm_emac/ibm_emac_core.c patch > > upstream as well? > > Yes, I will do that. This one is already mainline, was posted a week

Re: [rfc/rft] Fujitsu B-Series Lifebook PS/2 TouchScreen driver

2005-02-17 Thread Kenan Esau
Am Mittwoch, den 16.02.2005, 22:35 +0100 schrieb Vojtech Pavlik: > On Wed, Feb 16, 2005 at 07:34:52PM +0100, Kenan Esau wrote: > > > > > + > > > > +/* > > > > + Enable absolute output -- ps2_command fails always but if > > > > + you leave this call out the touchsreen

Re: [patch 7/13] Encode and decode arbitrary XDR arrays

2005-02-17 Thread Adrian Bunk
On Tue, Feb 15, 2005 at 02:17:18PM -0500, Trond Myklebust wrote: > > net/sunrpc/xdr.c:1024:3: warning: mixing declarations and code >... > Please don't use these gcc extensions in the kernel. Just for the record: This is not a gcc extension - this is C99 but not supported by gcc 2.95 (which is a

[PATCH] PHYSDEVDRIVER=

2005-02-17 Thread Olaf Hering
For some reasons, PHYSDEVDRIVER can be for block events. So just check for that. base/class.c |4 ++-- base/core.c |4 ++-- block/genhd.c |4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) Signed-off-by: Olaf Hering <[EMAIL PROTECTED]> diff -purNx tags

Re: [BK] upgrade will be needed

2005-02-17 Thread Citizen Number 24655
On Thu, Feb 17, 2005 at 01:36:03PM +0100, Citizen Number 52642 wrote: > > > Easy, start working for OSDL, then start hacking arch or > > > whatever. Puff, you are his coworker, you are competing with Larry, > > > Linus license goes away. > > > > I don't know whether the kernel hackers that work

[PATCH 2/2] page table iterators

2005-02-17 Thread Nick Piggin
I am pretty surprised myself that I was able to consolidate all "page table range" functions into a single type of iterator (well, there are a couple of variations, but it's not too bad). I thought at least the functions which allocate new page tables would have to be seperate from those which

[PATCH 1/2] optimise copy page range

2005-02-17 Thread Nick Piggin
Some of you have seen this before. Just resending because I based my next patch on top of this one. Suggested by Linus: optimise a condition in the clear_p?d_range functions. Results in one less conditional branch on i386 with gcc-3.4.4 Signed-off-by: Nick Piggin <[EMAIL PROTECTED]> ---

Re: 2.6.11-rc4: touch pad misidentified (ALPS instead of ImPS/2)

2005-02-17 Thread Dmitry Torokhov
On Thu, 17 Feb 2005 13:37:55 +0100, Michael Brade <[EMAIL PROTECTED]> wrote: > Hi, > > the new 2.6.11-rc series has another problem for me, my touchpad (Toshiba > Laptop) stopped working. I guess this has to do with "[PATCH] ALPS touchpad > detection fix" that was posted about 4 weeks ago. The

Re: [OOPS] 2.6.10, ReiserFS errors, preempt

2005-02-17 Thread castet . matthieu
Hi, > I believe there's unresolved memory corruption bug in bttv... yes I think so, other have also similar problem : http://marc.theaimsgroup.com/?l=linux-kernel=110820804010204=2 http://marc.theaimsgroup.com/?t=11053154392=1=2 http://www.ussg.iu.edu/hypermail/linux/kernel/0412.3/0881.html

Re: -rc3 leaking NOT BIO [Was: Memory leak in 2.6.11-rc1?]

2005-02-17 Thread Parag Warudkar
On Wednesday 16 February 2005 10:48 pm, Horst von Brand wrote: > Does x86_64 use up a (freeable) register for the frame pointer or not? > I.e., does -fomit-frame-pointer have any effect on the generated code? {Took Linus out of the loop as he probably isn't interested} The generated code is

Re: Oops in 2.6.10-ac12 in kjournald (journal_commit_transaction)

2005-02-17 Thread Ralf Hildebrandt
* Ralf Hildebrandt <[EMAIL PROTECTED]>: > > The best way to do that is to ensure that the kernel was built with > > CONFIG_DEBUG_INFO, note the offending EIP value, then do > > > > # gdb vmlinux > > (gdb) l *0xc0 > > I'm rebuilding the ac12 kernel which crashed on me after just one day > and

Re: AMD 64 and Kernel AGPart support

2005-02-17 Thread Thomas Winischhofer
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 I wondered about this a couple of minutes ago, too. I have a SiS760 and can't enable AGP support either. What host bridge does your system have? If it's anything but a 760, the agpgart code for sis needs to be patched by adding the proper PCI ID. (All

Re: rmmod while module is in use

2005-02-17 Thread Sean Neakums
Davide Rossetti <[EMAIL PROTECTED]> writes: > maybe RTFM... > a module: > - char device driver for.. > - a PCI device Setting the 'owner' field of your char device's file_operations structure to THIS_MODULE should be sufficient to enable the kernel to manage the reference count for you. This is

AMD 64 and Kernel AGPart support

2005-02-17 Thread Marc Cramdal
Hello, I have an AMD 64 (gentoo compiled for amd64) and I would like to succeed in my video driver installation (ATI Radeon 9250 :-/). I would need the agpgart support for the Sis Chipset, but all the entry for agpgart are grayed, I can't change anything (Kernel 2.6.9, 2.6.10 ...) So is it

Re: rmmod while module is in use

2005-02-17 Thread linux-os
On Thu, 17 Feb 2005, Davide Rossetti wrote: maybe RTFM... a module: - char device driver for.. - a PCI device any clue as to how to protect from module unloading while there is still some process opening it??? have I to sleep in the remove_one() pci driver function till last process closes its

Re: [PATCH] Realtime preempt support for PPC

2005-02-17 Thread Frank Rowand
Ingo Molnar wrote: * Frank Rowand <[EMAIL PROTECTED]> wrote: I have attached a patch to add realtime support for PowerPC (32 bit only). [...] two comments: - why is us_to_tb needed? It just seems to add alot of unnecessary clutter to the patch, while it's not used anywhere. Sorry, the usage of

Re: -rc3 leaking NOT BIO [Was: Memory leak in 2.6.11-rc1?]

2005-02-17 Thread Parag Warudkar
On Wednesday 16 February 2005 06:52 pm, Andrew Morton wrote: > So it's probably an ndiswrapper bug? Andrew, It looks like it is a kernel bug triggered by NdisWrapper. Without NdisWrapper, and with just 8139too plus some light network activity the size-64 grew from ~ 1100 to 4500 overnight. Is

Re: [OOPS] 2.6.10, ReiserFS errors, preempt

2005-02-17 Thread Sami Farin
On Thu, Feb 17, 2005 at 01:59:47AM +0100, Guennadi Liakhovetski wrote: > Hi > > The machine was running updatedb, while I was trying to burn on an ATAPI > CDR (hdc) and read a SCSI DVD-ROM not very intensively, ran a couple of > random applications, when my /home partition (hda7) became

rmmod while module is in use

2005-02-17 Thread Davide Rossetti
maybe RTFM... a module: - char device driver for.. - a PCI device any clue as to how to protect from module unloading while there is still some process opening it??? have I to sleep in the remove_one() pci driver function till last process closes its file descriptor??? static void __devexit

2.6.11-rc4: touch pad misidentified (ALPS instead of ImPS/2)

2005-02-17 Thread Michael Brade
Hi, the new 2.6.11-rc series has another problem for me, my touchpad (Toshiba Laptop) stopped working. I guess this has to do with "[PATCH] ALPS touchpad detection fix" that was posted about 4 weeks ago. The kernel says while booting: newton kernel: mice: PS/2 mouse device common for all mice

Re: [BK] upgrade will be needed

2005-02-17 Thread Pavel Machek
Hi! > > Easy, start working for OSDL, then start hacking arch or > > whatever. Puff, you are his coworker, you are competing with Larry, > > Linus license goes away. > > I don't know whether the kernel hackers that work for IBM use the `free' > version of BK or not, but if they do, s/OSDL/IBM/

x86_64: AGP support for SiS760?

2005-02-17 Thread Thomas Winischhofer
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 The SiS760 is an AMD64 chipset and AGP support works nicely in 32bit mode. So why is AGP_SIS only configurable if !X86_64? Thomas - -- Thomas Winischhofer Vienna/Austria thomas AT winischhofer DOT net *** http://www.winischhofer.net twini AT

Re: [Linux-fbdev-devel] Re: i810 BUG summary. Was Re: [SoftwareSuspend-devel] [Announce] 2.1.7 for 2.6.11-rc4

2005-02-17 Thread mhf
On Thursday 17 February 2005 13:09, Antonino A. Daplas wrote: > On Thursday 17 February 2005 12:39, Nigel Cunningham wrote: > > Hi Michael. > > > > Perhaps this belongs with the framebuffer devel guys? > > I'll copy them now. Antonio et al, have I called it > > right? > > Is he using a

Re: [Linux-fbdev-devel] Re: i810 BUG summary. Was Re: [SoftwareSuspend-devel] [Announce] 2.1.7 for 2.6.11-rc4

2005-02-17 Thread Antonino A. Daplas
On Thursday 17 February 2005 12:39, Nigel Cunningham wrote: > Hi Michael. > > Perhaps this belongs with the framebuffer devel guys? I'll copy them > now. Antonio et al, have I called it right? Is he using a framebuffer console or vgacon? Tony - To unsubscribe from this list: send the line

Re: NTFS - Kernel memory leak in driver for kernel 2.4.28?

2005-02-17 Thread Anton Altaparmakov
On Wed, 2005-02-16 at 09:16 -0800, Martin Bogomolni wrote: > I should say that the malloc() succeeds, but the 16mb I need for the > buffer are not available. Since there is no swap/page file in the > embedded environment, there isn't enough memory left afterwards for > the buffer. > > After

Re: Swsusp, resume and kernel versions

2005-02-17 Thread Pavel Machek
Hi! > First of all I must say that swsusp has progressed alot and now works > very reliably, at least for my configuration, and I use it a lot. Great > job! > > But I think there is one pretty severe issue present - even if swsusp > is not enabled kernel should check if there is an image in swap

Re: [ACPI] Call for help: list of machines with working S3

2005-02-17 Thread Norbert Preining
On Die, 15 Feb 2005, Stefan Dösinger wrote: > > After deactivating DRI in the X config file and saving the states with > > your script (thanks) and turning off various stuff I get X running > > again. > > > > Questions: > > - DRI must be disabled I guess?! Even with newer X server (x.org)? > > Do

Re: [ACPI] Call for help: list of machines with working S3

2005-02-17 Thread Pavel Machek
Hi! > I think that it is the BIOS' job on S3-suspend > to save the video mode. On S3-resume the BIOS should > re-POST and restore the video mode. Can you find it written down somewhere? It would be certainly easier for me if every BIOS did re-post, but it is not the case on any new BIOS >

Re: [ACPI] Call for help: list of machines with working S3

2005-02-17 Thread Matthew Garrett
On Thu, 2005-02-17 at 01:16 -0500, Len Brown wrote: > Pavel, > I think that it is the BIOS' job on S3-suspend > to save the video mode. On S3-resume the BIOS should > re-POST and restore the video mode. I agree, but in the absence of spec requirement and some form of certification process, I

Re: Oops in 2.6.10-ac12 in kjournald (journal_commit_transaction)

2005-02-17 Thread Ralf Hildebrandt
* Andrew Morton <[EMAIL PROTECTED]>: > There have been a handful of reports - there's surely a race in there. > > Unfortunately I've yet to see a report from which we can identify the > offending line in the very large journal_commit_transaction() function. :( > > The best way to do that is

Re: [BK] upgrade will be needed

2005-02-17 Thread Sean
On Thu, February 17, 2005 4:27 am, Roland Kuhn said: > The difference comes after the merge. Suppose Andrew didn't push > everything to Linus. Then new patches come in, both trees change. In > this situation it is very time consuming with subversion to work out > the changes which still have to

Re: Bug in SLES8 kernel 2.4.x freezing HP DL740/760

2005-02-17 Thread Bernd Petrovitsch
On Wed, 2005-02-16 at 22:03 +0100, Oliver Antwerpen wrote: > Matthias-Christian Ott schrieb: > > Oliver Antwerpen wrote: > >> SuSE has patched UNICON into the kernel which will cause these servers > >> to hang when booted with vga=normal. The system will run fine in > >> fb-mode, but not in

Re: [ACPI] Call for help: list of machines with working S3

2005-02-17 Thread Vojtech Pavlik
On Thu, Feb 17, 2005 at 01:16:45AM -0500, Len Brown wrote: > Pavel, > I think that it is the BIOS' job on S3-suspend > to save the video mode. On S3-resume the BIOS should > re-POST and restore the video mode. Should. But this definitely is not the case on about 80+% of notebooks. You can

Re: [Fastboot] Re: [PATCH] /proc/cpumem

2005-02-17 Thread Eric W. Biederman
Itsuro Oda <[EMAIL PROTECTED]> writes: > Hi Eric, > > > The lack of a type field looses a fair amount of functionality compared > > to /proc/iomem. In particular you can't see where the ACPI data is. > > Hmm, restricting System RAM only may be too pessimistic. > (One of motivations of this

Re: [BK] upgrade will be needed

2005-02-17 Thread Geert Uytterhoeven
On Thu, 17 Feb 2005, Pavel Machek wrote: > > >> if they really need the more powerful features. Or we could donate > > >> some on a case by case basis. > > >> > > >> If the hackers who are using BK can reach agreement that it would be > > >> better if the BK they had didn't move forward unless

[Patch] passcred cleanup in struct socket

2005-02-17 Thread Herbert Poetzl
struct socket uses a 'bool' (unsigned char) to 'flag' the pass-credential option for sockets (which can be easily replaced by a flag) best, Herbert diff -NurpP --minimal linux-2.6.11-rc4/include/linux/net.h linux-2.6.11-rc4-sock/include/linux/net.h --- linux-2.6.11-rc4/include/linux/net.h

Re: possible leak in kernel 2.6.10-ac12

2005-02-17 Thread Maciej Soltysiak
Hello Pedro, Thursday, February 17, 2005, 12:28:15 AM, you wrote: > boot. It came to a point that it started swapping and the swap usage too > started to grow linearly. I had the same with swap being eaten especially by perl apps like qmail-scanner I think this helps: --- a/mm/vmscan.c

Re: [BK] upgrade will be needed

2005-02-17 Thread Roland Kuhn
Hi Clemens! On Feb 17, 2005, at 9:09 AM, Clemens Schwaighofer wrote: -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 02/17/2005 04:55 PM, Roland Kuhn wrote: That said, it would of course be possible to improve the internal workflow of our emperor penguin if he used subversion, but the

bt8xxx would not reset properly

2005-02-17 Thread Eyal Lebedinsky
I have a bt848 based TV tuner (see bootlog below) which sometimes goes on the blink (see failure log below). It will not reset, and a reboot does not fix it. I need to cycle the power to get it back online. I know that 2.6.10 and 2.6.11-rc4 did not restore operation when booted, and I recall this

Re: [PATCH] Fix possible race with 4level-fixup.h

2005-02-17 Thread Nick Piggin
Benjamin Herrenschmidt wrote: Index: linux-work/include/asm-generic/4level-fixup.h === --- linux-work.orig/include/asm-generic/4level-fixup.h 2005-01-24 17:09:49.0 +1100 +++ linux-work/include/asm-generic/4level-fixup.h

Re: [PATCH] Fix possible race with 4level-fixup.h

2005-02-17 Thread Benjamin Herrenschmidt
On Thu, 2005-02-17 at 19:33 +1100, Nick Piggin wrote: > Benjamin Herrenschmidt wrote: > > Hi ! > > > > When using 4level-fixup.h, a PMD page may end up beeing freed before the > > matching PGD entry is cleared due to the way the compatibility macros > > work. This can cause nasty races on some

Re: [PATCH] Fix buf in zeromap_pud_range() losing virtual address

2005-02-17 Thread Benjamin Herrenschmidt
On Thu, 2005-02-17 at 09:33 +0100, Andi Kleen wrote: > Benjamin Herrenschmidt <[EMAIL PROTECTED]> writes: > > > > zeromap_pud_range() is one of these page tables walking functions that > > split the address into a base and an offset. It forgets to add back the > > "base" when calling the lower

Re: [PATCH] Fix possible race with 4level-fixup.h

2005-02-17 Thread Nick Piggin
Benjamin Herrenschmidt wrote: Hi ! When using 4level-fixup.h, a PMD page may end up beeing freed before the matching PGD entry is cleared due to the way the compatibility macros work. This can cause nasty races on some architectures. This patch fixes it by defining pud_clear() to be pgd_clear().

Re: [PATCH] Fix buf in zeromap_pud_range() losing virtual address

2005-02-17 Thread Andi Kleen
Benjamin Herrenschmidt <[EMAIL PROTECTED]> writes: > > zeromap_pud_range() is one of these page tables walking functions that > split the address into a base and an offset. It forgets to add back the > "base" when calling the lower level zeromap_pmd_range(), thus passing a > bogus virtual address.

Vega Sobolev Lee

2005-02-17 Thread Rivera Fernando
Intensify sexual life ride http://Mahiques.jrz874383w.com/cs/?theman - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to [EMAIL PROTECTED] More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at

Baker Grassmann Michaels

2005-02-17 Thread Fornalczyk Robert
Enlarge staying power & fortitude http://Mielnick.jrz874383w.com/cs/?theman - To unsubscribe from this list: send the line "unsubscribe linux-x25" in the body of a message to [EMAIL PROTECTED] More majordomo info at http://vger.kernel.org/majordomo-info.html

Re: [BK] upgrade will be needed

2005-02-17 Thread Clemens Schwaighofer
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 02/17/2005 04:55 PM, Roland Kuhn wrote: > That said, it would of course be possible to improve the internal > workflow of our emperor penguin if he used subversion, but the > collaboration with others could not benefit the way it does with a >

Re: Swsusp, resume and kernel versions

2005-02-17 Thread Nigel Cunningham
Hi. On Thu, 2005-02-17 at 16:38, Dmitry Torokhov wrote: > On Thursday 17 February 2005 00:15, Nigel Cunningham wrote: > > On Thu, 2005-02-17 at 15:46, Dmitry Torokhov wrote: > > > But I think there is one pretty severe issue present - even if swsusp > > > is not enabled kernel should check if

Re: [PATCH] Realtime preempt support for PPC

2005-02-17 Thread Ingo Molnar
* Frank Rowand <[EMAIL PROTECTED]> wrote: > I have attached a patch to add realtime support for PowerPC (32 bit > only). [...] two comments: - why is us_to_tb needed? It just seems to add alot of unnecessary clutter to the patch, while it's not used anywhere. - could you submit the

Re: [PATCH] Realtime preempt support for PPC

2005-02-17 Thread Ingo Molnar
* Frank Rowand [EMAIL PROTECTED] wrote: I have attached a patch to add realtime support for PowerPC (32 bit only). [...] two comments: - why is us_to_tb needed? It just seems to add alot of unnecessary clutter to the patch, while it's not used anywhere. - could you submit the

Re: Swsusp, resume and kernel versions

2005-02-17 Thread Nigel Cunningham
Hi. On Thu, 2005-02-17 at 16:38, Dmitry Torokhov wrote: On Thursday 17 February 2005 00:15, Nigel Cunningham wrote: On Thu, 2005-02-17 at 15:46, Dmitry Torokhov wrote: But I think there is one pretty severe issue present - even if swsusp is not enabled kernel should check if there is an

Re: [BK] upgrade will be needed

2005-02-17 Thread Clemens Schwaighofer
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 02/17/2005 04:55 PM, Roland Kuhn wrote: That said, it would of course be possible to improve the internal workflow of our emperor penguin if he used subversion, but the collaboration with others could not benefit the way it does with a

Baker Grassmann Michaels

2005-02-17 Thread Fornalczyk Robert
Enlarge staying power fortitude http://Mielnick.jrz874383w.com/cs/?theman - To unsubscribe from this list: send the line unsubscribe linux-x25 in the body of a message to [EMAIL PROTECTED] More majordomo info at http://vger.kernel.org/majordomo-info.html

Vega Sobolev Lee

2005-02-17 Thread Rivera Fernando
Intensify sexual life ride http://Mahiques.jrz874383w.com/cs/?theman - To unsubscribe from this list: send the line unsubscribe linux-kernel in the body of a message to [EMAIL PROTECTED] More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at

Re: [PATCH] Fix buf in zeromap_pud_range() losing virtual address

2005-02-17 Thread Andi Kleen
Benjamin Herrenschmidt [EMAIL PROTECTED] writes: zeromap_pud_range() is one of these page tables walking functions that split the address into a base and an offset. It forgets to add back the base when calling the lower level zeromap_pmd_range(), thus passing a bogus virtual address. Most

Re: [PATCH] Fix possible race with 4level-fixup.h

2005-02-17 Thread Nick Piggin
Benjamin Herrenschmidt wrote: Hi ! When using 4level-fixup.h, a PMD page may end up beeing freed before the matching PGD entry is cleared due to the way the compatibility macros work. This can cause nasty races on some architectures. This patch fixes it by defining pud_clear() to be pgd_clear().

Re: [PATCH] Fix buf in zeromap_pud_range() losing virtual address

2005-02-17 Thread Benjamin Herrenschmidt
On Thu, 2005-02-17 at 09:33 +0100, Andi Kleen wrote: Benjamin Herrenschmidt [EMAIL PROTECTED] writes: zeromap_pud_range() is one of these page tables walking functions that split the address into a base and an offset. It forgets to add back the base when calling the lower level

Re: [PATCH] Fix possible race with 4level-fixup.h

2005-02-17 Thread Benjamin Herrenschmidt
On Thu, 2005-02-17 at 19:33 +1100, Nick Piggin wrote: Benjamin Herrenschmidt wrote: Hi ! When using 4level-fixup.h, a PMD page may end up beeing freed before the matching PGD entry is cleared due to the way the compatibility macros work. This can cause nasty races on some

Re: [PATCH] Fix possible race with 4level-fixup.h

2005-02-17 Thread Nick Piggin
Benjamin Herrenschmidt wrote: Index: linux-work/include/asm-generic/4level-fixup.h === --- linux-work.orig/include/asm-generic/4level-fixup.h 2005-01-24 17:09:49.0 +1100 +++ linux-work/include/asm-generic/4level-fixup.h

bt8xxx would not reset properly

2005-02-17 Thread Eyal Lebedinsky
I have a bt848 based TV tuner (see bootlog below) which sometimes goes on the blink (see failure log below). It will not reset, and a reboot does not fix it. I need to cycle the power to get it back online. I know that 2.6.10 and 2.6.11-rc4 did not restore operation when booted, and I recall this

Re: [BK] upgrade will be needed

2005-02-17 Thread Roland Kuhn
Hi Clemens! On Feb 17, 2005, at 9:09 AM, Clemens Schwaighofer wrote: -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 02/17/2005 04:55 PM, Roland Kuhn wrote: That said, it would of course be possible to improve the internal workflow of our emperor penguin if he used subversion, but the

Re: possible leak in kernel 2.6.10-ac12

2005-02-17 Thread Maciej Soltysiak
Hello Pedro, Thursday, February 17, 2005, 12:28:15 AM, you wrote: boot. It came to a point that it started swapping and the swap usage too started to grow linearly. I had the same with swap being eaten especially by perl apps like qmail-scanner I think this helps: --- a/mm/vmscan.c

[Patch] passcred cleanup in struct socket

2005-02-17 Thread Herbert Poetzl
struct socket uses a 'bool' (unsigned char) to 'flag' the pass-credential option for sockets (which can be easily replaced by a flag) best, Herbert diff -NurpP --minimal linux-2.6.11-rc4/include/linux/net.h linux-2.6.11-rc4-sock/include/linux/net.h --- linux-2.6.11-rc4/include/linux/net.h

Re: [BK] upgrade will be needed

2005-02-17 Thread Geert Uytterhoeven
On Thu, 17 Feb 2005, Pavel Machek wrote: if they really need the more powerful features. Or we could donate some on a case by case basis. If the hackers who are using BK can reach agreement that it would be better if the BK they had didn't move forward unless they got commercial

Re: [Fastboot] Re: [PATCH] /proc/cpumem

2005-02-17 Thread Eric W. Biederman
Itsuro Oda [EMAIL PROTECTED] writes: Hi Eric, The lack of a type field looses a fair amount of functionality compared to /proc/iomem. In particular you can't see where the ACPI data is. Hmm, restricting System RAM only may be too pessimistic. (One of motivations of this work is for

Re: [ACPI] Call for help: list of machines with working S3

2005-02-17 Thread Vojtech Pavlik
On Thu, Feb 17, 2005 at 01:16:45AM -0500, Len Brown wrote: Pavel, I think that it is the BIOS' job on S3-suspend to save the video mode. On S3-resume the BIOS should re-POST and restore the video mode. Should. But this definitely is not the case on about 80+% of notebooks. You can save

Re: Bug in SLES8 kernel 2.4.x freezing HP DL740/760

2005-02-17 Thread Bernd Petrovitsch
On Wed, 2005-02-16 at 22:03 +0100, Oliver Antwerpen wrote: Matthias-Christian Ott schrieb: Oliver Antwerpen wrote: SuSE has patched UNICON into the kernel which will cause these servers to hang when booted with vga=normal. The system will run fine in fb-mode, but not in plain text.

Re: [BK] upgrade will be needed

2005-02-17 Thread Sean
On Thu, February 17, 2005 4:27 am, Roland Kuhn said: The difference comes after the merge. Suppose Andrew didn't push everything to Linus. Then new patches come in, both trees change. In this situation it is very time consuming with subversion to work out the changes which still have to go

Re: Oops in 2.6.10-ac12 in kjournald (journal_commit_transaction)

2005-02-17 Thread Ralf Hildebrandt
* Andrew Morton [EMAIL PROTECTED]: There have been a handful of reports - there's surely a race in there. Unfortunately I've yet to see a report from which we can identify the offending line in the very large journal_commit_transaction() function. :( The best way to do that is to ensure

Re: [ACPI] Call for help: list of machines with working S3

2005-02-17 Thread Matthew Garrett
On Thu, 2005-02-17 at 01:16 -0500, Len Brown wrote: Pavel, I think that it is the BIOS' job on S3-suspend to save the video mode. On S3-resume the BIOS should re-POST and restore the video mode. I agree, but in the absence of spec requirement and some form of certification process, I don't

Re: [ACPI] Call for help: list of machines with working S3

2005-02-17 Thread Pavel Machek
Hi! I think that it is the BIOS' job on S3-suspend to save the video mode. On S3-resume the BIOS should re-POST and restore the video mode. Can you find it written down somewhere? It would be certainly easier for me if every BIOS did re-post, but it is not the case on any new BIOS To

Re: [ACPI] Call for help: list of machines with working S3

2005-02-17 Thread Norbert Preining
On Die, 15 Feb 2005, Stefan Dösinger wrote: After deactivating DRI in the X config file and saving the states with your script (thanks) and turning off various stuff I get X running again. Questions: - DRI must be disabled I guess?! Even with newer X server (x.org)? Do you use the

Re: Swsusp, resume and kernel versions

2005-02-17 Thread Pavel Machek
Hi! First of all I must say that swsusp has progressed alot and now works very reliably, at least for my configuration, and I use it a lot. Great job! But I think there is one pretty severe issue present - even if swsusp is not enabled kernel should check if there is an image in swap and

Re: NTFS - Kernel memory leak in driver for kernel 2.4.28?

2005-02-17 Thread Anton Altaparmakov
On Wed, 2005-02-16 at 09:16 -0800, Martin Bogomolni wrote: I should say that the malloc() succeeds, but the 16mb I need for the buffer are not available. Since there is no swap/page file in the embedded environment, there isn't enough memory left afterwards for the buffer. After taking

Re: [Linux-fbdev-devel] Re: i810 BUG summary. Was Re: [SoftwareSuspend-devel] [Announce] 2.1.7 for 2.6.11-rc4

2005-02-17 Thread Antonino A. Daplas
On Thursday 17 February 2005 12:39, Nigel Cunningham wrote: Hi Michael. Perhaps this belongs with the framebuffer devel guys? I'll copy them now. Antonio et al, have I called it right? Is he using a framebuffer console or vgacon? Tony - To unsubscribe from this list: send the line

Re: [Linux-fbdev-devel] Re: i810 BUG summary. Was Re: [SoftwareSuspend-devel] [Announce] 2.1.7 for 2.6.11-rc4

2005-02-17 Thread mhf
On Thursday 17 February 2005 13:09, Antonino A. Daplas wrote: On Thursday 17 February 2005 12:39, Nigel Cunningham wrote: Hi Michael. Perhaps this belongs with the framebuffer devel guys? I'll copy them now. Antonio et al, have I called it right? Is he using a framebuffer console or

x86_64: AGP support for SiS760?

2005-02-17 Thread Thomas Winischhofer
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 The SiS760 is an AMD64 chipset and AGP support works nicely in 32bit mode. So why is AGP_SIS only configurable if !X86_64? Thomas - -- Thomas Winischhofer Vienna/Austria thomas AT winischhofer DOT net *** http://www.winischhofer.net twini AT

Re: [BK] upgrade will be needed

2005-02-17 Thread Pavel Machek
Hi! Easy, start working for OSDL, then start hacking arch or whatever. Puff, you are his coworker, you are competing with Larry, Linus license goes away. I don't know whether the kernel hackers that work for IBM use the `free' version of BK or not, but if they do, s/OSDL/IBM/ and

2.6.11-rc4: touch pad misidentified (ALPS instead of ImPS/2)

2005-02-17 Thread Michael Brade
Hi, the new 2.6.11-rc series has another problem for me, my touchpad (Toshiba Laptop) stopped working. I guess this has to do with [PATCH] ALPS touchpad detection fix that was posted about 4 weeks ago. The kernel says while booting: newton kernel: mice: PS/2 mouse device common for all mice

rmmod while module is in use

2005-02-17 Thread Davide Rossetti
maybe RTFM... a module: - char device driver for.. - a PCI device any clue as to how to protect from module unloading while there is still some process opening it??? have I to sleep in the remove_one() pci driver function till last process closes its file descriptor??? static void __devexit

Re: [OOPS] 2.6.10, ReiserFS errors, preempt

2005-02-17 Thread Sami Farin
On Thu, Feb 17, 2005 at 01:59:47AM +0100, Guennadi Liakhovetski wrote: Hi The machine was running updatedb, while I was trying to burn on an ATAPI CDR (hdc) and read a SCSI DVD-ROM not very intensively, ran a couple of random applications, when my /home partition (hda7) became

Re: -rc3 leaking NOT BIO [Was: Memory leak in 2.6.11-rc1?]

2005-02-17 Thread Parag Warudkar
On Wednesday 16 February 2005 06:52 pm, Andrew Morton wrote: So it's probably an ndiswrapper bug? Andrew, It looks like it is a kernel bug triggered by NdisWrapper. Without NdisWrapper, and with just 8139too plus some light network activity the size-64 grew from ~ 1100 to 4500 overnight. Is

Re: [PATCH] Realtime preempt support for PPC

2005-02-17 Thread Frank Rowand
Ingo Molnar wrote: * Frank Rowand [EMAIL PROTECTED] wrote: I have attached a patch to add realtime support for PowerPC (32 bit only). [...] two comments: - why is us_to_tb needed? It just seems to add alot of unnecessary clutter to the patch, while it's not used anywhere. Sorry, the usage of

Re: rmmod while module is in use

2005-02-17 Thread linux-os
On Thu, 17 Feb 2005, Davide Rossetti wrote: maybe RTFM... a module: - char device driver for.. - a PCI device any clue as to how to protect from module unloading while there is still some process opening it??? have I to sleep in the remove_one() pci driver function till last process closes its

AMD 64 and Kernel AGPart support

2005-02-17 Thread Marc Cramdal
Hello, I have an AMD 64 (gentoo compiled for amd64) and I would like to succeed in my video driver installation (ATI Radeon 9250 :-/). I would need the agpgart support for the Sis Chipset, but all the entry for agpgart are grayed, I can't change anything (Kernel 2.6.9, 2.6.10 ...) So is it

Re: rmmod while module is in use

2005-02-17 Thread Sean Neakums
Davide Rossetti [EMAIL PROTECTED] writes: maybe RTFM... a module: - char device driver for.. - a PCI device Setting the 'owner' field of your char device's file_operations structure to THIS_MODULE should be sufficient to enable the kernel to manage the reference count for you. This is the

Re: AMD 64 and Kernel AGPart support

2005-02-17 Thread Thomas Winischhofer
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 I wondered about this a couple of minutes ago, too. I have a SiS760 and can't enable AGP support either. What host bridge does your system have? If it's anything but a 760, the agpgart code for sis needs to be patched by adding the proper PCI ID. (All

Re: Oops in 2.6.10-ac12 in kjournald (journal_commit_transaction)

2005-02-17 Thread Ralf Hildebrandt
* Ralf Hildebrandt [EMAIL PROTECTED]: The best way to do that is to ensure that the kernel was built with CONFIG_DEBUG_INFO, note the offending EIP value, then do # gdb vmlinux (gdb) l *0xc0whatever I'm rebuilding the ac12 kernel which crashed on me after just one day and will

Re: -rc3 leaking NOT BIO [Was: Memory leak in 2.6.11-rc1?]

2005-02-17 Thread Parag Warudkar
On Wednesday 16 February 2005 10:48 pm, Horst von Brand wrote: Does x86_64 use up a (freeable) register for the frame pointer or not? I.e., does -fomit-frame-pointer have any effect on the generated code? {Took Linus out of the loop as he probably isn't interested} The generated code is

Re: [OOPS] 2.6.10, ReiserFS errors, preempt

2005-02-17 Thread castet . matthieu
Hi, I believe there's unresolved memory corruption bug in bttv... yes I think so, other have also similar problem : http://marc.theaimsgroup.com/?l=linux-kernelm=110820804010204w=2 http://marc.theaimsgroup.com/?t=11053154392r=1w=2

<    1   2   3   4   5   6   >