linux-kernel mailing list

FromSubjectsort iconDate
Rusty Russell
Re: request->ioprio
[Empty message]
Aug 6, 4:33 pm 2008
Admin
Job Offer
Dear applicant, we have found a suitable job for you in the Gulf area which matches your interests and your qulifications, to apply kindly log on to http://www.middle-east-jobs.blogspot.com/ and submit your C.V as soon as possible Kind regards, Recruitment dept --
Aug 6, 7:57 pm 2008
David Wagner
Re: [RFC 0/5] [TALPA] Intro to a linux interface for on acce...
This is at odds with my experience. Are you sure you've been talking to the right people? Is it possible you've only been talking to A/V vendors? I find it entirely plausible that there is such a consensus among A/V vendors, but I'm pretty skeptical that the rest of the security community would make this kind of claim. What I hear, instead, is quite a bit of skepticism about the future of A/V. Here's an experiment for you. Walk up to a random security expert and ask them what they think of bl...
Aug 6, 6:04 pm 2008
David Wagner
Re: [malware-list] [RFC 0/5] [TALPA] Intro to a linux interf...
I don't think there is any such consensus, so I'm not expecting a technical explanation. As best as I can tell, the primary explanation for why so many A/V vendors are doing it seems to be that it's a damn effective business model, and that may have as much of an effect on its widespread use as any technical merits or demerits. Think about it: you get users to buy your A/V, then you tell them they need to pay a monthly subscription fee to get the latest virus signatures updates. It's like crack...
Aug 6, 6:24 pm 2008
Adrian Bunk
[2.6 patch] fs/partitions/acorn.c: remove dead code
I missed this when I did the arm26 removal. Reported-by: Robert P. J. Day <rpjday@crashcourse.ca> Signed-off-by: Adrian Bunk <bunk@kernel.org> --- This patch has been sent on: - 23 Apr 2008 - 14 Apr 2008 - 31 Mar 2008 - 1 Mar 2008 fs/partitions/acorn.c | 10 ---------- 1 file changed, 10 deletions(-) f7dc697bb2d04227b2f41a9d56f626fbd65c3d9d foobar diff --git a/fs/partitions/acorn.c b/fs/partitions/acorn.c index 3d3e166..a97b477 100644 --- a/fs/partitions/acorn.c +++ b...
Aug 6, 5:10 pm 2008
Tim Bird
[PATCH] bootup: Add built-in kernel command line for x86
Add support for a built-in command line for x86 architectures. The Kconfig help gives the major rationale for this addition. Note that this option is available for many other arches, and its use is widespread in embedded projects. This patch addresses concerns that were raised with an earlier version, regarding precedence between the built-in command line and the command line provided by the boot loader. See the thread at http://lkml.org/lkml/2006/6/11/115 for details. The default behavior...
Aug 6, 5:31 pm 2008
Matt Mackall
Re: [PATCH] bootup: Add built-in kernel command line for x86
Nice solution. Where is this relative to early boot option checking? -- Mathematics is the supreme nostalgia of our time. --
Aug 6, 6:14 pm 2008
Tim Bird
Re: [PATCH] bootup: Add built-in kernel command line for x86
parse_early_param() is right AFTER this in the x86 setup_arch() function (in arch/x86/kernel/setup.c). All the other command-line handling I could find is after this in init/main.c:start_kernel(). There is some stuff earlier in the setup_arch() routine about boot_params, but that looks like it's related to the old(?) binary data points you can jam into the kernel image. (That is, it doesn't look like it's related to the command line handling). -- Tim ============================= Tim Bird ...
Aug 6, 6:31 pm 2008
Matt Mackall
Re: [PATCH] bootup: Add built-in kernel command line for x86
Ok, there are a couple weird outliers outside of that still, but that should make most people satisfied. -- Mathematics is the supreme nostalgia of our time. --
Aug 6, 6:48 pm 2008
Robert Schwebel
Re: [PATCH] bootup: Add built-in kernel command line for x86
If this feature is desired on all architectures, shouldn't it go out of arch/? rsc -- Dipl.-Ing. Robert Schwebel | http://www.pengutronix.de Pengutronix - Linux Solutions for Science and Industry Handelsregister: Amtsgericht Hildesheim, HRA 2686 Hannoversche Str. 2, 31134 Hildesheim, Germany Phone: +49-5121-206917-0 | Fax: +49-5121-206917-9 --
Aug 6, 6:04 pm 2008
Tim Bird
Re: [PATCH] bootup: Add built-in kernel command line for x86
Different arches handle their command lines differently, but with some elbow grease (and some buy-in from the different arch maintainers), we could try unifying the approach here. One difficulty is that the other arches' command lines are not currently "broken", so there's no real incentive to change them. The only thing novel thing I'm adding here is the addition of the leading '!' to allow for an override. This is needed in some x86 cases I'm familiar with, but I've haven't seen any cases ...
Aug 6, 6:22 pm 2008
H. Peter Anvin
Re: [PATCH] bootup: Add built-in kernel command line for x86
Note that it could just as easily be done with a CONFIG_CMDLINE_OVERRIDE option, since the initial reason for a magic character was to be able to provide both prefix and suffix splicing. CONFIG_CMDLINE_OVERRIDE is probably more palatable to other architectures. -hpa --
Aug 6, 6:48 pm 2008
Tim Bird
Re: [PATCH] bootup: Add built-in kernel command line for x86
I'd be OK implementing it with an option, rather than a magic char. I was trying to avoid adding too many options, since many kernel developers prefer fewer options where possible. But the magic char makes the code less straightforward. If we ever move towards supporting both prefix and suffice splicing (or even complicated in-the-middle splicing), then the magic char is easier to develop into that. But so far, I can only come up with reasonable cases for append and override, and I don't want t...
Aug 6, 7:00 pm 2008
H. Peter Anvin
Re: [PATCH] bootup: Add built-in kernel command line for x86
I think I agree, and the override option would make it easier to make generic. -hpa --
Aug 6, 7:03 pm 2008
Matt Mackall
Re: [PATCH] bootup: Add built-in kernel command line for x86
You're right, I had forgotten about the suffix splicing and my brain is Yes, though I doubt we're in danger of introducing any real backwards compatibility issues with the magic '!' at the beginning. -- Mathematics is the supreme nostalgia of our time. --
Aug 6, 6:52 pm 2008
H. Peter Anvin
Re: [PATCH] bootup: Add built-in kernel command line for x86
Well, it does if we want to make this a generic feature, which I believe we should. -hpa --
Aug 6, 7:02 pm 2008
Justin Mattock
BUG kmalloc-64: Object already free
I must be honest, 2.6.27-rc1-00156-g94ad374 has made me entirely lazy with wanting to add any patches or taking anything out... but I guess I'll have to pull and add a patch that was sent to me yesterday. upon booting I saw this for the first time with isight: <dmesg below> [ 0.000000] Linux version 2.6.27-rc1-00156-g94ad374 (root@unix) (gcc version 4.1.2 (Ubuntu 4.1.2-0ubuntu4)) #5 SMP Mon Aug 4 08:40:33 PDT 2008 [ 0.000000] BIOS-provided physical RAM map: [ 0.000000] BIOS-e820...
Aug 6, 5:21 pm 2008
Adrian Bunk
[2.6.28 parch] the scheduled SERIAL_COLDFIRE removal
This patch contains the scheduled removal of the obsolete SERIAL_COLDFIRE driver. Signed-off-by: Adrian Bunk <bunk@kernel.org> --- Documentation/feature-removal-schedule.txt | 8 drivers/serial/Kconfig | 16 drivers/serial/Makefile | 1 drivers/serial/mcfserial.c | 1965 --------------------- drivers/serial/mcfserial.h | 74 5 files changed, 2 insertions(+), 2062 deletions(-) eb71d44057b03aca761eef...
Aug 6, 5:19 pm 2008
Aristeu Rozanski
[PATCH v1] 8250: add support for DTR/DSR hardware flow control
This patch adds support for DTR/DSR hardware flow control on 8250 driver on x86 machines. It's done by adding a CDTRDSR flag to work just like CRTSCTS, which is not done on other architectures on purpose (so each maintainer can allocate it). This patch was tested with success with a serial printer configured with a small buffer and DTR/DSR flow control. This is based on the work of Michael Westermann (http://lkml.org/lkml/2007/8/31/133) Comments more than welcome. Signed-off-by: Aristeu Rozan...
Aug 6, 5:14 pm 2008
Adrian Bunk
[2.6 patch] make ptrace_untrace() static
ptrace_untrace() can now become static. Signed-off-by: Adrian Bunk <bunk@kernel.org> --- This patch has been sent on: - 22 Jul 2008 include/linux/ptrace.h | 1 - kernel/ptrace.c | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) 819e9b617ffe996a61a150598050973911acd7e7 diff --git a/include/linux/ptrace.h b/include/linux/ptrace.h index c6f5f9d..fe0d5a4 100644 --- a/include/linux/ptrace.h +++ b/include/linux/ptrace.h @@ -94,7 +94,6 @@ extern void ptrace_notify(...
Aug 6, 5:12 pm 2008
Adrian Bunk
[2.6 patch] m32r: remove the unused NOHIGHMEM option
This patch removes the unused NOHIGHMEM option. Reported-by: Robert P. J. Day <rpjday@crashcourse.ca> Signed-off-by: Adrian Bunk <bunk@kernel.org> --- This patch has been sent on: - 25 Jun 2008 adea6f9163987adf9c5a63b5a257ed3554add9d7 diff --git a/arch/m32r/Kconfig b/arch/m32r/Kconfig index de153de..e2e3661 100644 --- a/arch/m32r/Kconfig +++ b/arch/m32r/Kconfig @@ -216,10 +216,6 @@ config MEMORY_SIZE default "01000000" if PLAT_M32104UT default "00800000" if PLAT_OAKS32R ...
Aug 6, 5:12 pm 2008
Adrian Bunk
[2.6 patch] make probe_serial_gsc() static
This patch makes the needlessly global probe_serial_gsc() static. Signed-off-by: Adrian Bunk <bunk@kernel.org> --- This patch has been sent on: - 18 Jun 2008 e0053c1295ce33ec15d2788140070660e95a07f0 diff --git a/drivers/serial/8250_gsc.c b/drivers/serial/8250_gsc.c index 0416ad3..418b4fe 100644 --- a/drivers/serial/8250_gsc.c +++ b/drivers/serial/8250_gsc.c @@ -111,7 +111,7 @@ static struct parisc_driver serial_driver = { .probe = serial_init_chip, }; -int __init probe_seria...
Aug 6, 5:12 pm 2008
Adrian Bunk
[2.6 patch] drivers/parisc/: make code static
This patch makes the following needlessly global code static: - asp.c: asp_init_chip() - ccio-dma.c: ccio_io_pdir_entry() - dino.c: struct dino_port_ops - dino.c: struct dino_bios_ops - hppb.c: struct hppb_card_head - lasi.c: lasi_led_init() - lasi.c: lasi_init_chip() - lba_pci.c: struct lba_bios_ops - sba_iommu.c: sba_io_pdir_entry() - sba_iommu.c: sba_driver_callback() - sba_iommu.c: sba_driver_callback() - wax.c: wax_init_chip() Signed-off-by: Adrian Bunk <bunk@kernel.org> --- ...
Aug 6, 5:12 pm 2008
Adrian Bunk
[2.6 patch] parisc/lib/: make code static
This patch makes the following needlessly global code static: - iomap.c: struct iomap_ops[] - memcpy.c: pa_memcpy() Signed-off-by: Adrian Bunk <bunk@kernel.org> --- This patch has been sent on: - 15 Jun 2008 arch/parisc/lib/iomap.c | 2 +- arch/parisc/lib/memcpy.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 45e7cd0b2c678dda4f5ba4ac6d0ed628df9381bd diff --git a/arch/parisc/lib/iomap.c b/arch/parisc/lib/iomap.c index 9abed07..5069e8b 100644 --- a/arch/parisc/li...
Aug 6, 5:11 pm 2008
Adrian Bunk
[2.6 patch] binfmt_som.c: add MODULE_LICENSE
This patch adds the missing MODULE_LICENSE("GPL"). Reported-by: Adrian Bunk <bunk@kernel.org> Signed-off-by: Adrian Bunk <bunk@kernel.org> --- This patch has been sent on: - 15 Jun 2008 4cec562181f818f16f072b9a14ca7a0ce6c66417 diff --git a/fs/binfmt_som.c b/fs/binfmt_som.c index fdc36bf..6d3bebb 100644 --- a/fs/binfmt_som.c +++ b/fs/binfmt_som.c @@ -308,3 +308,5 @@ static void __exit exit_som_binfmt(void) core_initcall(init_som_binfmt); module_exit(exit_som_binfmt); + ...
Aug 6, 5:11 pm 2008
Adrian Bunk
[2.6 patch] m32r/kernel/: cleanups
This patch contains the following cleanups: - make the following needlessly global code static: - entry.S: resume_userspace - process.c: pm_idle - process.c: default_idle() - smp.c: send_IPI_allbutself() - time.c: timer_interrupt() - time.c: struct irq0 - traps.c: set_eit_vector_entries() - traps.c: kstack_depth_to_print - traps.c: show_trace() - traps.c: die_lock - remove the following unused code: - head.S: startup_32 - process.c: hlt_counter - process.c: disable_h...
Aug 6, 5:11 pm 2008
Adrian Bunk
[2.6 patch] m32r: export __ndelay
This patch fixes the following build error: <-- snip --> ... MODPOST 1083 modules ERROR: "__ndelay" [drivers/spi/spi_bitbang.ko] undefined! ... make[2]: *** [__modpost] Error 1 <-- snip --> Reported-by: Adrian Bunk <bunk@kernel.org> Signed-off-by: Adrian Bunk <bunk@kernel.org> --- This patch has been sent on: - 11 Jun 2008 arch/m32r/lib/delay.c | 2 ++ 1 file changed, 2 insertions(+) 75460f5ec520539e33163ac455ffe4400da341c3 diff --git a/arch/m...
Aug 6, 5:11 pm 2008
Adrian Bunk
[2.6 patch] m32r: export empty_zero_page
This patch fixes the following build error: <-- snip --> ... Building modules, stage 2. MODPOST 1083 modules ERROR: "empty_zero_page" [fs/ext4/ext4dev.ko] undefined! ... make[2]: *** [__modpost] Error 1 <-- snip --> Reported-by: Adrian Bunk <bunk@kernel.org> Signed-off-by: Adrian Bunk <bunk@kernel.org> --- This patch has been sent on: - 11 Jun 2008 arch/m32r/kernel/m32r_ksyms.c | 2 ++ 1 file changed, 2 insertions(+) ae7a1cecb2071e861cbcd6e...
Aug 6, 5:11 pm 2008
Adrian Bunk
[2.6 patch] drivers/scsi/a3000.c: make 2 functions static
a3000_{detect,release}() can become static. Signed-off-by: Adrian Bunk <bunk@kernel.org> --- This patch has been sent on: - 10 Jun 2008 drivers/scsi/a3000.c | 6 ++++-- drivers/scsi/a3000.h | 3 --- 2 files changed, 4 insertions(+), 5 deletions(-) 85a02587af2fff4f03fcecf3bb0f61fbe1cfadc3 diff --git a/drivers/scsi/a3000.c b/drivers/scsi/a3000.c index 8b449d8..6970ce8 100644 --- a/drivers/scsi/a3000.c +++ b/drivers/scsi/a3000.c @@ -25,6 +25,8 @@ static struct Scsi_Host ...
Aug 6, 5:11 pm 2008
Adrian Bunk
[2.6 patch] drivers/scsi/a2091.c: make 2 functions static
a2091_{detect,release}() can become static. Signed-off-by: Adrian Bunk <bunk@kernel.org> --- This patch has been sent on: - 10 Jun 2008 drivers/scsi/a2091.c | 6 ++++-- drivers/scsi/a2091.h | 3 --- 2 files changed, 4 insertions(+), 5 deletions(-) 22558d3b8c3dcf29bb54d76256a64db89017dedc diff --git a/drivers/scsi/a2091.c b/drivers/scsi/a2091.c index 07d572f..f36029c 100644 --- a/drivers/scsi/a2091.c +++ b/drivers/scsi/a2091.c @@ -23,6 +23,8 @@ #define DMA(ptr) ((a2091_sc...
Aug 6, 5:11 pm 2008
Adrian Bunk
[2.6 patch] ocfs2/cluster/tcp.c: make some functions static
Commit 0f475b2abed6cbccee1da20a0bef2895eb2a0edd (ocfs2/net: Silence build warnings) made sense as far as it fixed compile warnings, but it was not required that it made the functions global. Signed-off-by: Adrian Bunk <bunk@kernel.org> --- This patch has been sent on: - 5 Jun 2008 fs/ocfs2/cluster/tcp.c | 44 ++++++++++++++++++++++++++------ fs/ocfs2/cluster/tcp_internal.h | 32 ----------------------- 2 files changed, 37 insertions(+), 39 deletions(-) dd88fbb63c1952...
Aug 6, 5:11 pm 2008
Mark Fasheh
Re: [2.6 patch] ocfs2/cluster/tcp.c: make some functions sta...
Great, thanks Adrian. --Mark -- Mark Fasheh --
Aug 6, 5:23 pm 2008
Adrian Bunk
[2.6 patch] NTFS: update homepage
This patch updates the location of the NTFS homepage in several files. Signed-off-by: Adrian Bunk <bunk@kernel.org> --- This patch has been sent on: - 20 May 2008 Documentation/filesystems/ntfs.txt | 4 ++-- MAINTAINERS | 2 +- fs/ntfs/usnjrnl.h | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) 8853ddf5282c534fa4d187aeaf896c6d4c6baba9 diff --git a/Documentation/filesystems/ntfs.txt b/Documentation/filesystems/ntfs.txt index...
Aug 6, 5:11 pm 2008
Adrian Bunk
[2.6 patch] MAINTAINERS: remove HGA FRAMEBUFFER DRIVER entry
- maintainer has not been active for years - maintainer email bounces - URL no longer exists - covered by the FRAMEBUFFER LAYER entry Signed-off-by: Adrian Bunk <bunk@kernel.org> --- This patch has been sent on: - 20 May 2008 fc7a740aef47772e5417c71f52aa9726eb5c716d diff --git a/MAINTAINERS b/MAINTAINERS index 2f74092..af69cab 100644 --- a/MAINTAINERS +++ b/MAINTAINERS @@ -1822,13 +1822,6 @@ M: zippel@linux-m68k.org L: linux-kernel@vger.kernel.org S: Maintained -HGA FRAMEBU...
Aug 6, 5:10 pm 2008
Adrian Bunk
[2.6 patch] MAINTAINERS: remove ZF MACHZ WATCHDOG entry
- maintainer has not been active for years - maintainer email bounces - URL no longer exists - covered by the WATCHDOG DEVICE DRIVERS entry Signed-off-by: Adrian Bunk <bunk@kernel.org> --- This patch has been sent on: - 20 May 2008 3f02b057b07dee95e02f58a0f9109a8c8815ae2c diff --git a/MAINTAINERS b/MAINTAINERS index 52b7035..2f74092 100644 --- a/MAINTAINERS +++ b/MAINTAINERS @@ -4521,12 +4521,6 @@ L: linux-wireless@vger.kernel.org L: zd1211-devs@lists.sourceforge.net (subscribers...
Aug 6, 5:10 pm 2008
Adrian Bunk
[2.6 patch] Alpha Miata: remove dead URL
This patch removes a dead URL. Signed-off-by: Adrian Bunk <bunk@kernel.org> --- This patch has been sent on: - 20 May 2008 deb4137671451a172bc7b9ed62cae9fbfd1decba diff --git a/arch/alpha/Kconfig b/arch/alpha/Kconfig index 729cdbd..97d58e8 100644 --- a/arch/alpha/Kconfig +++ b/arch/alpha/Kconfig @@ -224,8 +224,7 @@ config ALPHA_MIATA bool "Miata" help The Digital PersonalWorkStation (PWS 433a, 433au, 500a, 500au, 600a, - or 600au). There is an Installation HOWTO for thi...
Aug 6, 5:10 pm 2008
Adrian Bunk
[2.6 patch] asm-h8300/md.h: remove CVS keyword
This patch removes a CVS keyword that wasn't updated for a long time from a comment. Signed-off-by: Adrian Bunk <bunk@kernel.org> --- This patch has ben sent on: - 20 May 2008 0bda44fc75018619bac248acd44c04c41b96fee9 diff --git a/include/asm-h8300/md.h b/include/asm-h8300/md.h index 1a47dc6..1b7300e 100644 --- a/include/asm-h8300/md.h +++ b/include/asm-h8300/md.h @@ -1,4 +1,4 @@ -/* $Id: md.h,v 1.1 2002/11/19 02:09:26 gerg Exp $ +/* * md.h: High speed xor_block operation for RA...
Aug 6, 5:10 pm 2008
Adrian Bunk
[2.6 patch] kernel/dma.c: remove a CVS keyword
This patch removes a CVS keyword that wasn't updated for a long time from a comment. Signed-off-by: Adrian Bunk <bunk@kernel.org> --- This patch has been sent on: - 20 May 2008 ecbe2e714c6f467a94d2240223dfa335cdfb501e diff --git a/kernel/dma.c b/kernel/dma.c index d2c60a8..f903189 100644 --- a/kernel/dma.c +++ b/kernel/dma.c @@ -1,4 +1,4 @@ -/* $Id: dma.c,v 1.7 1994/12/28 03:35:33 root Exp root $ +/* * linux/kernel/dma.c: A DMA channel allocator. Inspired by linux/kernel/irq.c....
Aug 6, 5:10 pm 2008
Adrian Bunk
[2.6 patch] include/linux/mount.h: remove CVS keyword
This patch removes an CVS keyword that wasn't updated for a long time from a comment. Signed-off-by: Adrian Bunk <bunk@kernel.org> --- This patch has been sent on: - 20 May 2008 023ddaa65448ffc93a3f90c1ff37d39c0af3cfa4 diff --git a/include/linux/mount.h b/include/linux/mount.h index 4374d1a..f526b78 100644 --- a/include/linux/mount.h +++ b/include/linux/mount.h @@ -5,8 +5,6 @@ * * Author: Marco van Wieringen <mvw@planets.elm.net> * - * Version: $Id: mount.h,v 2.0 19...
Aug 6, 5:10 pm 2008
Adrian Bunk
[2.6 patch] quota: remove CVS keywords
This patch removes CVS keywords that weren't updated for a long time from comments. Signed-off-by: Adrian Bunk <bunk@kernel.org> Acked-by: Jan Kara <jack@suse.cz> --- This patch has been sent on: - 20 May 2008 fs/dquot.c | 2 -- include/linux/quota.h | 2 -- include/linux/quotaops.h | 3 --- 3 files changed, 7 deletions(-) f2096053eb97000dbd556a4a2465c879bdf38670 diff --git a/fs/dquot.c b/fs/dquot.c index 5ac77da..920e430 100644 --- a/fs/dquot.c...
Aug 6, 5:10 pm 2008
Adrian Bunk
[2.6 patch] parport: remove CVS keywords
This patch removes CVS keywords that weren't updated for a long time from comments. Signed-off-by: Adrian Bunk <bunk@kernel.org> --- This patch has been sent on: - 20 May 2008 drivers/parport/ieee1284.c | 2 +- drivers/parport/probe.c | 2 +- drivers/parport/share.c | 2 +- include/linux/parport.h | 2 -- 4 files changed, 3 insertions(+), 5 deletions(-) e6a73a87211cdfd9ffc9dbb55ba7b5d0ef4f37c2 diff --git a/drivers/parport/ieee1284.c b/drivers/parport/ieee1284...
Aug 6, 5:10 pm 2008
Adrian Bunk
[2.6 patch] reiserfs/procfs.c: remove CVS keywords
This patch removes CVS keywords that weren't updated for a long time from comments. Signed-off-by: Adrian Bunk <bunk@kernel.org> --- This patch has been sent on: - 20 May 2008 fs/reiserfs/procfs.c | 3 --- 1 file changed, 3 deletions(-) a41d213debad92b6672c39b577baf58641b5c54c diff --git a/fs/reiserfs/procfs.c b/fs/reiserfs/procfs.c index b9dbeec..37173fa 100644 --- a/fs/reiserfs/procfs.c +++ b/fs/reiserfs/procfs.c @@ -8,8 +8,6 @@ /* proc info support a la one created b...
Aug 6, 5:10 pm 2008
Adrian Bunk
[2.6 patch] telephony: remove CVS keywords
This patch removes CVS keywords that weren't updated for a long time from comments. Signed-off-by: Adrian Bunk <bunk@kernel.org> --- This patch has been sent on: - 20 May 2008 drivers/telephony/ixj.c | 2 -- include/linux/telephony.h | 4 ---- 2 files changed, 6 deletions(-) 413f5fb4ebba4bbc4a2a0061ba475c897842e334 diff --git a/drivers/telephony/ixj.c b/drivers/telephony/ixj.c index 49cd979..127f761 100644 --- a/drivers/telephony/ixj.c +++ b/drivers/telephony/ixj.c @@ ...
Aug 6, 5:10 pm 2008
Adrian Bunk
[2.6 patch] pnp: remove printk() with outdated version
There's no point in printing some ancient version number forever. Signed-off-by: Adrian Bunk <bunk@kernel.org> Acked-by; Rene Herman <rene.herman@gmail.com> Acked-by; Bjorn Helgaas <bjorn.helgaas@hp.com> Acked-by; Adam M Belay <abelay@MIT.EDU> --- This patch has been sent on: - 20 May 2008 acef517cfbe3cd741f8884311ef6fc2dfbeb1a4d diff --git a/drivers/pnp/core.c b/drivers/pnp/core.c index 20771b7..d924798 100644 --- a/drivers/pnp/core.c +++ b/drivers/pnp/core.c @@ ...
Aug 6, 5:10 pm 2008
Rene Herman Aug 6, 5:38 pm 2008
Adrian Bunk
[2.6 patch] make mm/rmap.c:anon_vma_cachep static
This patch makes the needlessly global anon_vma_cachep static. Signed-off-by: Adrian Bunk <bunk@kernel.org> Acked-by: Rik van Riel <riel@redhat.com> --- This patch has been sent on: - 5 May 2008 - 22 Apr 2008 - 14 Apr 2008 - 31 Mar 2008 - 25 Feb 2008 include/linux/rmap.h | 12 ------------ mm/rmap.c | 12 +++++++++++- 2 files changed, 11 insertions(+), 13 deletions(-) 8d2d63d71ecbf2db78f31025acb136c9dd4db6a2 diff --git a/include/linux/rmap.h b/include/linux...
Aug 6, 5:10 pm 2008
Jean Delvare
[GIT PULL] hwmon updates for 2.6.27
Hi Linus, Please pull hwmon subsystem updates for Linux 2.6.27 from: git://jdelvare.pck.nerim.net/jdelvare-2.6 hwmon-for-linus In the absence of a maintainer for the hwmon subsystem, I have gathered a number of patches which have been posted to the lm-sensors mailing list over the past few months and reviewed publicly. This will ensure that these patches, which I consider ready for upstream, aren't lost, so developers can spend their time to something else than resending these patches over and...
Aug 6, 4:53 pm 2008
Piotr Jaroszyński
HZ from userspace
Hello, I want to be able to convert starttime from /proc/#/stat to absolute time and it seems that I need HZ to do that as it is measured in jiffies. How can I get HZ? I have seen some discussion about this but haven't found a definite answer. procps is using some hacks do it and I would prefer to avoid them. I only need a solution for modern kernels, say 2.6.20+ if that matters. -- Best Regards, Piotr Jaroszyński
Aug 6, 4:48 pm 2008
Ray Lee
Re: HZ from userspace
On Wed, Aug 6, 2008 at 1:48 PM, Piotr Jaroszyński `man sysconf`, in particular you want sysconf(_SC_CLK_TCK).
Aug 6, 5:49 pm 2008
Piotr Jaroszyński
Re: HZ from userspace
manpage says it's obsolete and i read in some discussion that it only returns the default and not the real HZ used. -- Best Regards, Piotr Jaroszyński
Aug 6, 6:07 pm 2008
previous daytodaynext day
August 5, 2008August 6, 2008August 7, 2008