- 25 Mar, 2004 12 commits
-
-
Petko Manolov authored
adds two more vid/did and better packet error statistics. Link detection also has been added.
-
David Brownell authored
Here's where all those preceding autoconfig patches start to fit together: one gadget driver gets rid of almost all the controller-specific #ifdeffery. Two of the other gadget drivers can do the same thing, and just as easily: file storage, and serial. (I'll hope their maintainers do those changes though.) The "ether.c" gadget driver is a lot more complicated to do this way since it has to cope with some differences by switching to alternate protocols (CDC Ethernet vs a subset) and soon be able to handle RNDIS. So that'll be a while yet. Gadget Zero learns to autoconfigure. - Gets rid of remaining controller-specific #ifdeffery. Now hardware choices can be made at run time too (not just compile time). - Simplifies its use of the "DEBUG" CPP symbol. - Force device to report itself consistently as self-powered.
-
Michael Still authored
Correct kernel-doc comment with incorrect parameters documented
-
Gude Analog- und Digitalsysteme GmbH authored
we (the german company Gude Analog und Digitalsysteme GmbH, http://www.gude.info) have manufactored a USB<->RS232 adapter with galvanic isolated RS232 Interface. Data is transmitted by optical signals only. The Product's name is "USB-RS232 OptoBridge". We used the FTDI 233BM Chip with PID 0xE889 (VID 0x0403). The Product will be released this Cebit 2004. Could you please extend the ftdi_sio code with this PID. You find a .diff file attached which I have tested with kernel 2.6.4 At http://ftdi-usb-sio.sourceforge.net/ I saw that you provide a patch for 2.4.x kernels. Will our PID also find it's way in this back-ported driver patch? In the future (in the next 10 month), our company will have some more Products using the FTDI Chip. The PID's FTDI already allocated for us are: E888 to E88F and E808 to E80F Thank you very much, Martin Bachem
-
Jeff Garzik authored
x86-64 needs this (obvious) patch, due to the rename.
-
Andrew Morton authored
From: David Mosberger <davidm@napali.hpl.hp.com> From: Bjorn Helgaas <bjorn.helgaas@hp.com> We can't build floppy.o on ia64, so why bother asking?
-
Andrew Morton authored
From: Jens Axboe <axboe@suse.de> Currently SCSI cdroms show up in /proc/partitions in 2.6, they didn't in 2.4. And ATAPI cdroms don't show up either. Mark both as genhd removable for now, when they are partionable this can be updated.
-
Andrew Morton authored
From: Jens Axboe <axboe@suse.de> If the drive doesn't support GPCMD_READ_DISC_INFO at all, permit writeable opens.
-
Andrew Morton authored
Spotted by Jorn Engel <joern@wohnheim.fh-wedel.de>: both the generic and fs-specific parts of the inode have an i_flags. find_group_orlov() is using the wrong one.
-
Andrew Morton authored
strncpy() may not null-terminate the destination.
-
Andrew Morton authored
From: Olof Johansson <olof@austin.ibm.com> A smt_snooze_delay of 0 is supposed to mean "disabled", but current idle loop logic doesn't take that into account and snoozes immediately instead. Below patch fixes the logic in the idle loop, as well as cleans up the test a bit. An idling processor might no longer see a snooze change immediately, but that's not needed anyway.
-
Andrew Morton authored
From: Anton Blanchard <anton@samba.org> From: Marcus Meissner <meissner@suse.de> With 2.6.4 we now have the glorious hidden d_type passing in getdents. glibc CVS expects this to be passed if we have a kernel version after 2.6.4, so we have to also handle it in the 32bit syscall converter.
-
- 24 Mar, 2004 12 commits
-
-
Anton Blanchard authored
From Dave Miller: We weren't handling a NULL 'type' argument to mount() properly, f.e. this happens legitimately when changing the options of an existing mount.
-
David S. Miller authored
into kernel.bkbits.net:/home/davem/net-2.6
-
Dave Kleikamp authored
I stupidly used the global jfs_log_sem to protect log->sb_list when implementing the shared journal stuff. Since we already hold LOG_LOCK, it makes more sense to use that to protect log->sb_list. This caused horrible serialization when running on lots of jfs volumes.
-
Dave Kleikamp authored
Remove the hold_metapage call from txLog to prevent a hang. While investigating this one, I audited all functions that held metapage locks and found several error paths that did not release them correctly. These are fixed as well.
-
John Williams Floroiu authored
-
Krishna Kumar authored
-
Dmitry Torokhov authored
-
Dmitry Torokhov authored
The patch below fixes issue with 'tc class show dev <dev>' not showing any classes when TBF qdisc is present in the chain. PLease consider for inclusion.
-
Wensong Zhang authored
Brett E. <brettspamacct@fastclick.com> noticed the missing service lock for editing dest. Julian Anastasov <ja@ssi.bg> provided the patch.
-
David S. Miller authored
-
http://linux-lksctp.bkbits.net/lksctp-2.5.workDavid S. Miller authored
into nuts.davemloft.net:/disk1/BK/net-2.6
-
David S. Miller authored
into nuts.davemloft.net:/disk1/BK/net-2.6
-
- 23 Mar, 2004 10 commits
-
-
Paul Mackerras authored
This fixes a bug in the swapcontext system call on ppc32. On ppc32, the system call entry only saves the volatile registers, except in the case of a few system calls (e.g. fork) which need all the registers saved. Swapcontext needs all the registers but we weren't saving them all. So fixes that.
-
Paul Mackerras authored
At the moment, ppc32 kernels will oops if a threaded program tries to dump core. We call dump_fpu with a NULL regs pointer, which it tries to dereference. This fixes the issue by implementing the hooks used in doing threaded core dumps properly.
-
David S. Miller authored
into kernel.bkbits.net:/home/davem/sparc-2.6
-
David S. Miller authored
-
Benjamin Herrenschmidt authored
This fixes the display of the boot messages on the BMAC driver (pmac only). It used to be messed up in 2.6
-
Benjamin Herrenschmidt authored
In the long story of "BenH can't get a simple fix right the first time", please add this one to pmac_zilog, and now people should enjoy really working sleep again on pmac laptops ... If the serial port was closed, we could use an uninitialized "pwr_delay" and pass that to schedule_timeout().
-
Sridhar Samudrala authored
-
Sridhar Samudrala authored
-
Andrew Morton authored
We're getting namespace collisions from the new dma_error(), and it wasn't a well-chosen identifier. Rename it to dma_mapping_error().
-
James Simmons authored
This is a temporary fix, pending fuller TGA updates. From: Christian Vogel: drivers/video/tgafb.c is missing a include, complaining about color_table[] and others not being defined.
-
- 22 Mar, 2004 6 commits
-
-
Andrew Morton authored
From: Armin Schindler <armin@melware.de> just a small patch to fix a typo.
-
Andrew Morton authored
From: Petr Baudis <pasky@ucw.cz> This patch fixes a bug which I hit when migrating from 2.4. Basically, when I do setfont during the system boot, the then-spawned ttys do not retain the new font but fall back to the default one. I've tracked that down to a clearly bogus test in fbcon_set_display(), because vc->vc_font.width is not set at that time yet (no font has been loaded for the new vc). But even if it would (or this was meant to test against tmp->vc_font.width), it would mean only *HUGE* fonts would be retained. And even if there were *two* bugs there and it was supposed to be less-than there, I couldn't make a sense of the test.
-
Andrew Morton authored
From: Alan Stern <stern@rowland.harvard.edu> A change which was recently applied to fs/proc/proc_misc.c included a comment about splitting a seq_printf into two pieces to work around a bug in gcc-2.95.3. Unfortunately gcc-2.96 still chokes on the statements. The patch below makes it work better and tidies the code up a bit.
-
Andrew Morton authored
From: Paul Mundt <lethal@linux-sh.org> This is the rest of the sh update, which includes everything else sh-specific, general cleanups, bugfixes, etc. Nothing really eventful.
-
Andrew Morton authored
From: Paul Mundt <lethal@linux-sh.org> This includes sh-specific framebuffer updates, including updates to hitfb and pvr2fb, as well as adding sh to the pgprot_writecombine() users in fb_mmap().
-
Andrew Morton authored
From: Paul Mundt <lethal@linux-sh.org> This implements hugetlb support for SH-4. SH-4 supports 1k/4k/64k/1MB pages, since we're only interested in the 64k/1MB sizes, this is what we support. The sh hugetlbpage code borrows heavily off of the sparc64 port, which works fine for these cases at this point in time.
-