linux-kernel mailing list

FromSubjectsort iconDate
Phil Kaslo
Re: Asus P5B-VM motherboard: cd drive malfunctions if inter...
It is a pata cd drive, attached to the JMicron controller. I'll look into whether the usb ports power off on shutdown. Thanks, Phil -
Mar 12, 7:48 pm 2007
Rusty Russell
CONFIG_REORDER Kconfig help strange sentence.
OK, this confused me: Function reordering (REORDER) [N/y/?] (NEW) ? This option enables the toolchain to reorder functions for a more optimal TLB usage. If you have pretty much any version of binutils, this can increase your kernel build time by roughly one minute. "If you have pretty much any version of binutils"? Huh? You mean "This will slow your kernel build by about a minute"? Rusty. -
Mar 12, 7:18 pm 2007
Andi Kleen
Re: CONFIG_REORDER Kconfig help strange sentence.
Yes. Lots of sections seem to trigger some quadratic behaviour in ld. It might be fixed in some unreleased CVS version though (not 100% sure) -Andi -
Mar 12, 7:56 pm 2007
Zachary Amsden
[PATCH] Fix vmi time header bug
Some gcc put this function in .init.text because the header didn't match. For 2.6.21-rc. Zach
Mar 12, 6:58 pm 2007
Ethan Solomita
[PATCH 1/1] mm: Inconsistent use of node IDs
This patch corrects inconsistent use of node numbers (variously "nid" or "node") in the presence of fake NUMA. Both AMD and Intel x86_64 discovery code will determine a CPU's physical node and use that node when calling numa_add_cpu() to associate that CPU with the node, but numa_add_cpu() treats the node argument as a fake node. This physical node may not exist within the fake nodespace, and even if it does, it will likely incorrectly associate a CPU with a fake memory node that may not share the ...
Mar 12, 6:51 pm 2007
Andi Kleen
Re: [PATCH 1/1] mm: Inconsistent use of node IDs
Sorry, but when you ask for NUMA emulation you will get it. I don't see any point in a "half way only for some subsystems I like" NUMA emulation. It's unlikely that your ideas of where it is useful and where is not matches other NUMA emulation user's ideas too. Besides adding such a secondary node space would be likely a huge long term mainteance issue. I just can it see breaking with every non trivial change. NACK. -Andi -
Mar 12, 7:19 pm 2007
Ethan Solomita
Re: [PATCH 1/1] mm: Inconsistent use of node IDs
It's consistent to call node_online() with a physical node ID when the I don't understand your comments. My code is intended to work for all systems. If the system is non-NUMA by nature, then all CPUs map to fake node 0. As an example, on a two chip dual-core AMD opteron system, there are 4 "cpus" where CPUs 0 and 1 are close to the first half of memory, and CPUs 2 and 3 are close to the second half. Without this change CPUs 2 and 3 are mapped to fake node 1. This results in awful perf...
Mar 12, 7:54 pm 2007
Mathieu Desnoyers
Djprobes questions
Hi Masami, I recently had to add support for inline code patching on i386 to my marker infrastructure. Clearly, it looks like what is done in djprobes, with the main difference that I only patch the immediate value of a 2 bytes "load immediate" instruction. I think I found a solution to one of the main issues with djprobes : it currently has to wait for each CPU to hit the probe before being sure that it's safe to patch the code with something else than an int3. This is due to PIII errata 49, wh...
Mar 12, 6:37 pm 2007
Phil Kaslo
Asus P5B-VM motherboard: cd drive malfunctions if internal ...
Hello, I have a new machine, Asus motherboard, in which the cd drive malfunctions if the internal nic on the mb (RealTek RTL8168b/8111b) is actively in use. The cd drive, on ide2, is, as per dmesg, a Sony: ide2: BM-DMA at 0xa400-0xa407, BIOS settings: hde:pio, hdf:pio hde: SONY DVD RW AW-Q170A, ATAPI CD/DVD-ROM drive hde: ATAPI 48X DVD-ROM DVD-R CD-R/RW drive, 2048kB Cache, UDMA(66) I've seen this on 3 of these new machines so far. One has a LITE-ON cdrom: hde: LITE-ON DVDRW LH-20A1H...
Mar 12, 6:12 pm 2007
Mark Lord
Re: Asus P5B-VM motherboard: cd drive malfunctions if inter...
Is that a PATA cd-drive? If so, then you must have hooked it up to the JMicron IDE controller. That driver is just plain buggy. I gave up on it for my own P5B-VM. The libata version works better than the drivers/ide, but I gave up on it and got a SATA DVD/RW drive. Off topic: do your USB ports power off when the system shuts down? Mine don't -- the +5V continues on them.. I'd love a tip on how to turn them off completely at shutdown. Cheers -
Mar 12, 6:35 pm 2007
Rafael J. Wysocki
[PATCH 0/3] swsusp: Stop using page flags
Hi, The following three patches make swsusp use its own data structures for memory management instead of special page flags, so that these page flags can be used for other purposes. Greetings, Rafael -- If you don't have the time to read, you don't have the time or the tools to write. - Stephen King -
Mar 12, 5:14 pm 2007
Rafael J. Wysocki
[PATCH 2/3] swsusp: Do not use page flags
From: Rafael J. Wysocki <rjw@sisk.pl> Make swsusp use memory bitmaps instead of page flags for marking 'nosave' and free pages. This allows us to 'recycle' two page flags that can be used for other purposes. Also, the memory needed to store the bitmaps is allocated when necessary (ie. before the suspend) and freed after the resume which is more reasonable. The patch is designed to minimize the amount of changes and there are some nice simplifications and optimizations possible on top of i...
Mar 12, 5:19 pm 2007
Rafael J. Wysocki
[PATCH 3/3] mm: Remove unused page flags
From: Rafael J. Wysocki <rjw@sisk.pl> Remove the two page flags that were previously used by swsusp and are no longer needed. Signed-off-by: Rafael J. Wysocki <rjw@sisk.pl> Acked-by: Pavel Machek <pavel@ucw.cz> --- include/linux/page-flags.h | 12 ------------ 1 file changed, 12 deletions(-) Index: linux-2.6.21-rc3/include/linux/page-flags.h =================================================================== --- linux-2.6.21-rc3.orig/include/linux/page-flags.h +++ linux...
Mar 12, 5:20 pm 2007
Rafael J. Wysocki
[PATCH 1/3] swsusp: Use inline functions for changing page f...
From: Rafael J. Wysocki <rjw@sisk.pl> Replace direct invocations of SetPageNosave(), SetPageNosaveFree() etc. with calls to inline functions that can be changed in subsequent patches without modifying the code calling them. Signed-off-by: Rafael J. Wysocki <rjw@sisk.pl> Acked-by: Pavel Machek <pavel@ucw.cz> --- include/linux/suspend.h | 33 +++++++++++++++++++++++++++++++++ kernel/power/snapshot.c | 48 +++++++++++++++++++++++++----------------------- mm/page_alloc.c ...
Mar 12, 5:16 pm 2007
Marc St-Jean
[PATCH] mtd: PMC MSP71xx flash/rootfs mappings
[PATCH] mtd: PMC MSP71xx flash/rootfs mappings Patch to add flash and rootfs mappings for the PMC-Sierra MSP71xx devices. This patch references some platform support files previously submitted to the linux-mips@linux-mips.org list. Thanks, Marc Signed-off-by: Marc St-Jean <Marc_St-Jean@pmc-sierra.com> --- This patch was first posted on Feb. 23rd. I didn't receive any feedback but I'm reposting based on feedback to other patches. If this is no longer the maintainer address please l...
Mar 12, 5:07 pm 2007
Ian McDonald
Slab corruption - file_free_rcu ?
Folks, I'm getting this sort of message in my logs on occasion and my system dies on me some time later. Mar 13 08:52:02 localhost kernel: [ 343.931624] Slab corruption: start=d2756f04, len=208 Mar 13 08:52:02 localhost kernel: [ 343.932366] Redzone: 0x5a2cf071/0x5a2cf071. Mar 13 08:52:02 localhost kernel: [ 343.932797] Last user: [<c0155562>](file_free_rcu+0xf/0x11) Mar 13 08:52:02 localhost kernel: [ 343.933429] 090: 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 6b 75 6b Mar 13 08:52:02 l...
Mar 12, 4:52 pm 2007
Andrew Johnson
[PATCH] Software Suspend: Fix suspend when console is in VT_...
Hi All, When the console is in VT_AUTO+KD_GRAPHICS mode, switching to the SUSPEND_CONSOLE fails, resulting in vt_waitactive() waiting indefinitely or until the task is interrupted. This patch tests if a console switch can occur in set_console() and returns early if a console switch is not possible. -- Andrew Signed-off-by: Andrew Johnson <ajohnson@intrinsyc.com> --- diff -rup linux-2.6.20.1/drivers/char/vt.c linux/drivers/char/vt.c --- linux-2.6.20.1/drivers/char/vt.c 2007-02-19 22:34...
Mar 12, 4:29 pm 2007
Pavel Machek Mar 12, 4:58 pm 2007
Dmitriy Monakhov
[PATCH 1/2] mm: move common segment checks to separate helpe...
Changes against v6 - remove duplicated code from xfs,ntfs - export generic_segment_checks, because it used by xfs,nfs now. - change arguments initialization pocily according to Nick's comments. Tested with: ltp readv/writev tests Signed-off-by: Monakhov Dmitriy <dmonakhov@openvz.org> --- fs/ntfs/file.c | 21 ++--------- fs/xfs/linux-2.6/xfs_lrw.c | 22 ++---------- include/linux/fs.h | 3 ++ mm/filemap.c | 83 ++++++++++++++++++++++++--------...
Mar 12, 4:19 pm 2007
Michael S. Tsirkin
Re: [2/6] 2.6.21-rc2: known regressions
I just retested - 'date' does not advance after resume for me. This is with NO_HZ *not* set. Sorry it took so long. -- MST -
Mar 12, 4:20 pm 2007
Dmitriy Monakhov
[PATCH 2/2] incorrect direct io error handling (v7)
Changes against v6: - Handle direct_io failure inside generic_file_direct_write() as it was recommend by Andrew (during discussion v1), and by Nick (during discussion v6). - change comments, make it more clear. - one more time check what __generic_file_aio_write_nolock() always called under i_mutex for non blkdev files. Tested with: fsstress, manual direct_io tests Log: If generic_file_direct_write() has fail (ENOSPC condition) inside __generic_file_aio_write_nolock() it may have i...
Mar 12, 4:19 pm 2007
Stefan Mehnert Mar 12, 5:08 pm 2007
Ravinandan Arakali (...
Clarification required about select vs wake_up race condition
Hi, I am facing following problem and was wondering if somebody could help me out. Our char driver(pretty much like all other char drivers) does a poll_wait() and returns status depending on whether data is available to be read. Even though some data is available to be read(verified using one of our internal commands), the select() never wakes up, inspite of any no. of messages sent. To understand this, I was looking at the code of select vs wake_up_interruptible(). I feel I am misunderstandi...
Mar 12, 3:44 pm 2007
Al Boldi
Re: [PATCH][RSDL-mm 0/7] RSDL cpu scheduler for 2.6.21-rc3-mm2
I don't think we have to worry about DoS with this scheduler. Note the load average; it happily wraps. top - 22:34:02 up 8 min, 0 users, load average: 615.32, 746.30, 929.15 Tasks: 3379 total, 3336 running, 43 sleeping, 0 stopped, 0 zombie Cpu(s): 8.8% user, 21.1% system, 10.0% nice, 56.5% idle, 3.6% IO-wait Mem: 499480k total, 414640k used, 84840k free, 1956k buffers Swap: 1020088k total, 0k used, 1020088k free, 8296k cached PID PR NI VIRT RES SHR ...
Mar 12, 3:53 pm 2007
Stephen Hemminger
Re: TCP MSG_PEEK kernel assertions ...
On Fri, 09 Mar 2007 16:43:10 -0500 Also please include more information, like what kernel version and what No, that driver is worse, try the skge driver. The sk98lin driver -- Stephen Hemminger <shemminger@linux-foundation.org> -
Mar 12, 3:22 pm 2007
Davide Libenzi
[patch 1/9] signalfd/timerfd v4 - anonymous inode source ...
This patch add an anonymous inode source, to be used for files that need and inode only in order to create a file*. We do not care of having an inode for each file, and we do not even care of having different names in the associated dentries (dentry names will be same for classes of file*). This allow code reuse, and will be used by epoll, signalfd and timerfd (and whatever else there'll be). Signed-off-by: Davide Libenzi <davidel@xmailserver.org> - Davide Index: linux-2....
Mar 12, 3:19 pm 2007
Davide Libenzi
[patch 7/9] signalfd/timerfd v4 - timerfd wire up i386 arch ...
This patch wire the timerfd system call to the i386 architecture. Signed-off-by: Davide Libenzi <davidel@xmailserver.org> - Davide Index: linux-2.6.20.ep2/arch/i386/kernel/syscall_table.S =================================================================== --- linux-2.6.20.ep2.orig/arch/i386/kernel/syscall_table.S 2007-03-12 11:28:05.000000000 -0700 +++ linux-2.6.20.ep2/arch/i386/kernel/syscall_table.S 2007-03-12 11:47:42.000000000 -0700 @@ -320,3 +320,4 @@ .long sys_getcpu ...
Mar 12, 3:19 pm 2007
Davide Libenzi
[patch 6/9] signalfd/timerfd v4 - timerfd core ...
This patch introduces a new system call for timers events delivered though file descriptors. This allows timer event to be used with standard POSIX poll(2), select(2) and read(2). As a consequence of supporting the Linux f_op->poll subsystem, they can be used with epoll(2) too. The system call is defined as: int timerfd(int ufd, int clockid, int flags, const struct itimerspec *utmr); The "ufd" parameter allows for re-use (re-programming) of an existing timerfd w/out going through the close/op...
Mar 12, 3:19 pm 2007
Davide Libenzi
[patch 9/9] signalfd/timerfd v4 - timerfd compat code ...
This patch implement the necessary compat code for the timerfd system call. Signed-off-by: Davide Libenzi <davidel@xmailserver.org> - Davide Index: linux-2.6.20.ep2/fs/compat.c =================================================================== --- linux-2.6.20.ep2.orig/fs/compat.c 2007-03-12 11:28:03.000000000 -0700 +++ linux-2.6.20.ep2/fs/compat.c 2007-03-12 11:47:46.000000000 -0700 @@ -2257,3 +2257,23 @@ return sys_signalfd(ufd, ksigmask, sizeof(sigset_t)); } + +asmli...
Mar 12, 3:19 pm 2007
Davide Libenzi
[patch 2/9] signalfd/timerfd v4 - signalfd core ...
This patch series implements the new signalfd() system call. I took part of the original Linus code (and you know how badly it can be broken :), and I added even more breakage ;) Signals are fetched from the same signal queue used by the process, so signalfd will compete with standard kernel delivery in dequeue_signal(). If you want to reliably fetch signals on the signalfd file, you need to block them with sigprocmask(SIG_BLOCK). This seems to be working fine on my Dual Opteron machine. I made a qui...
Mar 12, 3:19 pm 2007
Davide Libenzi
[patch 8/9] signalfd/timerfd v4 - timerfd wire up x86_64 arc...
This patch wire the timerfd system call to the x86_64 architecture. Signed-off-by: Davide Libenzi <davidel@xmailserver.org> - Davide Index: linux-2.6.20.ep2/arch/x86_64/ia32/ia32entry.S =================================================================== --- linux-2.6.20.ep2.orig/arch/x86_64/ia32/ia32entry.S 2007-03-12 11:28:04.000000000 -0700 +++ linux-2.6.20.ep2/arch/x86_64/ia32/ia32entry.S 2007-03-12 11:47:44.000000000 -0700 @@ -720,4 +720,5 @@ .quad sys_getcpu .quad sys...
Mar 12, 3:19 pm 2007
Davide Libenzi
[patch 3/9] signalfd/timerfd v4 - signalfd wire up i386 arch...
This patch wire the signalfd system call to the i386 architecture. Signed-off-by: Davide Libenzi <davidel@xmailserver.org> - Davide Index: linux-2.6.20.ep2/arch/i386/kernel/syscall_table.S =================================================================== --- linux-2.6.20.ep2.orig/arch/i386/kernel/syscall_table.S 2007-03-11 14:28:28.000000000 -0700 +++ linux-2.6.20.ep2/arch/i386/kernel/syscall_table.S 2007-03-11 14:28:44.000000000 -0700 @@ -319,3 +319,4 @@ .long sys_move_pag...
Mar 12, 3:19 pm 2007
H. Peter Anvin
[PATCH] cleanfile: a script to clean up stealth whitespace
This script cleans up various classes of stealth whitespace. In particular, it cleans up: - Whitespace (spaces or tabs)before newline; - DOS line endings (CR before LF); - Space before tab (spaces are deleted or converted to tabs); - Empty lines at end of file. Signed-off-by: H. Peter Anvin <hpa@zytor.com> --- scripts/cleanfile | 126 +++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 126 insertions(+), 0 deletions(-) create mode 100755 scripts/cleanfile diff -...
Mar 12, 3:16 pm 2007
Davide Libenzi
[patch 4/9] signalfd/timerfd v4 - signalfd wire up x86_64 ar...
This patch wire the signalfd system call to the x86_64 architecture. Signed-off-by: Davide Libenzi <davidel@xmailserver.org> - Davide Index: linux-2.6.20.ep2/include/asm-x86_64/unistd.h =================================================================== --- linux-2.6.20.ep2.orig/include/asm-x86_64/unistd.h 2007-03-11 14:28:28.000000000 -0700 +++ linux-2.6.20.ep2/include/asm-x86_64/unistd.h 2007-03-11 14:28:46.000000000 -0700 @@ -619,8 +619,10 @@ __SYSCALL(__NR_vmsplice, sys_vm...
Mar 12, 3:19 pm 2007
Davide Libenzi
[patch 5/9] signalfd/timerfd v4 - signalfd compat code ...
This patch implement the necessary compat code for the signalfd system call. Signed-off-by: Davide Libenzi <davidel@xmailserver.org> - Davide Index: linux-2.6.20.ep2/fs/compat.c =================================================================== --- linux-2.6.20.ep2.orig/fs/compat.c 2007-03-11 14:28:28.000000000 -0700 +++ linux-2.6.20.ep2/fs/compat.c 2007-03-11 14:28:48.000000000 -0700 @@ -46,6 +46,7 @@ #include <linux/rwsem.h> #include <linux/tsacct_kern.h> #inc...
Mar 12, 3:19 pm 2007
Marc St-Jean
[PATCH] drivers: PMC MSP71xx LED driver
[PATCH] drivers: PMC MSP71xx LED driver Patch to add LED driver for the PMC-Sierra MSP71xx devices. This patch references some platform support files previously submitted to the linux-mips@linux-mips.org list. Thanks, Marc Signed-off-by: Marc St-Jean <Marc_St-Jean@pmc-sierra.com> --- Re-posting patch with recommended changes: -Cleanup on style and formatting for comments, macros, etc. -Removed unnecessary memset. -Removed unnecessary inlines. -Moved some driver private data structu...
Mar 12, 2:50 pm 2007
Michal Hocko
Re: mm: migrate_pages using
I am not sure about that. When I looked inside lru_cache_add, it will call __pagevec_lru_add if per-cpu pagevec goes empty and this function will add all pages to the zone specific inactive list. I want to prevent that because I need to use original page for other purposes and so it can't be in inactive list. So I have created little change to unmap_and_move function so that original page is added back tu LRU only if required. migrate_pages uses variant with put_lru parameter and I am using __m...
Mar 12, 2:57 pm 2007
Haavard Skinnemoen
[PATCH -mm] AVR32: Implement utrace support
From: Haavard Skinnemoen <hskinnemoen@atmel.com> Rip out most of the ptrace code for AVR32 and replace it with the much nicer utrace stuff. It builds in all possible combinations of CONFIG_UTRACE and CONFIG_PTRACE, and it seems to work as far as I've tested it with strace and some simple debugging with gdb. Signed-off-by: Haavard Skinnemoen <hskinnemoen@atmel.com> --- arch/avr32/kernel/entry-avr32b.S | 10 +- arch/avr32/kernel/process.c | 2 - arch/avr32/kernel/ptrace.c ...
Mar 12, 2:34 pm 2007
Con Kolivas Mar 12, 2:36 pm 2007
Andy Whitcroft
[PATCH 3/3] lumpy: only count taken pages as scanned
When scanning the order sized area around the tag page we pull all pages of the matching active state; the non-matching pages are not otherwise affected. We currently count these as scanned increasing the apparent scan rates. Previously we would only count a page scanned if it was actually removed from the LRU, either then being reclaimed or rotated back onto the head of the LRU. The effect of this is to cause reclaim to terminate artificially early when the scan count is reached, reducing effe...
Mar 12, 2:24 pm 2007
Andy Whitcroft
[PATCH 1/3] Lumpy Reclaim V4
When we are out of memory of a suitable size we enter reclaim. The current reclaim algorithm targets pages in LRU order, which is great for fairness at order-0 but highly unsuitable if you desire pages at higher orders. To get pages of higher order we must shoot down a very high proportion of memory; >95% in a lot of cases. This patch set adds a lumpy reclaim algorithm to the allocator. It targets groups of pages at the specified order anchored at the end of the active and inactive lists. Th...
Mar 12, 2:23 pm 2007
Dave Hansen
Re: [PATCH 1/3] Lumpy Reclaim V4
Would having something like: static inline int pfn_in_zone_hole(unsigned long pfn) { #ifdef CONFIG_HOLES_IN_ZONE if (unlikely(!pfn_valid(pfn))) return 1; #endif return 0; } help us out? page_is_buddy() and page_is_consistent() appear to do the exact same thing, with the same #ifdef. -- Dave -
Mar 12, 2:36 pm 2007
Andy Whitcroft
Re: [PATCH 1/3] Lumpy Reclaim V4
Funny you mention that. I have a patch hanging around which basically does that. I'd been planning to send it up. It adds a pfn_valid_within() which you use when you already know a relative page within the MAX_ORDER block is valid. I'd not sent it cause I thought the name sucked. -apw -
Mar 12, 2:48 pm 2007
Andy Whitcroft
[PATCH 2/3] lumpy: back out removal of active check in isola...
As pointed out by Christop Lameter it should not be possible for a page to change its active/inactive state without taking the lru_lock. Reinstate this safety net. Signed-off-by: Andy Whitcroft <apw@shadowen.org> Acked-by: Mel Gorman <mel@csn.ul.ie> --- diff --git a/mm/vmscan.c b/mm/vmscan.c index bda63a0..d7a0860 100644 --- a/mm/vmscan.c +++ b/mm/vmscan.c @@ -691,10 +691,13 @@ static unsigned long isolate_lru_pages(unsigned long nr_to_scan, nr_taken++; break; - defa...
Mar 12, 2:23 pm 2007
Andy Whitcroft
[PATCH 0/3] Lumpy Reclaim V5
Following this email are three patches which represent the current state of the lumpy reclaim patches; collectively lumpy V5. This patch kit is against 2.6.21-rc3-mm2. This stack is split out to show the incremental changes in this version. This contains one fixup following on from Christoph Lameters feedback and one change affecting scan rates. Andrew, please consider for -mm. Comparitive testing between lumpy-V4 and lump-V5 generally shows a small improvement, coming from the slight increase i...
Mar 12, 2:22 pm 2007
Vitaliyi
Fwd: libata extension
---------- Forwarded message ---------- From: Vitaliyi <imgrey@gmail.com> Date: Mar 12, 2007 7:03 PM Subject: Re: libata extension How about soft-reset, is it possible to reach Device Control Register ? Seems not. I was thinking about patch to libata which allow to use Control Register. In the perfect case i would like to be able to execute vendor command set (reverse engineered). Is it possible to control timeouts in user space precisely enough and get rid of unnecessary kernel error me...
Mar 12, 1:12 pm 2007
Robert P. J. Day
module.h and moduleparam.h: more header file pedantry
well, since my last adventure with header files went over so swimmingly, i might as well keep going. :-) to my surprise, i learned only today that module.h includes moduleparam.h, which flies in the face of all of the documentation i've ever read which was adamant that i *had* to include moduleparam.h if i was using parameters. i'm guessing this comes as a surprise to the 400+ header files which include both unnecessarily. so ... in a perfect world, should a module source file that doesn...
Mar 12, 12:59 pm 2007
Al Viro
[PATCH] sanitize security_getprocattr() API
have it return the buffer it had allocated Acked-by: Stephen Smalley <sds@tycho.nsa.gov> Acked-by: James Morris <jmorris@namei.org> Signed-off-by: Al Viro <viro@zeniv.linux.org.uk> --- fs/proc/base.c | 21 ++++++--------------- include/linux/security.h | 8 ++++---- security/dummy.c | 2 +- security/selinux/hooks.c | 8 ++++++-- 4 files changed, 17 insertions(+), 22 deletions(-) diff --git a/fs/proc/base.c b/fs/proc/base.c index 4f5745a..6bbfe...
Mar 12, 12:17 pm 2007
Al Viro
[PATCH] fix deadlock in audit_log_task_context()
GFP_KERNEL allocations in non-blocking context; fixed by killing an idiotic use of security_getprocattr(). Acked-by: Stephen Smalley <sds@tycho.nsa.gov> Acked-by: James Morris <jmorris@namei.org> Signed-off-by: Al Viro <viro@zeniv.linux.org.uk> --- kernel/auditsc.c | 24 +++++++++++------------- 1 files changed, 11 insertions(+), 13 deletions(-) diff --git a/kernel/auditsc.c b/kernel/auditsc.c index 3599558..628c7ac 100644 --- a/kernel/auditsc.c +++ b/kernel/auditsc.c ...
Mar 12, 12:17 pm 2007
Jiri Slaby
rmmod uhci_hcd -> BUG: atomic counter underflow
Hi. After rmmoding of uhci_hcd on fresh booted 2.6.21-rc3-mm2 I got this: BUG: atomic counter underflow at: [<c0104f0b>] show_trace_log_lvl+0x1a/0x30 [<c01055f3>] show_trace+0x12/0x14 [<c010567a>] dump_stack+0x16/0x18 [<c01dc41b>] kref_put+0x4d/0xb2 [<c01db754>] kobject_put+0x14/0x16 [<c01db8a3>] kobject_unregister+0x22/0x25 [<c024c987>] bus_remove_driver+0x75/0x82 [<c024d3b8>] driver_unregister+0xb/0x18 [<c01e7020>] pci_...
Mar 12, 12:10 pm 2007
previous daytodaynext day
March 11, 2007March 12, 2007March 13, 2007