- 08 Jan, 2003 13 commits
-
-
Greg Kroah-Hartman authored
into kroah.com:/home/linux/linux/BK/gregkh-2.5
-
Neil Turton authored
I got a PL2303 USB serial converter a few days ago, and got your driver up and running fairly quickly. The problem is that I got an oops when I rmmod-ed the drivers. The pl2303 uses two interfaces but registers only the second (technically wrong, I guess, but should work). When pl2303.o is removed, it attempts to deregister the first interface (which has no effect), so the second interface remains registered with usbserial. The old struct serial still points at the removed pl2303 driver so things go pop when anything touches it. I think the PL2303 hack in usb_serial_probe should not change the "interface" variable, which gets stored in serial->interface, since usbcore will register whatever "ifnum" says. I think that's enough waffle. The patch is below. Keep up the good work!
-
Gerd Knorr authored
This updates the saa7134 driver. It adds support for a few more cards and includes adaptions to the video-buf.c changes sent earlier.
-
Gerd Knorr authored
This has some i2c adaptions and cleanups for the tv card tuner module.
-
Gerd Knorr authored
This updates a bunch of i2c modules in drivers/media/video. Most of it are adaptions to the recent i2c changes in the kernel. While being at it I also did some other cleanups like deleting unused+dead code, using name-based initialization for some not-yet converted structs, ... The also has a few small fixes here and there, but no major functional changes.
-
Gerd Knorr authored
This adds a driver module for the bt832 chip. It is needed by the bttv driver to support the Pixelview Digital Camera. The bt832 is connected using the GPIO pins of the bt878 chip.
-
Gerd Knorr authored
-
Gerd Knorr authored
This updates the bttv driver. Changes: * adaptions to the video-buf changes send in a previous mail. * adaptions to recent i2c changes in the kernel. * first code bits the pixelview digital camera support (not working yet). * lots of small fixes/changes for specific TV cards.
-
Gerd Knorr authored
This adds the v4l1-compat module. This is a module which can translate most (old) v4l1 ioctls into the new v4l2 API. This makes it easier for v4l2 drivers to present both old v4l and new v4l2 APIs to video4linux applications. The saa7134 driver uses this for example.
-
Gerd Knorr authored
This updates the video-buf helper module. It changes the field handling a bit and adds code do deal better with alternating field capture (= capture even and odd fields to separate video buffers).
-
Gerd Knorr authored
This adds the tda9887 i2c module to the linux kernel. This one is needed for some TV cards. It also adds the missing #define to audiochip.h which currently breaks the bttv build.
-
Henning Meier-Geinitz authored
Hi, On Wed, Jan 08, 2003 at 08:29:36AM -0800, Greg KH wrote: > On Tue, Dec 24, 2002 at 05:44:55PM +0100, Henning Meier-Geinitz wrote: > > Hi, > > > > On Tue, Dec 24, 2002 at 12:40:06AM +0100, Oliver Neukum wrote: > > > > > > > Well, the reason I didn't use one was that I didn't found one in > > > > usb.h/usb_ch9.h for 16. It's also not listed on www.usb.org. > > > > > > > > lsusb calls it "Data". However, I'm not sure if this is a hex/dec > > > > error and they really mean "Data" = dec 10, not 0x10 (=dec 16). > > > > > > > > Shall I define a local symbolic name (e.g. > > > > STRANGE_HP_SCANJET_INTERFACE_CLASS)? But I really don't know what this > > > > class is. I only know that it's used by a Hewlett-Packard ScanJet > > > > 3300c and Genius HR6 USB - Vivid III. > > > > > > Better that than a bare number. > > > > Patch attached. > > Applied to my 2.4 tree, sorry for the delay. Here is the same for 2.5.44:
-
bk://ppc.bkbits.net/for-linus-ppcLinus Torvalds authored
into home.transmeta.com:/home/torvalds/v2.5/linux
-
- 09 Jan, 2003 5 commits
-
-
Paul Mackerras authored
This adds support for 405GPR, 405LP, STBx25, NP4GS3.
-
Paul Mackerras authored
-
Paul Mackerras authored
-
Paul Mackerras authored
-
Paul Mackerras authored
Some of this comes from recent work in the 2_4_devel tree, including the conversion to using an array (core_ocp[]) to describe on-chip peripherals in a standard format. The other major change is to give the board file control early on in the boot and let it call back to generic 4xx routines rather than vice-versa.
-
- 08 Jan, 2003 22 commits
-
-
Paul Mackerras authored
into samba.org:/home/paulus/kernel/for-linus-ppc
-
bk://68.0.152.218/linux-2.5-miscPaul Mackerras authored
into samba.org:/home/paulus/kernel/for-linus-ppc
-
Paul Mackerras authored
into samba.org:/home/paulus/kernel/for-linus-ppc
-
Paul Mackerras authored
into samba.org:/home/paulus/kernel/for-linus-ppc
-
Stephen Rothwell authored
Here is the s390x part of the compat_timespec changes.
-
Stephen Rothwell authored
Andi Kleen asked for these two, so here they are. This is the generic part of creating compat functions for timespec get/put.
-
Trond Myklebust authored
Converts the RPC client auth code to use 'list_head' rather than a custom pointer scheme. Fixes a (relatively harmless) race which could cause several cred entries to be created for the same user.
-
Trond Myklebust authored
Patch by Chuck Lever to add a new field called wb_pgbase to the nfs_page struct. This separates the concept of file page offset from buffer page offset, allowing NFS to specify read and write requests into buffers at offsets that are independent of the file page offset. It is a prequisite for direct I/O in NFS.
-
Trond Myklebust authored
This fixes a bug that was found using the Stanford checker.
-
Joe Thornber authored
bio_alloc() shouldn't fail if GFP_NOIO is used, and the bvec count is sensible. So remove redundant error checking.
-
Joe Thornber authored
Export dm_table_get_mode()
-
Joe Thornber authored
Just return an error from the error targets map function, rather than erroring the buffer_head.
-
Joe Thornber authored
printk tgt->error if dm_table_add_target() fails.
-
Joe Thornber authored
Remove explicit return at the end of a couple of void functions.
-
Joe Thornber authored
Call dm_put_target_type() *after* calling the destructor.
-
Joe Thornber authored
Use a rw_semaphore in dm_target.c rather than a rwlock_t, just to keep in line with dm.c
-
Joe Thornber authored
ti->use was only getting incremented the first time a target type was retrieved (bug introduced by recent hch patch).
-
Joe Thornber authored
Initialize the clone-info's index to the original bio's index. Required to properly handle stacking DM devices. [Kevin Corry]
-
Joe Thornber authored
Don't let the ioctl interface drop a suspended device.
-
Andrew Morton authored
We don't need to wake up the synchronous waiter for every BIO completion - just for the final BIO. This reduces the context switch rate of a 180 megabyte/sec read from 3500/sec to 2200/sec when performing 1400 128k I/Os per second, so it more than halves the overhead.
-
Andrew Morton authored
Patch from Badari Pulavarty <pbadari@us.ibm.com> and myself. This patch adds AIO support for direct-IO - O_DIRECT files, O_DIRECT blockdevs and /dev/raw/rawN. Also, the controlling `struct dio' is now always kmalloced, saving ~400 bytes of stack. The best tool for testing AIO/DIO is the modified fsx-linux in ext3 CVS. See http://www.zip.com.au/~akpm/linux/ext3/ for details. For example: fsx-linux -Z -A -R -W -r 512 -w 4096 foo Running many instances of this against ext3 currently fails with incorrect file data; some bug in the new ext3 O_DIRECT support. ext2 is OK though.
-
Andrew Morton authored
In two cases (AIO-for-direct-IO and some CDROM DMA stuff which Jens did), we need to run set_page_dirty() in interrupt context. After DMA hardware has altered userspace pages for direct-IO reads. But mapping->page_lock, mapping->private_lock and inode_lock are not irq-safe. And really, we don't want to convert those locks just for this problem. So what we do is to dirty the pages *before* starting I/O. Then, in interrupt completion context, check to see that they are still dirty. If so then there is nothing to do. But if the pages were cleaned while the direct-IO is in progress we need to redirty them. The code uses schedule_work() for that. Of course, we could use schedule_work() for all BIOs and pages. The speculative dirty-before-starting-IO is just an optimisation. It's quite unlikely that any of the pages will be cleaned during the direct IO. This code is basically untestable under normal circumstances, because the relevant pages are pinned via get_user_pages(). This makes is_page_cache_freeable() evaluate false and the VM doesn't try to write them out anyway. But if the pages happen to be MAP_SHARED file pages, pdflush could clean them. The way I tested this code was to disable the call to bio_set_pages_dirty() in fs/direct-io.c.
-