linux-kernel mailing list

FromSubjectsort iconDate
Max Waterman
XFS internal error
Hi, I have just had an XFS error occur while deleting some directory hierarchy. I hope this is the correct place to report it. It essentially shutdown the file system, and a reboot seemed to return everything to normal. I am fairly sure there is nothing I can do about this, but I thought it prudent to mention it. Searching turned up some similar issues, but they seem related to a previous kernel version and claimed to be fixed in The array is a little 'unorthodox', if that matters. Ma...
Oct 6, 9:09 pm 2007
Oleg Verych
Re: [PATCH 0/2] Colored kernel output (run2)
I'm trying to say "text size *and* config option is not set". That If it is so important for major kernel developer like you, Ingo, then why there's no scrollback at first place? Why nothing like that was not implemented up until now? My first ever Linux hack was changing default console output color. I think it was seven years ago. I though, it was not serious, if nobody did that already (in the 2.2.14). I added comment (like this), so anyone can skip reading body, if headers are "Ol...
Oct 6, 5:03 pm 2007
Jan Engelhardt
Re: [PATCH 0/2] Colored kernel output (run2)
You can't. I think that people will usually be interested _why_ you voted for or against something (given the number of vote-submitters does not go through the roof). That clearly won't fit into the subject, and even if RFC822 allowed it, it's only displayed like 40 chars wide. The submitter (me in this case) will even look at *all* mails, so as to (1) address the NAKs and (2) address the hidden feature requests in ACKs. :-) -
Oct 6, 5:03 pm 2007
Oleg Verych
About summary in the subject (Re: [PATCH 0/2] Colored kernel...
Do you really think so? Yes, there are possibly LKML bots, that will read all messages in every thread. But i doubt they are humans. I also think, that kill-files and kill-names are common tools of the LKML readers. Thus, if someone sees my name with something like NAK in the subject, then nothing to worry about: next, please. I just amazed how inefficiently Subject, To, Cc headers are used. Everybody hurry through huge mail backlogs with subjects in thread all like one. Summary and keywords he...
Oct 6, 5:55 pm 2007
Jeff Garzik
[PATCH] net/core: split dev_ifsioc() according to locking
This always bugged me: dev_ioctl() called dev_ifsioc() either inside read_lock(dev_base_lock) or rtnl_lock(), depending on the ioctl being executed. This change moves the ioctls executed inside dev_base_lock to a new function, dev_ifsioc_locked(). Now the locking context is completely clear to the reader. Signed-off-by: Jeff Garzik <jgarzik@redhat.com> --- net/core/dev.c | 88 +++++++++++++++++++++++++++++++++++++-------------------- 1 file changed, 58 insertions(+), 30 deletions(-...
Oct 6, 4:42 pm 2007
Arnd Bergmann
Re: [PATCH] net/core: split dev_ifsioc() according to locking
Great idea! I've been experimenting with a new compat_dev_ioctl() function along the lines of what I just posted for the blkdev ioctls. For that, it would be perfect to streamline dev_ioctl further: * move the dev_load() and locking into dev_ifsioc{,_locked} * move the copy_to_user step to a single place at the end of dev_ioctl After that, we could have very simple dev_ioctl and compat_dev_ioctl functions calling the same dev_ifsioc{,_locked} functions. Arnd <>< -
Oct 6, 8:17 pm 2007
Ahmed S. Darwish
[Oops] on 2.6.23-rc9 sysRq Show Tasks (t)
Hi all, Pressing sysRq+T always produce an Oops for every running system task (94 Oopses, that's a record ;)). The bug is 100% reproducable. Should I begin bisecting/investigating the issue or it's a known problem ? $ ver_linux Linux darwish-laptop 2.6.23-rc9 #23 Sat Oct 6 21:48:45 EET 2007 i686 GNU/Linux Gnu C 4.0.3 Gnu make 3.81beta4 binutils 2.16.91 util-linux 2.12r mount 2.12r module-init-tools 3.2.2 e2f...
Oct 6, 4:14 pm 2007
Alexey Dobriyan
Re: [Oops] on 2.6.23-rc9 sysRq Show Tasks (t)
Start with some old kernel, like mmm.. 2.6.0. The fact that same behaviour was present there may make you think about faulty assumptions you've -
Oct 6, 5:12 pm 2007
Ahmed S. Darwish
Re: [Oops] on 2.6.23-rc9 sysRq Show Tasks (t)
Shame, This is not an Oops at all. Really sorry. /me wondering about my look now posting a normal message as an Ooops a day before the stable release :(. -- Ahmed S. Darwish HomePage: http://darwish.07.googlepages.com Blog: http://darwish-07.blogspot.com -
Oct 6, 4:52 pm 2007
Jan Engelhardt
[PATCH 2/2] Colored kernel output (run3)
Colored kernel message output (2/2) By popular request, this patch adds per-loglevel coloring. The user may set values using vt.printk_color= or by modifying the sysfs file in the running system. Signed-off-by: Jan Engelhardt <jengelh@gmx.de> --- arch/x86_64/kernel/early_printk.c | 11 +++++++---- drivers/char/Kconfig | 4 +++- drivers/char/vt.c | 32 ++++++++++++++++++++++++-------- drivers/net/netconsole.c | 3 ++- drivers/serial/825...
Oct 6, 4:10 pm 2007
Oleg Verych
Re: [PATCH 2/2] Colored kernel output (run3)
Thanks for dealing with my acidness in the first patch :) But what about this one? Making this amount changes and not thinking about more intelligent I mean, *write() have nothing to do with loglevels. If they do (suddenly), then why not to use a char in the *str to make it possible? I might be wrong, but there are already macros before format strings in printk(). And this is not `loglevel' thing any more. It's attributes, which can be used by many other drivers/file systems/schedulers/ wh...
Oct 6, 5:25 pm 2007
Jan Engelhardt
Re: [PATCH 2/2] Colored kernel output (run3)
Well humm.. in an unmodified kernel, the last function that has knowledge of the loglevel is _call_console_drivers() in kernel/printk.c. From there, the call chain is directly -> __call_console_drivers() -> drivers/char/vt.c:vt_console_print(). _call_console_drivers() skips the <N> substring and passes on the rest of the message: if (msg_level < 0 && ((end - cur_index) > 2) && LOG_BUF(cur_index + 0) == '<' &a...
Oct 6, 5:27 pm 2007
Oleg Verych
Re: On text size and run time if config is "n", [PATCH 2/2] ...
On Sat, Oct 06, 2007 at 11:27:54PM +0200, Jan Engelhardt wrote: I thought, i was talking about *write() functions, that got one additional unrelated, non config removable API change in face of `unsigned int loglevel'. Idea. Extend those macro defines before format string with one additional macro, that will be empty, if config is NO and having colour byte otherwise. In the *write() functions, have color = str[0]; ++str; in case if config is YES. And nothing otherwise. have no ...
Oct 6, 6:28 pm 2007
Jan Engelhardt
Re: On text size and run time if config is "n", [PATCH 2/2] ...
This is just as "bad" as the loglevel parameter. Because you'd have to parse str[0] in _every_ write() function. Furthermore, the string that is being printed also goes to klogd/syslog, including the <N> tag already. If you now add a color byte in the KERN_* macros, then (Paraphrased one paragraph above.) -
Oct 6, 6:20 pm 2007
Jan Engelhardt
[PATCH 1/2] Colored kernel output (run3)
Colored kernel message output (1/2) This patch makes it possible to give kernel messages a selectable color. It can be chosen at compile time, overridden at boot time, and changed at run time. References: http://lkml.org/lkml/2007/4/1/162 http://lkml.org/lkml/2007/10/5/199 Signed-off-by: Jan Engelhardt <jengelh@gmx.de> --- drivers/char/Kconfig | 42 ++++++++++++++++++++++++++++++++++++++++++ drivers/char/vt.c | 23 +++++++++++++++++++++++ 2 files changed, 65 insertions(+) ...
Oct 6, 4:09 pm 2007
Alan Cox
Re: [PATCH 1/2] Colored kernel output (run3)
On Sat, 6 Oct 2007 22:09:52 +0200 (CEST) As the nearest thing to a tty maintainer I'd like to NAK this as "Silly" -
Oct 6, 6:52 pm 2007
Jan Engelhardt
[PATCH 2/2] Colored kernel output (run2)
Colored kernel message output (2/2) By popular request, this patch adds per-loglevel coloring. The user may set values using vt.printk_color= or by modifying the sysfs file in the running system. Signed-off-by: Jan Engelhardt <jengelh@gmx.de> --- arch/x86_64/kernel/early_printk.c | 11 +++++++---- drivers/char/Kconfig | 4 +++- drivers/char/vt.c | 30 +++++++++++++++++++++++------- drivers/net/netconsole.c | 3 ++- drivers/serial/8250....
Oct 6, 3:13 pm 2007
Jan Engelhardt
[PATCH 1/2] Colored kernel output (run2)
Colored kernel message output (1/2) This patch makes it possible to give kernel messages a selectable color. It can be chosen at compile time, overridden at boot time, and changed at run time. There is no way to disable this option. It would only add ugly ifdefs, and the default color is the one that vt.c used for all the past years anyway, so apart from the config option, nothing changes for the conservative user. References: http://lkml.org/lkml/2007/4/1/162 [ message continues ]
" title="http://lkml.org/lkml/2007/10/...">http://lkml.org/lkml/2007/10/...
Oct 6, 3:13 pm 2007
Robert Hancock
Re: cx88 pci_abort messages
PCI aborts won't have anything to do with interrupts. It's a PCI DMA transfer that either the initiator (here, the TV card) or the target (the chipset host bridge) decided to puke on for some reason. Possibly parity errors? -- Robert Hancock Saskatoon, SK, Canada To email, remove "nospam" from hancockr@nospamshaw.ca Home Page: http://www.roberthancock.com/ -
Oct 6, 2:48 pm 2007
Scott
Re: cx88 pci_abort messages
I assumed it was an interrupt issue based on the 'irq mepg' error, not a DMA issue. Any suggestions on how to log more information about PCI DMA events on a system wide basis? I've seen this since 2.6.18. -- Scott <linux-kernel@bluecamel.eml.cc> -
Oct 6, 5:15 pm 2007
Arnd Bergmann
[patch 3/9] compat_ioctl: handle blk_trace ioctls
blk_trace_setup is broken on x86_64 compat systems, this makes the code work correctly on all 64 bit architectures in compat mode. Signed-off-by: Arnd Bergmann <arnd@arndb.de> Index: linux-2.6/block/blktrace.c =================================================================== --- linux-2.6.orig/block/blktrace.c +++ linux-2.6/block/blktrace.c @@ -312,33 +312,26 @@ static struct rchan_callbacks blk_relay_ /* * Setup everything required to start tracing */ -static int blk_trace_setup(...
Oct 6, 2:19 pm 2007
Arnd Bergmann
[patch 9/9] compat_ioctl: fix compat_fd_ioctl pointer access
As found by sparse, a user space pointer is assigned to a kernel data structure while calling other code with set_fs(KERNEL_DS), which could lead to leaking kernel data if that pointer is ever accessed. I could not find any place in the floppy drivers that actually uses that pointer, but assigning it to an empty string is a safer choice and gets rid of the sparse warning. Signed-off-by: Arnd Bergmann <arnd@arndb.de> Index: linux-2.6/block/compat_ioctl.c ===================================...
Oct 6, 2:19 pm 2007
Arnd Bergmann
[patch 7/9] compat_ioctl: move floppy handlers to block/comp...
The floppy ioctls are used by multiple drivers, so they should be handled in a shared location. Also, add minor cleanups. Signed-off-by: Arnd Bergmann <arnd@arndb.de> Index: linux-2.6/block/compat_ioctl.c =================================================================== --- linux-2.6.orig/block/compat_ioctl.c +++ linux-2.6/block/compat_ioctl.c @@ -203,6 +203,332 @@ static int compat_blkpg_ioctl(struct ino #define BLKBSZSET_32 _IOW(0x12, 113, int) #define BLKGETSIZE64_32 _IOR(0x12, 114...
Oct 6, 2:19 pm 2007
Arnd Bergmann
[patch 6/9] compat_ioctl: move cdrom handlers to block/compa...
These are shared by all cd-rom drivers and should have common handlers. Do slight cosmetic cleanups in the process. Signed-off-by: Arnd Bergmann <arnd@arndb.de> Index: linux-2.6/block/compat_ioctl.c =================================================================== --- linux-2.6.orig/block/compat_ioctl.c +++ linux-2.6/block/compat_ioctl.c @@ -92,6 +92,84 @@ static int compat_hdio_ioctl(struct inod return error; } +struct compat_cdrom_read_audio { + union cdrom_addr addr; + u8 ad...
Oct 6, 2:19 pm 2007
Arnd Bergmann
[patch 4/9] compat_ioctl: move hdio calls to block/compat_io...
These are common to multiple block drivers, so they should be handled by the block layer. Signed-off-by: Arnd Bergmann <arnd@arndb.de> Index: linux-2.6/block/compat_ioctl.c =================================================================== --- linux-2.6.orig/block/compat_ioctl.c +++ linux-2.6/block/compat_ioctl.c @@ -36,6 +36,62 @@ static int compat_put_u64(unsigned long return put_user(val, (compat_u64 __user *)compat_ptr(arg)); } +struct compat_hd_geometry { + unsigned char head...
Oct 6, 2:19 pm 2007
Arnd Bergmann
[patch 0/9] compat_ioctl: introduce block/compat_ioctl.c
This is my block ioctl series split up into managable chunks. I'm not really sure about the last two of these, I'd prefer to get a second opinion on those. Please apply once your tests have gone though. Arnd <>< -
Oct 6, 2:19 pm 2007
Arnd Bergmann
[patch 5/9] compat_ioctl: move BLKPG handling to block/compa...
BLKPG is common to all block devices, so it should be handled by common code. Signed-off-by: Arnd Bergmann <arnd@arndb.de> Index: linux-2.6/block/compat_ioctl.c =================================================================== --- linux-2.6.orig/block/compat_ioctl.c +++ linux-2.6/block/compat_ioctl.c @@ -92,6 +92,35 @@ static int compat_hdio_ioctl(struct inod return error; } +struct compat_blkpg_ioctl_arg { + compat_int_t op; + compat_int_t flags; + compat_int_t datalen; + comp...
Oct 6, 2:19 pm 2007
Arnd Bergmann
[patch 1/9] compat_ioctl: move common block ioctls to compat...
Make compat_blkdev_ioctl and blkdev_ioctl reflect the respective native versions. This is somewhat more efficient and makes it easier to keep the two in sync. Signed-off-by: Arnd Bergmann <arnd@arndb.de> Index: linux-2.6/block/Makefile =================================================================== --- linux-2.6.orig/block/Makefile +++ linux-2.6/block/Makefile @@ -11,3 +11,4 @@ obj-$(CONFIG_IOSCHED_DEADLINE) += deadli obj-$(CONFIG_IOSCHED_CFQ) += cfq-iosched.o obj-$(CONFIG_BLK_DEV...
Oct 6, 2:19 pm 2007
Christoph Hellwig Oct 6, 2:55 pm 2007
Arnd Bergmann
Re: [patch 1/9] compat_ioctl: move common block ioctls to co...
Hmm, I'm not sure. They are modeled after the put_{short,int,uint,...} functions that only exist in block/ioctl.c and I put them in so I could use almost identical code in the native and compat path. If we find these generally useful, I guess we could have both versions of each of these functions in global headers, e.g. in linux/uaccess.h and linux/compat.h, but right now I would recommend using plain put_user in all compat code except for block ioctl. Arnd <>< -
Oct 6, 7:44 pm 2007
Arnd Bergmann
[patch 2/9] compat_ioctl: add compat_blkdev_driver_ioctl()
Handle those blockdev ioctl calls that are compatible directly from the compat_blkdev_ioctl() function, instead of having to go through the compat_ioctl hash lookup. Signed-off-by: Arnd Bergmann <arnd@arndb.de> Index: linux-2.6/block/compat_ioctl.c =================================================================== --- linux-2.6.orig/block/compat_ioctl.c +++ linux-2.6/block/compat_ioctl.c @@ -40,6 +40,122 @@ static int compat_put_u64(unsigned long #define BLKBSZSET_32 _IOW(0x12, 113, int...
Oct 6, 2:19 pm 2007
Arnd Bergmann
[patch 8/9] compat_ioctl: call disk->fops->compat_ioct...
Normally, all compat_ioctl operations are called without the BKL, the block device operations are an exception to this rule. Make this work the same as the other handlers. Signed-off-by: Arnd Bergmann <arnd@arndb.de> --- It would be good to find out whether it has been using the BKL on purpose or by accident, before this patch gets applied. Index: linux-2.6/block/compat_ioctl.c =================================================================== --- linux-2.6.orig/block/compat_ioctl....
Oct 6, 2:19 pm 2007
Oliver Pinter
Security leak in kernel
Hi All! this: http://www.milw0rm.com/exploits/4460http://www.milw0rm.com/exploits/4460 exploit is fixed in kernel or not? this find I now.. -- Thanks, Oliver -
Oct 6, 1:58 pm 2007
Willy Tarreau
Re: Security leak in kernel
Yes it's fixed by commit 176df2457 on 2007/09/21. It was CVE-2007-4573. Regards, Willy -
Oct 6, 3:18 pm 2007
Mark Weber
hdparm standby timeout not working for WD raptors?
I can't get "hdparm -S" to work at all. Using "hdparm -S 1" should set the timeout to 5 seconds, but the drives stay active/idle all the time. When I set to standby manually, the drives stay on standby for days, and start up fine when they are used. I know this because I logged status every 30 minutes using crontab. They just don't standby automatically. I'm using 5 identical drives (see below for drive info), with software RAID. Any suggestions? System details follow. # uname -a L...
Oct 6, 1:11 pm 2007
Gilles Gigan
[PATCH] watchdog: add Nano 7240 driver
from: Gilles Gigan <gilles.gigan@bluebottle.com> Adds watchdog driver for EPIC Nano 7240 boards from IEI Signed-off-by: Gilles Gigan <gilles.gigan@bluebottle.com> --- diff -uprN -X linux-2.6.23-rc9/Documentation/dontdiff linux-2.6.23-rc9/drivers/char/watchdog/Kconfig linux-2.6.23-rc9-dirty/drivers/char/watchdog/Kconfig --- linux-2.6.23-rc9/drivers/char/watchdog/Kconfig 2007-10-06 01:43:44.000000000 +1000 +++ linux-2.6.23-rc9-dirty/drivers/char/watchdog/Kconfig 2007-10-06 14:49:03.00...
Oct 6, 11:39 am 2007
Yan Zheng
[PATCH]AIO: fix cleanup in io_submit_one(...)
Hello, When IOCB_FLAG_RESFD flag is set and iocb->aio_resfd is incorrect, statement 'goto out_put_req' is executed. At label 'out_put_req', aio_put_req(..) is called, which requires 'req->ki_filp' set. Regards Signed-off-by: Yan Zheng<yanzheng@21cn.com> ---- diff -ur linux-2.6.23-rc9/fs/aio.c linux/fs/aio.c --- linux-2.6.23-rc9/fs/aio.c 2007-07-09 07:32:17.000000000 +0800 +++ linux/fs/aio.c 2007-10-07 00:05:10.000000000 +0800 @@ -1562,6 +1562,7 @@ fput(fil...
Oct 6, 12:26 pm 2007
Jeff Garzik
[PATCH 0/5] forcedeth: several proposed updates for testing
The 'fe-lock' branch of git://git.kernel.org/pub/scm/linux/kernel/git/jgarzik/netdev-2.6.git fe-lock contains the following changes that I would like to get tested: [netdrvr] forcedeth: make NAPI unconditional [netdrvr] forcedeth: interrupt handling cleanup [netdrvr] forcedeth: process TX completions using NAPI [netdrvr] forcedeth: internal simplification and cleanups [netdrvr] forcedeth: timer overhaul These are intended for feedback and testing, NOT for mergin...
Oct 6, 11:12 am 2007
Jeff Garzik
Re: [PATCH 0/5] forcedeth: several proposed updates for test...
s/and hopefully// (it became the next bullet point) -
Oct 6, 11:24 am 2007
Jeff Garzik
Re: [PATCH 0/5] forcedeth: several proposed updates for test...
It should also be pointed out that these patches were generated on top of davem's net-2.6.24.git tree. They -probably- apply to -mm, but you might have to remove the forcedeth patches -mm already has, before applying. -
Oct 6, 11:17 am 2007
Jeff Garzik
[PATCH 5/5] forcedeth: timer overhaul
commit d7c766113ee2ec66ae8975e0acbad086d2c23594 Author: Jeff Garzik <jeff@garzik.org> Date: Sat Oct 6 10:57:56 2007 -0400 [netdrvr] forcedeth: timer overhaul * convert stats_poll timer to a delayed-work workqueue stats_task * protect hw stats update with a lock * now that recovery is the only remaining use of nv_do_nic_poll(), rename it to nv_reset_task(), move it from a timer to a workqueue, and delete all non-recovery-related code from the ...
Oct 6, 11:15 am 2007
Jeff Garzik
[PATCH 4/5] forcedeth: internal simplification and cleanups
commit 39572457a4dfe9a9dc1efd6641e7a6467e5658a1 Author: Jeff Garzik <jeff@garzik.org> Date: Sat Oct 6 01:21:01 2007 -0400 [netdrvr] forcedeth: internal simplification and cleanups * remove changelog from source; its kept in git repository * split guts of RX/TX DMA engine disable into disable portion, and wait/etc. portions. * consolidate descriptor version tests using nv_optimized() * consolidate NIC DMA start, stop and drain into ...
Oct 6, 11:14 am 2007
Jeff Garzik
[PATCH 3/5] forcedeth: process TX completions using NAPI
commit 57cbfacc00d69be2ba02b65d1021442273b76263 Author: Jeff Garzik <jeff@garzik.org> Date: Fri Oct 5 23:25:56 2007 -0400 [netdrvr] forcedeth: process TX completions using NAPI Signed-off-by: Jeff Garzik <jgarzik@redhat.com> drivers/net/forcedeth.c | 143 +++++++++++++++++++++++++++--------------------- 1 file changed, 83 insertions(+), 60 deletions(-) 57cbfacc00d69be2ba02b65d1021442273b76263 diff --git a/drivers/net/forcedeth.c b/drivers/net/forcedeth.c index ...
Oct 6, 11:14 am 2007
Jeff Garzik
[PATCH 2/5] forcedeth: interrupt handling cleanup
commit a606d2a111cdf948da5d69eb1de5526c5c2dafef Author: Jeff Garzik <jeff@garzik.org> Date: Fri Oct 5 22:56:05 2007 -0400 [netdrvr] forcedeth: interrupt handling cleanup * nv_nic_irq_optimized() and nv_nic_irq_other() were complete duplicates of nv_nic_irq(), with the exception of one function call. Consolidate all three into a single interrupt handler, deleting a lot of redundant code. * greatly simplify irq handler locking. Prior ...
Oct 6, 11:14 am 2007
Jeff Garzik
[PATCH 1/5] forcedeth: make NAPI unconditional
commit 7bfc023b952e8e12c7333efccd2e78023c546a7c Author: Jeff Garzik <jeff@garzik.org> Date: Fri Oct 5 20:50:24 2007 -0400 [netdrvr] forcedeth: make NAPI unconditional Signed-off-by: Jeff Garzik <jgarzik@redhat.com> drivers/net/Kconfig | 17 ----- drivers/net/forcedeth.c | 149 +----------------------------------------------- 2 files changed, 4 insertions(+), 162 deletions(-) 7bfc023b952e8e12c7333efccd2e78023c546a7c diff --git a/drivers/net/Kconfig b/drive...
Oct 6, 11:13 am 2007
Helge Deller
[PATCH] [RFC] Time-based RFC 4122 UUID generator
The current Linux kernel currently contains the generate_random_uuid() function, which creates - based on RFC 4122 - truly random UUIDs and provides them to userspace through /proc/sys/kernel/random/boot_id and /proc/sys/kernel/random/uuid. The attached patch additionally adds the "Time-based UUID" variant of RFC 4122 to the Linux Kernel. With this patch applied, userspace applications may easily get real unique time-based UUIDs through /proc/sys/kernel/random/uuid_time. The attached implementation ...
Oct 6, 9:53 am 2007
Valdis.Kletnieks
Re: [PATCH] [RFC] Time-based RFC 4122 UUID generator
Erm, was it *intended* that you also changed the behavior of generate_random_uuid()?
Oct 6, 11:42 pm 2007
Adrian McMenamin
[PATCH] Fix SH4 DMAC API
This patch fixes the DMA cascade by masking the correct bits. Tested and working with Dreamcast PVR2 DMA. With this patch applied the existing mainline code in arch/sh/drivers/dma/dma-sh.c works, whereas before I was patching that to get round this problem. Signed-off by: Adrian McMenamin <adrian@mcmen.demon.co.uk> diff --git a/include/asm-sh/cpu-sh4/dma.h b/include/asm-sh/cpu-sh4/dma.h index 36e26a9..aaf71b0 100644 --- a/include/asm-sh/cpu-sh4/dma.h +++ b/include/asm-sh/cpu-sh4/dma.h @...
Oct 6, 9:52 am 2007
meghanlavoie Oct 6, 7:39 am 2007
meghanlavoie Oct 6, 7:39 am 2007
previous daytodaynext day
October 5, 2007October 6, 2007October 7, 2007