linux-kernel mailing list

FromSubjectsort iconDate
Mathieu Desnoyers
[RFC patch 05/12] LTTng instrumentation mm
Memory management core events. Added tracepoints : mm_filemap_wait_end mm_filemap_wait_start mm_handle_fault_entry mm_handle_fault_exit mm_huge_page_alloc mm_huge_page_free mm_page_alloc mm_page_free mm_swap_file_close mm_swap_file_open mm_swap_in mm_swap_out Changelog: - Use page_to_pfn for swap out instrumentation, wait_on_page_bit, do_swap_page, page alloc/free. - add missing free_hot_cold_page instrumentation. - add hugetlb page_alloc page_free instrumentation. - Add write_acc...
Jul 4, 7:52 pm 2008
Mathieu Desnoyers
[RFC patch 01/12] Kernel Tracepoints
Implementation of kernel tracepoints. Inspired from the Linux Kernel Markers. Allows complete typing verification. No format string required. TODO : Documentation/tracepoint.txt Changelog : - Use #name ":" #proto as string to identify the tracepoint in the tracepoint table. This will make sure not type mismatch happens due to connexion of a probe with the wrong type to a tracepoint declared with the same name in a different header. Signed-off-by: Mathieu Desnoyers <mathieu.desnoyers...
Jul 4, 7:52 pm 2008
Mathieu Desnoyers
[RFC patch 08/12] LTTng instrumentation FS tracepoint probes
Create a module which declares FS tracepoint probes, using markers. Signed-off-by: Mathieu Desnoyers <mathieu.desnoyers@polymtl.ca> CC: Alexander Viro <viro@zeniv.linux.org.uk> CC: 'Peter Zijlstra' <peterz@infradead.org> CC: "Frank Ch. Eigler" <fche@redhat.com> CC: 'Ingo Molnar' <mingo@elte.hu> CC: 'Hideo AOKI' <haoki@redhat.com> CC: Takashi Nishiie <t-nishiie@np.css.fujitsu.com> CC: 'Steven Rostedt' <rostedt@goodmis.org> CC: Masami Hiramatsu <mh...
Jul 4, 7:52 pm 2008
Mathieu Desnoyers
[RFC patch 06/12] LTTng instrumentation net
Network core events. Added tracepoints : net_del_ifa_ipv4 net_dev_receive net_dev_xmit net_insert_ifa_ipv4 net_socket_call net_socket_create net_socket_recvmsg net_socket_sendmsg Signed-off-by: Mathieu Desnoyers <mathieu.desnoyers@polymtl.ca> CC: netdev@vger.kernel.org CC: 'Peter Zijlstra' <peterz@infradead.org> CC: "Frank Ch. Eigler" <fche@redhat.com> CC: 'Ingo Molnar' <mingo@elte.hu> CC: 'Hideo AOKI' <haoki@redhat.com> CC: Takashi Nishiie <t-nishiie@n...
Jul 4, 7:52 pm 2008
Mathieu Desnoyers
[RFC patch 09/12] LTTng instrumentation ipc tracepoint probes
Create a module which declares ipc tracepoint probes, using markers. Signed-off-by: Mathieu Desnoyers <mathieu.desnoyers@polymtl.ca> CC: Alexander Viro <viro@zeniv.linux.org.uk> CC: 'Peter Zijlstra' <peterz@infradead.org> CC: "Frank Ch. Eigler" <fche@redhat.com> CC: 'Ingo Molnar' <mingo@elte.hu> CC: 'Hideo AOKI' <haoki@redhat.com> CC: Takashi Nishiie <t-nishiie@np.css.fujitsu.com> CC: 'Steven Rostedt' <rostedt@goodmis.org> CC: Masami Hiramatsu <m...
Jul 4, 7:52 pm 2008
Mathieu Desnoyers
[RFC patch 11/12] LTTng instrumentation mm tracepoint probes
Create a module which declares mm tracepoint probes, using markers. Signed-off-by: Mathieu Desnoyers <mathieu.desnoyers@polymtl.ca> CC: Alexander Viro <viro@zeniv.linux.org.uk> CC: 'Peter Zijlstra' <peterz@infradead.org> CC: "Frank Ch. Eigler" <fche@redhat.com> CC: 'Ingo Molnar' <mingo@elte.hu> CC: 'Hideo AOKI' <haoki@redhat.com> CC: Takashi Nishiie <t-nishiie@np.css.fujitsu.com> CC: 'Steven Rostedt' <rostedt@goodmis.org> CC: Masami Hiramatsu <mh...
Jul 4, 7:52 pm 2008
Mathieu Desnoyers
[RFC patch 12/12] LTTng instrumentation net tracepoint probes
Create a module which declares net tracepoint probes, using markers. Signed-off-by: Mathieu Desnoyers <mathieu.desnoyers@polymtl.ca> CC: Alexander Viro <viro@zeniv.linux.org.uk> CC: 'Peter Zijlstra' <peterz@infradead.org> CC: "Frank Ch. Eigler" <fche@redhat.com> CC: 'Ingo Molnar' <mingo@elte.hu> CC: 'Hideo AOKI' <haoki@redhat.com> CC: Takashi Nishiie <t-nishiie@np.css.fujitsu.com> CC: 'Steven Rostedt' <rostedt@goodmis.org> CC: Masami Hiramatsu <m...
Jul 4, 7:52 pm 2008
Mathieu Desnoyers
[RFC patch 10/12] LTTng instrumentation kernel tracepoint pr...
Create a module which declares kernel tracepoint probes, using markers. Signed-off-by: Mathieu Desnoyers <mathieu.desnoyers@polymtl.ca> CC: Alexander Viro <viro@zeniv.linux.org.uk> CC: 'Peter Zijlstra' <peterz@infradead.org> CC: "Frank Ch. Eigler" <fche@redhat.com> CC: 'Ingo Molnar' <mingo@elte.hu> CC: 'Hideo AOKI' <haoki@redhat.com> CC: Takashi Nishiie <t-nishiie@np.css.fujitsu.com> CC: 'Steven Rostedt' <rostedt@goodmis.org> CC: Masami Hiramatsu &l...
Jul 4, 7:52 pm 2008
Mathieu Desnoyers
[RFC patch 02/12] LTTng tracepoint instrumentation fs
Core filesystem tracepoints. Tracepoints added : fs_buffer_wait_end fs_buffer_wait_start fs_close fs_exec fs_ioctl fs_llseek fs_lseek fs_open fs_poll fs_pread64 fs_pwrite64 fs_read fs_readv fs_select fs_write fs_writev Signed-off-by: Mathieu Desnoyers <mathieu.desnoyers@polymtl.ca> CC: Alexander Viro <viro@zeniv.linux.org.uk> CC: 'Peter Zijlstra' <peterz@infradead.org> CC: "Frank Ch. Eigler" <fche@redhat.com> CC: 'Ingo Molnar' <mingo@elte.hu> CC: 'H...
Jul 4, 7:52 pm 2008
Mathieu Desnoyers
[RFC patch 04/12] LTTng instrumentation kernel
Core kernel events. *not* present in this patch because they are architecture specific : - syscall entry/exit - traps - kernel thread creation Added markers : kernel_irq_entry kernel_irq_exit kernel_kthread_stop kernel_kthread_stop_ret kernel_module_free kernel_module_load kernel_printk kernel_process_exit kernel_process_fork kernel_process_free kernel_process_wait kernel_sched_migrate_task kernel_sched_schedule kernel_sched_try_wakeup kernel_sched_wait_task kernel_sched_wakeup_ne...
Jul 4, 7:52 pm 2008
Mathieu Desnoyers
[RFC patch 03/12] LTTng instrumentation ipc
Interprocess communication, core events. Added tracepoints : ipc_msg_create ipc_sem_create ipc_shm_create Signed-off-by: Mathieu Desnoyers <mathieu.desnoyers@polymtl.ca> CC: 'Peter Zijlstra' <peterz@infradead.org> CC: "Frank Ch. Eigler" <fche@redhat.com> CC: 'Ingo Molnar' <mingo@elte.hu> CC: 'Hideo AOKI' <haoki@redhat.com> CC: Takashi Nishiie <t-nishiie@np.css.fujitsu.com> CC: 'Steven Rostedt' <rostedt@goodmis.org> --- ipc/ipc-trace.h | 15 ++++...
Jul 4, 7:52 pm 2008
Mathieu Desnoyers
[RFC patch 07/12] Traceprobes
Menu option to activate tracing probes. Signed-off-by: Mathieu Desnoyers <mathieu.desnoyers@polymtl.ca> CC: Alexander Viro <viro@zeniv.linux.org.uk> CC: 'Peter Zijlstra' <peterz@infradead.org> CC: "Frank Ch. Eigler" <fche@redhat.com> CC: 'Ingo Molnar' <mingo@elte.hu> CC: 'Hideo AOKI' <haoki@redhat.com> CC: Takashi Nishiie <t-nishiie@np.css.fujitsu.com> CC: 'Steven Rostedt' <rostedt@goodmis.org> CC: Masami Hiramatsu <mhiramat@redhat.com> --- ...
Jul 4, 7:52 pm 2008
Mathieu Desnoyers
[RFC patch 00/12] Tracepoints v2
Hi, Here is the second release of kernel tracepoints, including the architecture independent instrumentation taken from LTTng. I submit this for another round of comments. The patchset applies on 2.6.26-rc8 in this order : # Instrumentation tracepoints.patch lttng-instrumentation-fs.patch lttng-instrumentation-ipc.patch lttng-instrumentation-kernel.patch lttng-instrumentation-mm.patch lttng-instrumentation-net.patch # LTTng probes, using markers traceprobes.patch lttng-instrumentation-...
Jul 4, 7:52 pm 2008
Harvey Harrison
[PATCH] markers: fix sparse integer as NULL pointer warning
kernel/trace/trace_sysprof.c:164:20: warning: Using plain integer as NULL pointer Signed-off-by: Harvey Harrison <harvey.harrison@gmail.com> --- kernel/trace/trace_sysprof.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/kernel/trace/trace_sysprof.c b/kernel/trace/trace_sysprof.c index 2301e1e..bb948e5 100644 --- a/kernel/trace/trace_sysprof.c +++ b/kernel/trace/trace_sysprof.c @@ -161,7 +161,7 @@ static void timer_notify(struct pt_regs *regs, int cpu) __tra...
Jul 4, 7:50 pm 2008
Bastian Blank
[RESEND] [PATCH] bnx2 - use request_firmware()
Hi David This patch is used by Debian since 2.6.25 to use request_firmware in the bnx2 driver. It lacks a small piece of inline patching for now. The firmware files includes 7 firmwares with up to 3 sections plus some additional initialisation data. The corresponding firmware file generator is located at svn://svn.debian.org/kernel/dists/trunk/firmware-nonfree/bnx2/fwcutter. Signed-off-by: Bastian Blank <waldi@debian.org> Bastian drivers/net/Kconfig | 1 + drivers/net/bn...
Jul 4, 7:22 pm 2008
devzero
Re: block devices in userland
>is there an API for writing block device drivers in userland ? i don`t know if there is some in vanilla, but maybe dm-userspace is worth taking a look at ? see http://wiki.xensource.com/xenwiki/DmUserspace regards roland List: linux-kernel Subject: block devices in userland From: Enrico Weigelt <weigelt () metux ! de> Date: 2008-07-04 22:11:28 Message-ID: 20080704221127.GA25636 () nibiru ! local [Download message RAW] Hi folks, is there an API f...
Jul 4, 6:51 pm 2008
Enrico Weigelt
block devices in userland
Hi folks, is there an API for writing block device drivers in userland ? thx -- --------------------------------------------------------------------- Enrico Weigelt == metux IT service - http://www.metux.de/ --------------------------------------------------------------------- Please visit the OpenSource QM Taskforce: http://wiki.metux.de/public/OpenSource_QM_Taskforce Patches / Fixes for a lot dozens of packages in dozens of versions: http://patches.metux.de/ --------------...
Jul 4, 6:11 pm 2008
Arjan van de Ven
Oops/Warning report of the week of July 4th 2008
This week, a total of 3541 oopses and warnings have been reported, compared to 3794 reports in the previous week. The stats look very similar to last week; Fedora released a 2.6.25.9 based kernel upgrade, which led to a new sighting (at rank 12): the rt25xx wireless driver is calling flush_workqueue() with a NULL parameter in some cases. There has been a lot of thrash about the last report with regard to inclusion of wireless.git into the Fedora kernel rpms. As an observer I can say that it's both...
Jul 4, 6:14 pm 2008
Dave Jones
Re: Oops/Warning report of the week of July 4th 2008
On Fri, Jul 04, 2008 at 03:14:46PM -0700, Arjan van de Ven wrote: > The stats look very similar to last week; Fedora released a 2.6.25.9 based > kernel upgrade, which led to a new sighting (at rank 12): the rt25xx wireless > driver is calling flush_workqueue() with a NULL parameter in some cases. > There has been a lot of thrash about the last report with regard to inclusion of wireless.git > into the Fedora kernel rpms. As an observer I can say that it's both a blessing and a bo...
Jul 4, 6:23 pm 2008
Rafael J. Wysocki
[PATCH] x86 ACPI: Fix resume from suspend to RAM on uniproce...
Hi Ingo, This is a regression fix, please push to Linus ASAP. Thanks, Rafael --- From: Rafael J. Wysocki <rjw@sisk.pl> Since the trampoline code is now used for ACPI resume from suspend to RAM, the trampoline page tables have to be fixed up during boot not only on SMP systems, but also on UP systems that use the trampoline. Reference: http://bugzilla.kernel.org/show_bug.cgi?id=10923 Signed-off-by: Rafael J. Wysocki <rjw@sisk.pl> --- arch/x86/kernel/head_64.S | 2 +- ...
Jul 4, 6:05 pm 2008
R. J. Wysocki
Re: [PATCH] x86 ACPI: Fix resume from suspend to RAM on unip...
I should have added: -- Rafael J. Wysocki, Ph.D. Institute of Theoretical Physics Faculty of Physics of Warsaw University ul. Hoza 69, 00-681 Warsaw [tel: +48 22 55 32 263] [mob: +48 60 50 53 693] ---------------------------- One should not increase, beyond what is necessary, the number of entities required to explain anything. -- William of Ockham --
Jul 4, 6:08 pm 2008
Andrew Morton
Re: the printk problem
(heck, let's cc lkml - avoid having to go through all this again) It would be excellent if gcc had an extension system so that you could add new printf control chars and maybe even tell gcc how to check them. But of course, if that were to happen, we couldn't use it for 4-5 years. What I had initially proposed was to abuse %S, which takes a wchar_t*. gcc accepts `unsigned long *' for %S. Then, we put the kernel-specific control char after the S, so we can print an inode (rofl) with str...
Jul 4, 6:01 pm 2008
Andi Kleen
[PATCH] [0/9] Use 64bit x86 machine check code for 32bit too
This patchkit uses the 64bit machine check code which is better in many ways on 32bit x86 too. This is also the basis for some future machine check work. The 64bit machine check code is in many ways much better than the 32bit machine check code: it is more specification compliant, is cleaner, only has a single code base versus one per CPU, has better infrastructure for recovery, has a cleaner way to communicate with user space etc. etc. It requires testing especially on older systems (on new...
Jul 4, 5:20 pm 2008
Andi Kleen
[PATCH] [1/9] MCE: Make 64bit mce code 32bit clean
Mostly replace unsigned long with u64s if they need to contain 64bit values. Signed-off-by: Andi Kleen <ak@linux.intel.com> --- arch/x86/kernel/cpu/mcheck/mce_64.c | 12 ++++++------ include/asm-x86/mce.h | 24 ++++++++++++------------ 2 files changed, 18 insertions(+), 18 deletions(-) Index: linux/arch/x86/kernel/cpu/mcheck/mce_64.c =================================================================== --- linux.orig/arch/x86/kernel/cpu/mcheck/mce_64.c +++ linux/arch...
Jul 4, 5:20 pm 2008
Andi Kleen
[PATCH] [9/9] MCE: Use 64bit machine check code on 32bit
The 64bit machine check code is in many ways much better than the 32bit machine check code: it is more specification compliant, is cleaner, only has a single code base versus one per CPU, has better infrastructure for recovery, has a cleaner way to communicate with user space etc. etc. Use the 64bit code for 32bit too. This is the second attempt to do this. There was one a couple of years ago to unify this code for 32bit and 64bit. Back then this ran into some trouble with K7s and was reve...
Jul 4, 5:20 pm 2008
Andi Kleen
[PATCH] [8/9] MCE: Remove oops_begin() use in 64bit machine ...
First 32bit doesn't have oops_begin, so it's a barrier of using this code on 32bit. On closer examination it turns out oops_begin is not a good idea in a machine check panic anyways. All oops_begin does it so check for recursive/parallel oopses and implement the "wait on oops" heuristic. But there's actually no good reason to lock machine checks against oopses or prevent them from recursion. Also "wait on oops" does not really make sense for a machine check too. So just remove it. Replace...
Jul 4, 5:20 pm 2008
Andi Kleen
[PATCH] [3/9] MCE: Port K7 bank 0 quirk to 64bit mce code
Various K7 have broken bank 0s. Don't enable it by default Port from the 32bit code. Signed-off-by: Andi Kleen <ak@linux.intel.com> --- arch/x86/kernel/cpu/mcheck/mce_64.c | 6 ++++++ 1 file changed, 6 insertions(+) Index: linux/arch/x86/kernel/cpu/mcheck/mce_64.c =================================================================== --- linux.orig/arch/x86/kernel/cpu/mcheck/mce_64.c +++ linux/arch/x86/kernel/cpu/mcheck/mce_64.c @@ -482,6 +482,12 @@ static void __cpuinit mce_cpu_q...
Jul 4, 5:20 pm 2008
Andi Kleen
[PATCH] [7/9] MCE: Remove machine check handler idle notify ...
i386 has no idle notifiers, but the 64bit machine check code uses them to wake up mcelog from a fatal machine check exception. For corrected machine checks found by the poller or threshold interrupts going through an idle notifier is not needed because the wake_up can is just done directly and doesn't need the idle notifier. It is only needed for logging exceptions. To be honest I never liked the idle notifier even though I signed off on it. On closer investigation the code actually turned ou...
Jul 4, 5:20 pm 2008
Andi Kleen
[PATCH] [6/9] MCE: Provide exit_idle dummy functions for 32b...
At some point i386 should probably gain true idle notifiers again, but not now. This is required for the 64bit thermal/threshold interrupt handlers. Signed-off-by: Andi Kleen <ak@linux.intel.com> --- include/asm-x86/idle.h | 5 +++++ 1 file changed, 5 insertions(+) Index: linux/include/asm-x86/idle.h =================================================================== --- linux.orig/include/asm-x86/idle.h +++ linux/include/asm-x86/idle.h @@ -7,7 +7,12 @@ struct notifier_bloc...
Jul 4, 5:20 pm 2008
Andi Kleen
[PATCH] [5/9] MCE: Rename mce_dont_init on 64bit to mce_disa...
This way they are the same between 32bit and 64bit and no special cases needed. The semantics were always the same. Signed-off-by: Andi Kleen <ak@linux.intel.com> --- arch/x86/kernel/cpu/mcheck/mce_64.c | 8 ++++---- include/asm-x86/mce.h | 2 -- 2 files changed, 4 insertions(+), 6 deletions(-) Index: linux/arch/x86/kernel/cpu/mcheck/mce_64.c =================================================================== --- linux.orig/arch/x86/kernel/cpu/mcheck/mce_64.c +++...
Jul 4, 5:20 pm 2008
Andi Kleen
[PATCH] [4/9] MCE: Call 64bit machine check through a call v...
The 32bit mce code still needs that to interface to the WinChip and P5 machine check handlers. On 64bit it's not strictly needed, but also doesn't really hurt. This way avoids some special cases for 32bit. Signed-off-by: Andi Kleen <ak@linux.intel.com> --- arch/x86/kernel/cpu/mcheck/mce_64.c | 9 +++++++++ arch/x86/kernel/entry_64.S | 2 +- include/asm-x86/mce.h | 2 ++ 3 files changed, 12 insertions(+), 1 deletion(-) Index: linux/arch/x86/kernel/c...
Jul 4, 5:20 pm 2008
Andi Kleen
[PATCH] [2/9] MCE: Implement the PPro bank 0 quirk in the 64...
Quoting the comment: * SDM documents that on family 6 bank 0 should not be written * because it aliases to another special BIOS controlled * register. * But it's not aliased anymore on model 0x1a+ * Don't ignore bank 0 completely because there could be a valid * event later, merely don't write CTL0. This is mostly a port on the 32bit code, except that 32bit always didn't write it and didn't have the 0x1a heuristic. I checked with the CPU designers that the quirk is not required starting wit...
Jul 4, 5:20 pm 2008
Ondrej Zary
pata_it821x completely broken
Hello, after a total hard disk failure, I decided to build RAID1 using a cheap card with it8212 chip and two Samsung HD400LD drives. I thought that the pata_it821x driver is mature and should work fine (it does not depend on EXPERIMENTAL). However, it seems to be broken in several ways (in 2.6.25.3). When I don't have any RAID array created, both drives are detected but it appears to work only in MWDMA2 mode: pata_it821x: controller in smart mode. ACPI: PCI Interrupt Link [LNKC] enabled at I...
Jul 4, 3:53 pm 2008
Alan Cox
Re: pata_it821x completely broken
The speed is meaningless in hardware RAID mode. Its also btw usually faster (except for some cases of RAID1 with high PCI bus utilisation like IT821x does not support the HPA in 'raid' mode, only in non RAID mode so Ok that is a bug I've not met. What firmware revision is this and does it It seems to have decided to be indefinitely busy from that. Alan --
Jul 4, 4:22 pm 2008
Ondrej Zary
Re: pata_it821x completely broken
It complains pretty loudly - something like 3 screens (with framebuffer at 1024x768) of errors like this: sd 3:0:0:0: [sdc] Synchronizing SCSI cache ata4.00: exception Emask 0x0 SAct 0x0 SErr 0x0 action 0x0 ata4.00: cmd ea/00:00:00:00:00/00:00:00:00:00/a0 tag 0 res 50/00:01:01:00:00/00:00:00:00:00/00 Emask 0x1 (device error) ata4.00: status: { DRDY } ata4.00: failed to read native max address (err_mask=0x1) ata4.00: HPA support seems broken, skipping HPA handling ata4.00: revalidati...
Jul 4, 5:39 pm 2008
Alan Cox
Re: pata_it821x completely broken
Interesting. I need to have a poke at that - it used to work fine but I've not tested the 821x recently and the HPA code has changed. It shouldn't be issuing HPA commands in the first place. Added to the TODO list. The HPA is supposed to be cleared by the driver setup code but if the newer firmware is faking it then I wonder what it does if we allow Thanks --
Jul 4, 5:46 pm 2008
Dave Jones
usb-storage: quirk around v1.11 firmware on Nikon D4
usb-storage: quirk around v1.11 firmware on Nikon D40 https://bugzilla.redhat.com/show_bug.cgi?id=454028 Just as in earlier firmware versions, we need to perform this quirk for the latest version too. Signed-off-by: Dave Jones <davej@redhat.com> diff --git a/drivers/usb/storage/unusual_devs.h b/drivers/usb/storage/unusual_devs.h index 45fe366..cf03af1 100644 --- a/drivers/usb/storage/unusual_devs.h +++ b/drivers/usb/storage/unusual_devs.h @@ -364,6 +364,13 @@ UNUSUAL_DEV( 0x04b0, 0x041...
Jul 4, 3:33 pm 2008
Matthew Dharm
Re: usb-storage: quirk around v1.11 firmware on Nikon D4
NAK. Two entries should not have overlapping version ranges, unless configuration options are involved. Why not just extend the range of the existing entry? Matt --=20 Matthew Dharm Home: mdharm-usb@one-eyed-alien.= net=20 Maintainer, Linux USB Mass Storage Driver P: How about "Web Designer"? DP: I'd like a name that people won't laugh at. -- Pitr and Dust Puppy User Friendly, 12/6/1997
Jul 4, 3:42 pm 2008
Dave Jones
Re: usb-storage: quirk around v1.11 firmware on Nikon D4
usb-storage: quirk around v1.11 firmware on Nikon D40 https://bugzilla.redhat.com/show_bug.cgi?id=454028 Just as in earlier firmware versions, we need to perform this quirk for the latest version too. Signed-off-by: Dave Jones <davej@redhat.com> diff --git a/drivers/usb/storage/unusual_devs.h b/drivers/usb/storage/unusual_devs.h index 39a7c11..1a497e9 100644 --- a/drivers/usb/storage/unusual_devs.h +++ b/drivers/usb/storage/unusual_devs.h @@ -358,7 +358,7 @@ UNUSUAL_DEV( 0x04b0, 0x040f...
Jul 4, 3:59 pm 2008
Alan Stern
Re: usb-storage: quirk around v1.11 firmware on Nikon D4
You updated the entry for the D80, not the D40. Maybe they both need to be updated? Alan Stern --
Jul 4, 6:09 pm 2008
Dave Jones
Re: usb-storage: quirk around v1.11 firmware on Nikon D4
On Fri, Jul 04, 2008 at 06:09:25PM -0400, Alan Stern wrote: > On Fri, 4 Jul 2008, Dave Jones wrote: > > > usb-storage: quirk around v1.11 firmware on Nikon D40 > ... > > -UNUSUAL_DEV( 0x04b0, 0x0411, 0x0100, 0x0110, > > +UNUSUAL_DEV( 0x04b0, 0x0411, 0x0100, 0x0111, > > "NIKON", > > "NIKON DSC D80", > > You updated the entry for the D80, not the D40. argh. > Maybe they both need to be updated? Maybe. I'm not familiar wit...
Jul 4, 6:20 pm 2008
eledisez
Patch to add Broadcom TPM TIS device HID
This patch adds Broadcom TPM TIS device HID : BCM0102. Tested with by DELL D630 Laptop computer. Best regards. LE DISEZ Erwan.
Jul 4, 2:45 pm 2008
Robert Richter
[PATCH] OProfile kernel maintainership changes
Cc: Philippe Elie <phil.el@wanadoo.fr> Cc: John Levon <levon@movementarian.org> Cc: Maynard Johnson <maynardj@us.ibm.com> Cc: Richard Purdie <rpurdie@openedhand.com> Cc: Daniel Hansel <daniel.hansel@linux.vnet.ibm.com> Cc: Jason Yeh <jason.yeh@amd.com> Cc: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Robert Richter <robert.richter@amd.com> --- MAINTAINERS | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/MAINT...
Jul 4, 2:53 pm 2008
Andrew Morton
Re: [PATCH] OProfile kernel maintainership changes
Well that's interesting - please tell us more? Will you also have a role in oprofile userspace maintenance? --
Jul 4, 3:09 pm 2008
Richard Purdie
Re: [PATCH] OProfile kernel maintainership changes
OProfile maintainership is undergoing some transitions as announced by John on the oprofile list earlier today. In summary, Maynard is taking over the overall control of oprofile userspace with Daniel advising on the JIT stuff and me taking on responsibility for the arm kernel+userspace bits and the userspace GUI bits. Robert has volunteered to take a role of looking after the kernel side of things alongside or replacing Philippe depending on how he feels about this - I'm not 100% clear on Phili...
Jul 4, 6:36 pm 2008
Jaswinder Singh
[PATCH] edgeport-ti: use request_firmware()
Firmware blob looks like this... unsigned char MajorVersion unsigned char MinorVersion unsigned short BuildNumber unsigned char data Signed-off-by: Jaswinder Singh <jaswinder@infradead.org> --- drivers/usb/serial/io_fw_down3.h | 847 -------------------------------------- drivers/usb/serial/io_ti.c | 73 +++-- firmware/Makefile | 1 + firmware/WHENCE | 16 + firmware/edgeport/down3.bin.ihex | 815 ++++++++++...
Jul 4, 1:49 pm 2008
Johannes Weiner
[PATCH -mm] documentation: update CodingStyle tips for Emacs...
Describe a setup that integrates better with Emacs' cc-mode and also fixes up the alignment of continuation lines to really only use tabs. Signed-off-by: Johannes Weiner <hannes@saeurebad.de> --- Sorry, forgot linux-kernel on first send. diff --git a/Documentation/CodingStyle b/Documentation/CodingStyle index 6caa146..4148e9f 100644 --- a/Documentation/CodingStyle +++ b/Documentation/CodingStyle @@ -474,25 +474,29 @@ make a good program). So, you can either get rid of GNU emacs, or ch...
Jul 4, 1:52 pm 2008
Jonathan Corbet
Re: [PATCH -mm] documentation: update CodingStyle tips for E...
On Fri, 04 Jul 2008 19:52:16 +0200 Shouldn't that be "(and filename ..." rather than "file"? A test for /usr/src/linux seems misplaced, though; I don't think a whole lot of people keep their kernel trees there anymore. There must be a better heuristic one can use to figure out whether a kernel source file is being edited. jon --
Jul 4, 3:41 pm 2008
Johannes Weiner
[PATCH 20/20] cris: use generic show_mem()
Remove arch-specific show_mem() in favor of the generic version. This also removes the following redundant information display: - free pages, printed by show_free_areas() - pages in swapcache, printed by show_swap_cache_info() where show_mem() calls show_free_areas(), which calls show_swap_cache_info(). Signed-off-by: Johannes Weiner <hannes@saeurebad.de> Acked-by: Mikael Starvik <starvik@axis.com> --- arch/cris/mm/init.c | 30 ------------------------------ 1 file changed...
Jul 4, 12:07 pm 2008
Johannes Weiner
[PATCH 19/20] frv: use generic show_mem()
Remove arch-specific show_mem() in favor of the generic version. This also removes the following redundant information display: - free pages, printed by show_free_areas() where show_mem() calls show_free_areas(). Signed-off-by: Johannes Weiner <hannes@saeurebad.de> Acked-by: David Howells <dhowells@redhat.com> --- arch/frv/mm/init.c | 31 ------------------------------- 1 file changed, 31 deletions(-) --- a/arch/frv/mm/init.c +++ b/arch/frv/mm/init.c @@ -63,37 +63,6 @@ E...
Jul 4, 12:07 pm 2008
previous daytodaynext day
July 3, 2008July 4, 2008July 5, 2008