linux-kernel mailing list

FromSubjectsort iconDate
Jesper Juhl
[PATCH] Fix two potential mem leaks in MPT Fusion (mpt_attac...
Greetings & Salutations, The Coverity checker spotted two potential memory leaks in drivers/message/fusion/mptbase.c::mpt_attach(). There are two returns that may leak the storage allocated for 'ioc' (sizeof(MPT_ADAPTER) bytes). A simple fix would be to simply add two kfree() calls before the return statements, but a better fix (that this patch implements) is to reorder the code so that if we hit the first return condition we don't have to do the allocation at all and then just add a ...
Aug 1, 7:55 pm 2007
Miles Lane
cpufreq.c:(.text+0xaf178): undefined reference to `cpufreq_g...
LD .tmp_vmlinux1 drivers/built-in.o: In function `__cpufreq_governor': cpufreq.c:(.text+0xaf178): undefined reference to `cpufreq_gov_performance' cpufreq.c:(.text+0xaf18a): undefined reference to `cpufreq_gov_performance' make: *** [.tmp_vmlinux1] Error 1 # Automatically generated make config: don't edit # Linux kernel version: 2.6.23-rc1-mm2 # Wed Aug 1 15:46:12 2007 # CONFIG_X86_32=y CONFIG_GENERIC_TIME=y CONFIG_GENERIC_CMOS_UPDATE=y CONFIG_CLOCKSOURCE_WATCHDOG=y CONFIG_GENERIC_CLO...
Aug 1, 7:31 pm 2007
Andrew Morton
Re: cpufreq.c:(.text+0xaf178): undefined reference to `cpufr...
On Wed, 1 Aug 2007 16:31:46 -0700 <useful thanks. But snipped> -
Aug 1, 7:57 pm 2007
Ni@m
[PATCH]hpet and rtc max_user_freq predefine in Kconfig
I think users should be able to set max_user_freq values for rtc and hpet during kernel configuration. The default value is set to 1024 with this patch. The default value of 64 is really too small for modern multimedia apps. Besides, this patch fixes link on intel hpet spec. Signed-off-by: Milinevsky Dmitry <niam.niam@gmail.com> diff -Nupar linux-2.6.22-cfs-19/drivers/char/hpet.c linux-2.6.22-cfs-19.niam/drivers/char/hpet.c --- linux-2.6.22-cfs-19/drivers/char/hpet.c 2007-07-10 20:57:20....
Aug 1, 7:27 pm 2007
Jesper Juhl
[PATCH] scripts/ver_linux : correct printing of binutils ver...
Hi, Currently scripts/ver_linux prints "Binutils" or other random information for the version number in the "binutils" output line on some distributions. This patch corrects that. When I initially submitted a patch to correct that, I was not aware that the output from "ld -v" could differ as much as it turned out it can, so my original fix turned out to not cover all bases. This patch works correctly with all the different "ld -v" output that people posted in replys to my first patch, so it...
Aug 1, 7:21 pm 2007
Mikael Pettersson
[PATCH][RFC] unbreak generic futex_atomic_cmpxchg_inatomic()...
[Resend. I messed up the To: line the first time] As has been reported recently by Lennert Buytenhek, robust futexes I can confirm this statement: building glibc-2.4 with NPTL on ARM hangs the kernel when the test suite reaches tst-robust1. The problem is that kernel/futex.c expects futex_atomic_cmpxchg_inatomic() to return -EFAULT or the new value. It doesn't expect -ENOSYS at all, and generally -ENOSYS causes the futex code to loop, hanging the kernel. The higher-end archs (x86, sparc64, pp...
Aug 1, 7:00 pm 2007
Lennert Buytenhek
Re: [PATCH][RFC] unbreak generic futex_atomic_cmpxchg_inatom...
Since the callers of futex_atomic_cmpxchg_inatomic() don't really seem prepared to deal with -ENOSYS (e.g. the handle_futex_death() infinite loop when it gets -ENOSYS), it seems better never to return -ENOSYS from this function at all. What if you just stick an #error in here in the SMP case? -
Aug 1, 7:49 pm 2007
Andi Kleen
Re: [RFC] Deprecate a.out ELF interpreters
Nothing would change for them. The only thing that would change is that if someone has a a.out system with ELF executables then they would need to update their ELF ld.so to ELF. Dynamically linked a.out executables should also still run because they I'm not concerned about binfmt_aout; just about the special case a.out ld.so code in binfmt_elf. -Andi -
Aug 1, 6:59 pm 2007
Chuck Ebbert
Processes spinning forever, apparently in lock_timer_base()?
Looks like the same problem with spinlock unfairness we've seen elsewhere: it seems to be looping here? Or is everyone stuck just waiting for writeout? lock_timer_base(): for (;;) { tvec_base_t *prelock_base = timer->base; base = tbase_get_base(prelock_base); if (likely(base != NULL)) { spin_lock_irqsave(&base->lock, *flags); if (likely(prelock_base == timer->base)) ...
Aug 1, 6:39 pm 2007
Heiko Carstens
[PATCH] Fix WARN_ON() on bitfield ops for all other archs
From: Heiko Carstens <heiko.carstens@de.ibm.com> Fixes WARN_ON() on bitfiels ops for all architectures that have been left out in 8d4fbcfbe0a4bfc73e7f0297c59ae514e1f1436f. Cc: Alexey Dobriyan <adobriyan@sw.ru> Cc: Herbert Xu <herbert@gondor.apana.org.au> Cc: Paul Mundt <lethal@linux-sh.org> Cc: Haavard Skinnemoen <hskinnemoen@atmel.com> Cc: Matthew Wilcox <matthew@wil.cx> Cc: Kyle McMartin <kyle@parisc-linux.org> Cc: Martin Schwidefsky <schwidefsky@d...
Aug 1, 6:18 pm 2007
Christopher Hoover
Re: LinuxPPS & spinlocks
If we were totally rigurous about representing each device as a device node, your solution would be fine. But we don't. The clocksource model (/sys/devices/system/clocksource) is a better way to go. One sysfs file is used to enumerate the possible sources and another is used to read or set the current source. No new system calls; no new ioctls. -ch ch (at) murgatroid (dot) com ch (at) hpl (dot) hp (dot) com -
Aug 1, 6:14 pm 2007
Satyam Sharma
Re: LinuxPPS & spinlocks
Hi, Oh, not introducing any syscalls _at all_ would be fine, too. But the RFC does /require/ an implementation to have them. I was only mentioning the kind of implementation the RFC had in mind. But there are other ways to achieve the same end goal, and yes, probably it's better to avoid introducing syscalls in the first place and think of other mechanisms. [ It's not that we're talking of IPsec or IPv6 or something here -- so RFC-compliance isn't overly important. But the final result ...
Aug 1, 7:03 pm 2007
nwatkins
[patch 1/1] Adds flavor field to __mark_marker
This patch demonstrates an extension field to the low-level marker functionality, and updates macros to accept this additional data. Index: linux-2.6.22-rc6-mm1/include/linux/marker.h =================================================================== --- linux-2.6.22-rc6-mm1.orig/include/linux/marker.h 2007-08-01 15:39:36.000000000 -0500 +++ linux-2.6.22-rc6-mm1/include/linux/marker.h 2007-08-01 15:39:37.000000000 -0500 @@ -31,10 +31,14 @@ const char *args; /* List of arguments litteraly tran...
Aug 1, 5:57 pm 2007
nwatkins
[patch 0/1] extending low-level markers
Mathieu I have been working with your Kernel Markers infrastructure now for some time and have run into an extendability issue. Essentially I am failing to find a way to extend the current __trace_mark macro with site-specific context. That is, I would like the ability to create different 'types' of instrumentation points by bulding upon the __trace_mark macro. A consumer of this marker could examine the type of marker, and attach an appropriate callback function / private data. I have includ...
Aug 1, 5:57 pm 2007
Robin Getz
debugfs helper for decimal challenged
Greg: For those of us who forget that when bits 21 and bit 31 in a hardware register exposed with debugfs, I should see 2149580800 when I cat it (vs 0x80200000), any objections to providing a hex output interface to the debugfs? Since the input side already takes decimal & hex, I don't think this is a big change: DEFINE_SIMPLE_ATTRIBUTE(fops_x16, debugfs_u16_get, debugfs_u16_set, "0x%04llx\n"); struct dentry *debugfs_create_x16(const char *name, mode_t mode, ...
Aug 1, 5:52 pm 2007
Greg KH
Re: debugfs helper for decimal challenged
That sounds good to me, feel free to send a real patch. thanks, greg k-h -
Aug 1, 6:25 pm 2007
Bartlomiej Zolnierki...
[git patches] IDE fixes
Please pull from: master.kernel.org:/pub/scm/linux/kernel/git/bart/ide-2.6.git/ to receive the following updates: drivers/ide/arm/icside.c | 3 +- drivers/ide/ide-tape.c | 2 +- drivers/ide/pci/alim15x3.c | 2 +- drivers/ide/pci/cmd64x.c | 4 +- drivers/ide/pci/cs5520.c | 2 +- drivers/ide/pci/cs5535.c | 42 +++++++++++++----------------- drivers/ide/pci/it8213.c | 33 ++++++++++++----------- drivers/ide/pci/jmicron.c | 21 +++------------ drivers/ide/...
Aug 1, 5:52 pm 2007
Kristen Carlson Accardi
[patch 3/3] Enable Aggressive Link Power management for AHCI...
This patch will set the correct bits to turn on Aggressive Link Power Management (ALPM) for the ahci driver. This will cause the controller and disk to negotiate a lower power state for the link when there is no activity (see the AHCI 1.x spec for details). This feature is mutually exclusive with Hot Plug, so when ALPM is enabled, Hot Plug is disabled. ALPM will be enabled by default, but it is settable via the scsi host syfs interface. Possible settings for this feature are: Setting Effect...
Aug 1, 5:29 pm 2007
Kristen Carlson Accardi
[patch 2/3] Enable link power management for ata drivers
libata drivers can define a function (enable_pm) that will perform hardware specific actions to enable whatever power management policy the user set up from the scsi sysfs interface if the driver supports it. This power management policy will be activated after all disks have been enumerated and intialized. Drivers should also define disable_pm, which will turn off link power management, but not change link power management policy. Signed-off-by: Kristen Carlson Accardi <kristen.c.accardi...
Aug 1, 5:29 pm 2007
Kristen Carlson Accardi
[patch 1/3] Store interrupt value
Use a stored value for which interrupts to enable. Changing this allows us to selectively turn off certain interrupts later and have them stay off. Signed-off-by: Kristen Carlson Accardi <kristen.c.accardi@intel.com> Index: 2.6-git/drivers/ata/ahci.c =================================================================== --- 2.6-git.orig/drivers/ata/ahci.c +++ 2.6-git/drivers/ata/ahci.c @@ -175,6 +175,7 @@ enum { AHCI_FLAG_32BIT_ONLY = (1 << 28), /* force 32bit */ AHCI_FLAG_MV_...
Aug 1, 5:28 pm 2007
Kristen Carlson Accardi
[patch 0/3] Updated ALPM patches
Hi, This is an updated series of ALPM patches. I moved all link power management stuff out of scsi sysfs and just use the shost_addr pointer in the host template to create the sysfs files. This provides the same interface as before, without requiring any scsi changes. I also fixed a bug in the handling of the interrupts for some devices (mostly ATAPI it seems) which will need some bits out of Serror cleared on power state changes, and I also modified the code slightly based on feedback from tejun....
Aug 1, 5:28 pm 2007
Rafael J. Wysocki
[PATCH -mm 0/3] Freezer: Use wait queue instead of busy loop...
Hi, The patches in the next three messages do the following: * make the freezer a bit more verbose * make try_to_freeze_tasks() go to sleep while waiting for tasks to enter the refrigerator instead of busy looping * make try_to_freeze_tasks() measure the time of freezing, regardless of whether or not it is successful Greetings, Rafael -- "Premature optimization is the root of all evil." - Donald Knuth -
Aug 1, 5:28 pm 2007
Rafael J. Wysocki
[PATCH -mm 3/3] Freezer: Measure freezing time
From: Rafael J. Wysocki <rjw@sisk.pl> Measure the time of the freezing of tasks, even if it doesn't fail. Signed-off-by: Rafael J. Wysocki <rjw@sisk.pl> Acked-by: Pavel Machek <pavel@ucw.cz> --- kernel/power/process.c | 18 +++++++++++++++--- 1 file changed, 15 insertions(+), 3 deletions(-) Index: linux-2.6.23-rc1/kernel/power/process.c =================================================================== --- linux-2.6.23-rc1.orig/kernel/power/process.c 2007-07-31 23:00:43....
Aug 1, 5:36 pm 2007
Andrew Morton
Re: [PATCH -mm 3/3] Freezer: Measure freezing time
On Wed, 1 Aug 2007 23:36:39 +0200 I'd have thought that we had enough timeval library code by now to not need to open-code things like this. <looks around> No, it seems that we don't. So people keep on open-coding the same thing, or inventing private code which shouldn't be. <notices net/dccp/dccp.h> What the hell is all that stuff doing in there? -
Aug 1, 7:53 pm 2007
Rafael J. Wysocki
[PATCH -mm 2/3] Freezer: Use wait queue instead of busy loop...
From: Rafael J. Wysocki <rjw@sisk.pl> Use the observation that try_to_freeze_tasks() need not loop while waiting for the freezing tasks to enter the refrigerator and make it use a wait queue. The idea is that after sending freeze requests to the tasks regarded as freezable try_to_freeze_tasks() can go to sleep and wait until at least one task enters the refrigerator.  The first task that does it wakes up try_to_freeze_tasks() and the procedure is repeated.  If the refrigerator is not ente...
Aug 1, 5:32 pm 2007
Andrew Morton
Re: [PATCH -mm 2/3] Freezer: Use wait queue instead of busy ...
On Wed, 1 Aug 2007 23:32:48 +0200 this is rather icky. -
Aug 1, 7:48 pm 2007
Rafael J. Wysocki
[PATCH -mm 1/3] Freezer: Be more verbose
From: Rafael J. Wysocki <rjw@sisk.pl> Increase the freezer's verbosity a bit, so that it's easier to read problem reports related to it. Signed-off-by: Rafael J. Wysocki <rjw@sisk.pl> Acked-by: Nigel Cunningham <nigel@nigel.suspend2.net> Acked-by: Pavel Machek <pavel@ucw.cz> --- kernel/power/process.c | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) Index: linux-2.6.23-rc1/kernel/power/process.c =================================================...
Aug 1, 5:30 pm 2007
John Keller
RESEND [PATCH] - SN: Add support for CPU disable
Add additional support for CPU disable on SN platforms. Correctly setup the smp_affinity mask for I/O error IRQs. Restrict the use of the feature to Altix 4000 and 450 systems running with a CPU disable capable PROM, and do not allow disabling of CPU 0. Signed-off-by: John Keller <jpk@sgi.com> --- Resend #1: Code was incorrectly passing a logical, instead of physical, cpuid to set_irq_affinity_info(). Also, some cleanup per review comments. arch/ia64/kernel/smpboot.c ...
Aug 1, 5:00 pm 2007
Miklos Szeredi
kupdate weirdness
The following strange behavior can be observed: 1. large file is written 2. after 30 seconds, nr_dirty goes down by 1024 3. then for some time (< 30 sec) nothing happens (disk idle) 4. then nr_dirty again goes down by 1024 5. repeat from 3. until whole file is written So basically a 4Mbyte chunk of the file is written every 30 seconds. I'm quite sure this is not the intended behavior. The reason seems to be that __sync_single_inode() will move the partially written inode from s_io onto s_d...
Aug 1, 4:45 pm 2007
Andrew Morton
Re: kupdate weirdness
On Wed, 01 Aug 2007 22:45:16 +0200 Try 2.6.23-rc1-mm2. -
Aug 1, 5:14 pm 2007
Maurice Volaski
Re: drbd 8.0.2/3 doesn't load under kernel 2.6.21
I'm making an assumption that depmod is somehow to blame and have logged this as a kernel bug, -- Maurice Volaski, mvolaski@aecom.yu.edu Computing Support, Rose F. Kennedy Center Albert Einstein College of Medicine of Yeshiva University -
Aug 1, 4:21 pm 2007
Adrian Bunk
Re: drbd 8.0.2/3 doesn't load under kernel 2.6.21
depmod is working fine. cu Adrian -- "Is there not promise of rain?" Ling Tan asked suddenly out of the darkness. There had been need of rain for many days. "Only a promise," Lao Er said. Pearl S. Buck - Dragon Seed -
Aug 1, 6:34 pm 2007
Maurice Volaski
Re: drbd 8.0.2/3 doesn't load under kernel 2.6.21
First, did you confirm this behavior? Can you please explain that? -- Maurice Volaski, mvolaski@aecom.yu.edu Computing Support, Rose F. Kennedy Center Albert Einstein College of Medicine of Yeshiva University -
Aug 1, 7:02 pm 2007
Keshavamurthy, Anil S
[patch -mm][Intel-IOMMU] Optimize sg map/unmap calls
This patch adds PageSelectiveInvalidation support replacing existing DomainSelectiveInvalidation for intel_{map/unmap}_sg() calls and also enables to mapping one big contiguous DMA virtual address which is mapped to discontiguous physical address for SG map/unmap calls. "Doamin selective invalidations" wipes out the IOMMU address translation cache based on domain ID where as "Page selective invalidations" wipes out the IOMMU address translation cache for that address mask range which is more ...
Aug 1, 4:06 pm 2007
Andrew Morton
Re: [patch -mm][Intel-IOMMU] Optimize sg map/unmap calls
On Wed, 1 Aug 2007 13:06:23 -0700 This isn't obviously doing the right thing for non-power-of-2 inputs. ilog2() rounds down... Please check that this, and all the other ilog2()s which have been added are doing the right thing if they can be presented with non-power-of-2 inputs? -
Aug 1, 7:45 pm 2007
Alexey Dobriyan
[PATCH] Remove unused struct proc_dir_entry::set
After /proc/sys rewrite it was left unused. Signed-off-by: Alexey Dobriyan <adobriyan@gmail.com> --- include/linux/proc_fs.h | 1 - 1 file changed, 1 deletion(-) --- a/include/linux/proc_fs.h +++ b/include/linux/proc_fs.h @@ -75,7 +75,6 @@ struct proc_dir_entry { write_proc_t *write_proc; atomic_t count; /* use count */ int deleted; /* delete flag */ - void *set; int pde_users; /* number of callers into module in progress */ spinlock_t pde_unload_lock; /* proc_fops c...
Aug 1, 3:50 pm 2007
Josef Sipek
[ANNOUNCE] Guilt v0.27
Guilt v0.27 is available for download (once it mirrors out on kernel.org). Guilt (Git Quilt) is a series of bash scripts which add a Mercurial queues-like functionality and interface to git. Tarballs: http://www.kernel.org/pub/linux/kernel/people/jsipek/guilt/ Git repo: git://git.kernel.org/pub/scm/linux/kernel/git/jsipek/guilt.git Alright, I'm trying to get back to the 2-week release schedule, so here's v0.27! There has been a number of changes in those two weeks, Out of the 20 commit...
Aug 1, 3:36 pm 2007
Daniel Mierswa
Re: Gericom Webboy Laptop Mouse/Touchpad
I'm sorry. I'm not familar with those applications to get any useful information out of them. Any quick information on what i should be doing I'm already keeping the config as clean and minimal as i can imagine. Anyway... I recompiled the kernel (2.6.22.2 now) with pure libata, I'm using the default niceness which should be 10 no? I'm not re-nicing Well the system is low on memory (312M) but that was the last thing i would've been looking for since it somehow got the win32 gui and some This s...
Aug 1, 3:26 pm 2007
Andi Kleen
smaller kernel with no real time futexes
Adrian, You said earlier you're looking at smaller allnoconfig kernels. One thing I noticed recently that realtime pi futexes are always enabled and that pulls in a lot of other code (like the plists) Userland needs to handle them not being available anyways for older kernels. Might be worth looking into turning that into a CONFIG. -Andi -
Aug 1, 3:24 pm 2007
Jakub Jelinek
Re: smaller kernel with no real time futexes
That's a very bad idea. glibc configured for 2.6.18 and higher kernels assumes PI futexes are present. Jakub -
Aug 1, 7:10 pm 2007
Rokas Masiulis
Examine user space locks
Hi sometimes user space program hangs forever. In old days i remeber there was unkillable dosemu. May be there are good how to. Some one can point to it? This is problem/solution isn't related to current kernel. This is question: what to do in this sitaution. Now i have eject(1) $ ps uax | grep eject root 12662 0.0 0.0 1528 560 ? D Jul31 0:00 eject root 12866 0.0 0.0 1532 560 pts/10 D Jul31 0:00 eject $ date Wed Aug 1 21:56:59 EEST 2007 Tha...
Aug 1, 3:07 pm 2007
Jan Engelhardt
Re: Examine user space locks
echo t >/proc/sysrq-trigger to generate stack traces of all processes, and then look it up in the kernel log. Jan -- -
Aug 1, 3:51 pm 2007
Rokas Masiulis
Re: Examine user space locks
# cat /proc/kmsg > log & [1] 28058 # echo t >/proc/sysrq-trigger # sleep 3 # fg cat /proc/kmsg > log ^C it seems that i can't get full log. Not all proceses are listed on it. But some of "bad proceses i have". (full log: http://89.190.108.145/~rokas/tasks.txt) it seems that some are stoped on cdrom_transfer_packet_command, some on __mutex_lock_slowpath. I'm confused.. hald-addon-st D 000004E2 0 5826 1 17981 12866 (NOTLB) f55ebc34 c02c9717...
Aug 1, 4:52 pm 2007
Rafał Bilski
Problem with udev and block2mtd
Hi! I have changed static /dev to udev on my machine. It has a lot of RAM (94MB) so I was expecting that udev will not make things worse. Unfortunately udev isn't noticing that new mtd device was born. I was suspecting that this is my fault, but udev's /dev is populated and: UEVENT[1185991604.930847] add@/module/mtdcore UEVENT[1185991604.969089] add@/module/mtdpart UEVENT[1185991605.005954] add@/module/block2mtd UEVENT[1185991647.726551] add@/module/mtdsuper UEVENT[1185991647.783396] add@/mo...
Aug 1, 3:05 pm 2007
Lee Schermerhorn
[PATCH] 2.6.23-rc1-mm1 - fix missing numa_zonelist_order sys...
Fix missing numa_zonelist_order sysctl config Against 2.6.23-rc1-mm1. Found this testing Mel Gorman's patch for the issue with "policy_zone" and ZONE_MOVABLE. Misplaced #endif is hiding the numa_zonelist_order sysctl when !SECURITY. [But, maybe reordering the zonelists is not such a good idea when ZONE_MOVABLE is populated?] Signed-off-by: Lee Schermerhorn <lee.schermerhorn@hp.com> kernel/sysctl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Index: Linux/kernel/s...
Aug 1, 3:02 pm 2007
Philipp Tölke
PROBLEM: Oops when using dm-crypt with dpt_i2o
Hello everybody, if I mount a dm-crypt-encrypted Harddisk/RAID-Array on an Adaptec 3200S, and produce load (for example with bonnie++) the kernel crashes. This is always reproducible. To reproduce simply mount an dm-crypt encrypted device and produce load -- I always used bonnie++. Unencrypted volumes work fine. Every kind of load I threw at the System worked fine. I would be very glad, if some kind of solution for this can be found. Thanks! The oopses: #v+ BUG: unable to handle ker...
Aug 1, 2:45 pm 2007
Rafał Bilski
[PATCH] mtdsuper: licensce = GPL
block2mtd: version $Revision: 1.30 $ block2mtd: mtd0: [d: /dev/sdc2] erase_size = 64KiB [65536] mtdsuper: module license 'unspecified' taints kernel. mtdsuper: Unknown symbol get_mtd_device mtdsuper: Unknown symbol put_mtd_device jffs2: Unknown symbol get_sb_mtd jffs2: Unknown symbol kill_mtd_super Signed-off-by: Rafał Bilski <rafalbilski@interia.pl> --- drivers/mtd/mtdsuper.c | 2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) diff --git a/drivers/mtd/mtdsuper.c b/drivers/m...
Aug 1, 2:33 pm 2007
Satyam Sharma
Re: [PATCH] mtdsuper: licensce = GPL
On Wed, 1 Aug 2007, Rafa
Aug 1, 5:53 pm 2007
Ulrich Drepper
More documentation: system call how-to
How about adding the attached text to the Documentation directory? I had to correct over the years to one or the other system call design problems. Other problems couldn't be corrected anymore and we have to live with them. Maybe spelling out the rules explicitly will help a bit. I've added a few rules I could think of right now. What should be added as well is a rule for 64-bit parameters on 32-bit platforms. I leave this to the s390 people who have the biggest restrictions when it comes to t...
Aug 1, 2:06 pm 2007
Heiko Carstens
Re: More documentation: system call how-to
David Woodhouse wrote that already. Don't know if there is a patch pending: http://marc.info/?l=linux-arch&m=118277150812137&w=2 -
Aug 1, 6:31 pm 2007
previous daytodaynext day
June 30, 2007August 1, 2007August 2, 2007