- 28 Jun, 2003 13 commits
-
-
Andrew Morton authored
The ext3 version number hasn't been updated since ext3 was merged. We track ext3 via the kernel release ID. Remove the ext3 version number.
-
Andrew Morton authored
From: Philippe Elie <phil.el@wanadoo.fr> kmem_cache_destroy() can fail with the following error: slab error in kmem_cache_destroy(): cache `xxx': Can't free all objects but the cache user really free'd all objects This is because drain_array_locked() only frees 80% of thge objects. Fix it by adding a parameter to drain_array_locked() telling it to drain 100% of the objects.
-
Andrew Morton authored
From: Bob Miller <rem@osdl.org> Removed the check_mem_region() call and replaced with request_mem_region(). Because of the way the driver is structured the first request_mem_region() call gets the default memory area. After probing the complete memory area that is needed to communicate with the device is known, so the first memory area is released and the complete area is requested.
-
Andrew Morton authored
From: Bob Miller <rem@osdl.org> - Replace the call to MOD_INC_USE_COUNT with a __module_get() when forcing the module to not be unloadable. - Remove the check_region() calls and restructured things to only use request_region().
-
Andrew Morton authored
From: Kouichi ONO <co2b@ceres.dti.ne.jp> in 2.5.73, I can't read/write mount DVD-RAM via ide-scsi (only r/o mount). Without ide-scsi, I can mount DVD-RAM read/write mode and works fine. (acked by Jens).
-
Andrew Morton authored
From: Andi Kleen <ak@suse.de> Add proper EFAULT reporting to sys_syslog. This fixes some silly LTP test in the 32bit emulation of an AMD64 kernel.
-
Andrew Morton authored
From: Oleg Drokin <green@namesys.com> Fix BUG_ON(!buffer_mapped(bh)) in submit_bh() Reiserfs is submitting unmapped buffers into submit_bh(), which trips a BUG.
-
Andrew Morton authored
Make sure that the address_space is capable of performing the readahead before going in and allocating the pages.
-
Dan Aloni authored
This fixes the kernel crash in the case when we do an SIOCSIFNAME ioctl on /proc/net/dev to rename a network interface, and we supply a string such as "foo%sbar".
-
-
-
Richard Henderson authored
-
Richard Henderson authored
-
- 27 Jun, 2003 27 commits
-
-
Stephen Hemminger authored
Fix PPP over async regression that the PPPoE changes caused. Basically, PPP puts a zero length skbuff in the receive queue as an error token, and the last change caused that to get flushed as bad data. Thanks to Diego Calleja Garcia, Matthew Harrell for validating this.
-
David S. Miller authored
-
Richard Henderson authored
-
Bartlomiej Zolnierkiewicz authored
-
Bartlomiej Zolnierkiewicz authored
-
Bartlomiej Zolnierkiewicz authored
-
Bartlomiej Zolnierkiewicz authored
hwif->udma_four is always preset to 0
-
Bartlomiej Zolnierkiewicz authored
-
Bartlomiej Zolnierkiewicz authored
-
Bartlomiej Zolnierkiewicz authored
Make the IDE driver return the proper status return for unhandled interrupts.
-
Bartlomiej Zolnierkiewicz authored
- do not enable TCQ in ide_init_drive(), its too early - enable TCQ in __ide_dma_on() only if CONFIG_BLK_DEV_IDE_TCQ_DEFAULT=y - try to enable TCQ only on disk drives - correct check for two drives on one channel
-
Richard Henderson authored
into kanga.twiddle.net:/home/rth/work/linux/axp-2.5
-
Richard Henderson authored
-
Matthew Wilcox authored
This patch moves all the duplicated cdrom Kconfig bits from arch/*/Kconfig to drivers/cdrom/Kconfig
-
Martin Schwidefsky authored
Add return statement to tty init function of 3215 driver.
-
Martin Schwidefsky authored
Fix typos.
-
Martin Schwidefsky authored
Pass correct argument to SET_MODULE_OWNER.
-
Martin Schwidefsky authored
- Simplify long busy condition handling, add quiesce/resume ioctl. - Add sense data area to reserve/release/steal_lock ccw-chains.
-
Martin Schwidefsky authored
- Make ccwgroup online attribute consistent with ccw online attribute. - Add link incident record handling to channel subsystem code. - Do path grouping only if the device driver explicitly requests it. - Fix multicast or broadcast flood ping hand on HiperSockets.
-
Martin Schwidefsky authored
- Add missing includes to compat_ioctl.c. - Fix 32 bit emulation of sys_settimeofday.
-
Martin Schwidefsky authored
- Remove unused variables from smp.c. - Reserve system call number 110 for sys_lookup_dcache. - Fix show_trace. - Remove superfluous asm include file. - Add statfs64 structure.
-
bk://kernel.bkbits.net/davem/net-2.5Linus Torvalds authored
into home.osdl.org:/home/torvalds/v2.5/linux
-
Rusty Russell authored
In general, it is more better to use get_cpu_var() and __get_cpu_var() to access per-cpu variables on this CPU than to use smp_processor_id() and per_cpu(). In the current default implemention they are equivalent, but on IA64 the former is already faster, and other archs will follow.
-
Greg Ungerer authored
Make the ROMfs copy in the startup code for NETtel/5272 board conditional on actually using a ROMfs setup.
-
Greg Ungerer authored
Make the ROMfs copy in the startup code for Motorola/M5206eLITE board conditional on actually using a ROMfs setup.
-
Greg Ungerer authored
Fix the m68knommu version of show_stack(). It expects the task as an argument.
-
David Gibson authored
Architectures using the generic 32/64-bit ioctl() compatibility shims will get a link error if CONFIG_VT is not defined, since the compatbility ioctl() code calls functions in drivers/char/vt.c which is only included in the build if CONFIG_VT is set. This fixes the compile with a couple of #ifdefs:
-