]>
git.neil.brown.name Git - history.git/log
David S. Miller [Tue, 7 Oct 2003 01:25:15 +0000 (18:25 -0700)]
[NET]: Size hh_cache->hh_data[] properly.
Petr Vandrovec [Tue, 7 Oct 2003 00:56:33 +0000 (17:56 -0700)]
[IPV4]: Fix deadlock on ip_mc_list->lock
Luiz Capitulino [Tue, 7 Oct 2003 00:54:23 +0000 (17:54 -0700)]
[IPV4]: Fix route.c build warning when procfs is disabled.
Herbert Xu [Tue, 7 Oct 2003 00:51:41 +0000 (17:51 -0700)]
[NETLINK]: netlink.h needs types.h
Vinay K. Nallamothu [Tue, 7 Oct 2003 00:50:47 +0000 (17:50 -0700)]
[X25]: Use mod_timer(), add missing sock locking to x25_accept().
Randy Dunlap [Tue, 7 Oct 2003 00:49:25 +0000 (17:49 -0700)]
[ATM]: schedule_timeout() sets curr_state, from Alexey Dobriyan <adobriyan@mail.ru>.
Randy Dunlap [Tue, 7 Oct 2003 00:48:49 +0000 (17:48 -0700)]
[COSA]: schedule_timeout() sets curr_state, from Alexey Dobriyan <adobriyan@mail.ru>.
Randy Dunlap [Tue, 7 Oct 2003 00:48:10 +0000 (17:48 -0700)]
[NET]: schedule_timeout() sets curr_state, from Alexey Dobriyan <adobriyan@mail.ru>.
Julian Anastasov [Tue, 7 Oct 2003 00:46:40 +0000 (17:46 -0700)]
[IPVS]: remove some unused fields from the protocols
Jan Oravec [Tue, 7 Oct 2003 00:44:21 +0000 (17:44 -0700)]
[IPV6]: Deactivate timers properly in ipv6_mc_destroy_dev().
David S. Miller [Mon, 6 Oct 2003 23:27:28 +0000 (16:27 -0700)]
[NET]: Delete support for old-style protocols, no longer necessary.
David S. Miller [Mon, 6 Oct 2003 22:00:16 +0000 (15:00 -0700)]
[NETLINK]: Set socket error on netlink_ack() allocation failure.
David S. Miller [Mon, 6 Oct 2003 21:00:23 +0000 (14:00 -0700)]
[NET]: Add missing skb_share_check() calls to econet/bpqether/lapbether/ipconfig.
David S. Miller [Mon, 6 Oct 2003 20:40:52 +0000 (13:40 -0700)]
[X25]: Fix to be PKT_CAN_SHARE_SKB.
David S. Miller [Mon, 6 Oct 2003 20:16:24 +0000 (13:16 -0700)]
[IPV4]: Fix ipconfig to be PKT_CAN_SHARE_SKB.
David S. Miller [Mon, 6 Oct 2003 19:58:15 +0000 (12:58 -0700)]
[LAPB]: Fix packet handlers to be PKT_CAN_SHARE_SKB.
David S. Miller [Mon, 6 Oct 2003 19:40:33 +0000 (12:40 -0700)]
[BPQETHER]: Fix packet handler to be PKT_CAN_SHARE_SKB.
David S. Miller [Mon, 6 Oct 2003 19:12:26 +0000 (12:12 -0700)]
[ECONET]: Fix packet handler to be PKT_CAN_SHARE_SKB.
Linus Torvalds [Mon, 6 Oct 2003 08:23:10 +0000 (01:23 -0700)]
Merge bk://bk.arm.linux.org.uk/linux-2.6-serial
into home.osdl.org:/home/torvalds/v2.5/linux
Bjorn Helgaas [Mon, 6 Oct 2003 23:58:45 +0000 (00:58 +0100)]
[Serial] Fix warnings in 8250_acpi
Patch from Bjorn Helgaas.
Lastest changes in 8250_acpi.c produce warnings about type mismatch
in printk.
Andi Kleen [Mon, 6 Oct 2003 08:15:45 +0000 (01:15 -0700)]
[PATCH] cpufreq for x86-64
Reuses the i386 cpufreq code and add an notifier to the x86-64
timer code to track frequency changes.
All previous criticism of earlier patches should be addressed:
- it doesn't touch i386 now
- Doesn't include the ACPI P states driver anymore following brodo's request.
Also fix a typo in the last version.
Andi Kleen [Mon, 6 Oct 2003 08:15:36 +0000 (01:15 -0700)]
[PATCH] UID16 fixes
This fixes CONFIG_UID16 problems on x86-64 as discussed earlier.
CONFIG_UID16 now only selects the inclusion of kernel/uid16.c, all
conversions are triggered dynamically based on type sizes. This allows
x86-64 to both include uid16.c for emulation purposes, but not truncate
uids to 16bit in sys_newstat.
- Replace the old macros from linux/highuid.h with new SET_UID/SET_GID
macros that do type checking. Based on Linus' proposal.
- Fix everybody to use them.
- Clean up some cruft in the x86-64 32bit emulation allowed by this
(other 32bit emulations could be cleaned too, but I'm too lazy for
that right now)
- Add one missing EOVERFLOW check in x86-64 32bit sys_newstat while
I was at it.
John Levon [Mon, 6 Oct 2003 07:52:43 +0000 (00:52 -0700)]
[PATCH] fix warning with CONFIG_PROFILING=y
Needs a forward declaration of struct pt_regs
Hirofumi Ogawa [Mon, 6 Oct 2003 04:02:22 +0000 (21:02 -0700)]
[PATCH] lib/parser: Not recognize nul string as "%s" (6/6)
Current match_token recognize "foo=" as "foo=%s". So this change the
nul string does not recognize as "%s".
Hirofumi Ogawa [Mon, 6 Oct 2003 04:02:14 +0000 (21:02 -0700)]
[PATCH] lib/parser: Use "%u" instead "%d" (5/6)
If original code uses the following,
opts->value = simple_strtoul(value, &value, 0);
if (*value)
return error;
It doesn't recognize negative value. So option format should use "%u".
Hirofumi Ogawa [Mon, 6 Oct 2003 04:02:04 +0000 (21:02 -0700)]
[PATCH] Fix cleanup option of fat (4/6)
This is just misc cleanup of fat option.
Hirofumi Ogawa [Mon, 6 Oct 2003 04:01:55 +0000 (21:01 -0700)]
[PATCH] Fix unrecognized option of fat (3/6)
vfat doesn't recognize the msdos option. Also msdos doesn't recognize
vfat option.
And this separates fat/vfat/msdos option structures. I think this
looks more good as document.
Hirofumi Ogawa [Mon, 6 Oct 2003 04:01:47 +0000 (21:01 -0700)]
[PATCH] use ->d_lock instead of dcache_lock in vfat_revalidate (2/6)
This uses more fine granularity ->d_lock than ->dcache_lock for
->d_parent with d_move() race.
Hirofumi Ogawa [Mon, 6 Oct 2003 04:01:37 +0000 (21:01 -0700)]
[PATCH] VFAT: ->i_[cam]time cleanups (1/6)
From René Scharfe <l.s.r@web.de>
there's one call to strncpy() in vfat that really should be a memcpy().
The source, msdos_name, is a space-filled char array, not a
NUL-terminated string.
The rest of the patch eliminates duplicate occurencies of the
CURRENT_TIME macro inside functions. This shrinks vfat.o by a few
bytes.
Russell King [Mon, 6 Oct 2003 01:18:43 +0000 (18:18 -0700)]
[PATCH] Fix sysrq-t free stack output
It seems that we're attempting to work out the free stack size using two
unrelated pointers for the lowest address of the stack. Fix this to use
the correct pointer.
Linus Torvalds [Mon, 6 Oct 2003 01:07:23 +0000 (18:07 -0700)]
Merge bk://ppc.bkbits.net/for-linus-ppc
into home.osdl.org:/home/torvalds/v2.5/linux
Paul Mackerras [Tue, 7 Oct 2003 08:05:16 +0000 (18:05 +1000)]
PPC32: Update defconfigs
Paul Mackerras [Tue, 7 Oct 2003 06:07:45 +0000 (16:07 +1000)]
PPC32: Make 4 the default for CONFIG_NR_CPUS on PPC32.
Paul Mackerras [Tue, 7 Oct 2003 04:41:06 +0000 (14:41 +1000)]
PPC32: Add hook for Mac-on-Linux to use exception vector 0x2f00.
Paul Mackerras [Tue, 7 Oct 2003 04:39:15 +0000 (14:39 +1000)]
PPC32: Reformat bits of include/asm-ppc/uaccess.h.
Paul Mackerras [Mon, 6 Oct 2003 21:08:00 +0000 (07:08 +1000)]
Merge samba.org:/home/paulus/kernel/linux-2.5
into samba.org:/home/paulus/kernel/for-linus-ppc
Jens Axboe [Mon, 6 Oct 2003 01:06:13 +0000 (18:06 -0700)]
[PATCH] check copy_from_user return value in sony535
From: Felipe W Damasio <felipewd@terra.com.br>
Found by smatch.
Andi Kleen [Mon, 6 Oct 2003 01:00:20 +0000 (18:00 -0700)]
[PATCH] Remove outdated URLs from x86-64 Kconfig
Remove outdated URLs from the x86-64 Kconfig.
Originally from the trivial patch monkey / Petri Koistinen <petri.koistinen@iki.fi>
Andi Kleen [Mon, 6 Oct 2003 01:00:12 +0000 (18:00 -0700)]
[PATCH] Fix linux32 personality on x86-64
Make linux32 ... on x86-64 to do proper uname emulation again.
Also changes i386 to i686 because that's more near the truth.
Martin Schwidefsky [Mon, 6 Oct 2003 00:48:14 +0000 (17:48 -0700)]
[PATCH] s390 (7/7): zfcp host adapter.
The zfcp scsi host adapater.
Martin Schwidefsky [Mon, 6 Oct 2003 00:47:39 +0000 (17:47 -0700)]
[PATCH] s390 (6/7): qeth driver.
- Remove read, write and data device pointers from card structure. Use
ccw group array to get the device pointers.
Martin Schwidefsky [Mon, 6 Oct 2003 00:47:13 +0000 (17:47 -0700)]
[PATCH] s390 (5/7): iucv driver.
- Add dummy release function to iucv bus.
Martin Schwidefsky [Mon, 6 Oct 2003 00:46:51 +0000 (17:46 -0700)]
[PATCH] s390 (4/7): ctc driver.
Kernel Janitors: remove unnecessary calls to verify_area.
Martin Schwidefsky [Mon, 6 Oct 2003 00:46:26 +0000 (17:46 -0700)]
[PATCH] s390 (3/7): dasd driver.
- Remove dynamic allocation of major numbers. Just use static major 94.
- Use bus_id instead of device number where possible.
- Don't check open_count in dasd_generic_set_offline.
Martin Schwidefsky [Mon, 6 Oct 2003 00:46:11 +0000 (17:46 -0700)]
[PATCH] s390 (2/7): common i/o layer.
- Remove atomic_read hack to test for presence of ccw device directory.
- Add dummy release function to channel path object and cu3088 group devices.
- Don't rely on the chaining bit of the channel report word.
- Don't call schedule while holding a lock in read_dev_chars/read_conf_data.
Martin Schwidefsky [Mon, 6 Oct 2003 00:45:58 +0000 (17:45 -0700)]
[PATCH] s390 (1/7): base patch.
- Makefile fix: default make target builds the kernel image.
- Add export statement for cpcmd.
- Add tgkill system call.
- Reserve system call number for vserver.
Achim Leubner [Mon, 6 Oct 2003 00:44:15 +0000 (17:44 -0700)]
[PATCH] gdth driver update
- Maintainers email address and copyright messages updated
- Scanning for EISA and ISA controllers disabled due to a resource conflict
with the Adaptec aic driver
- Switch "probe_eisa_isa" added to give the possibility to enable the
EISA/ISA scan if required
- Driver version increased to 2.08
Arnaldo Carvalho de Melo [Sun, 5 Oct 2003 15:44:33 +0000 (08:44 -0700)]
[PATCH] Fix another misfiled module symbol export
idle_cpu had the same botched move from kernel/ksyms.c to kernel/sched.c
that __wake_up_sync() had.
Randy Dunlap [Sun, 5 Oct 2003 15:30:02 +0000 (08:30 -0700)]
[PATCH] janitor: schedule_timeout sets curr->state (arm)
From: Alexey Dobriyan <adobriyan@mail.ru>
Don't set process state to TASK_RUNNING after a schedule_timeout(), since
there's no way we will return from the scheduler if we're not running.
Linus Torvalds [Sun, 5 Oct 2003 15:14:10 +0000 (08:14 -0700)]
Fix __wake_up_sync() module export. It hadn't been correcly moved
from kernel/ksyms.c to kernel/sched.c.
Noted by Richard Henderson <rth@twiddle.net>
Linus Torvalds [Sun, 5 Oct 2003 12:01:59 +0000 (05:01 -0700)]
Merge bk://bk.arm.linux.org.uk/linux-2.6-rmk
into home.osdl.org:/home/torvalds/v2.5/linux
Russell King [Mon, 6 Oct 2003 00:50:35 +0000 (01:50 +0100)]
Merge flint.arm.linux.org.uk:/usr/src/bk/linux-2.6
into flint.arm.linux.org.uk:/usr/src/bk/linux-2.6-rmk
Russell King [Sun, 5 Oct 2003 12:22:49 +0000 (13:22 +0100)]
[ARM] Ensure BK file modes allow others to read.
Russell King [Sun, 5 Oct 2003 11:03:26 +0000 (12:03 +0100)]
[ARM] Fix badly placed writeback/invalidation fixes.
Linus Torvalds [Sun, 5 Oct 2003 08:04:40 +0000 (01:04 -0700)]
Fix PCMCIA cut-and-paste cs.c bug introduced by the recent
update.
The socket is "s", not "skt".
Linus Torvalds [Sun, 5 Oct 2003 07:11:05 +0000 (00:11 -0700)]
Merge bk://bk.arm.linux.org.uk/linux-2.6-pcmcia
into home.osdl.org:/home/torvalds/v2.5/linux
Russell King [Sun, 5 Oct 2003 12:36:42 +0000 (13:36 +0100)]
Merge flint.arm.linux.org.uk:/usr/src/bk/linux-2.6
into flint.arm.linux.org.uk:/usr/src/bk/linux-2.6-pcmcia
Linus Torvalds [Sun, 5 Oct 2003 07:07:23 +0000 (00:07 -0700)]
Merge bk://bk.arm.linux.org.uk/linux-2.6-serial
into home.osdl.org:/home/torvalds/v2.5/linux
Bjorn Helgaas [Sun, 5 Oct 2003 22:58:04 +0000 (23:58 +0100)]
[SERIAL] removing legacy UART cruft
I'm trying to remove all the legacy UART cruft from ia64. In theory
we should be able to discover all UARTs on ia64 via ACPI and PCI
enumeration, so we shouldn't need SERIAL_PORT_DFNS.
But SERIAL_PORT_DFNS currently does two things:
1) it tells you about legacy devices you can't discover
via a standard enumeration method, and
2) it sizes old_serial_port[], which determines UART_NR,
which is the maximum number of ports the driver will
support
So here's a proposal to make SERIAL_PORT_DFNS optional and
provide another mechanism for configuring the number of ports
to support.
Bjorn Helgaas [Sun, 5 Oct 2003 22:54:13 +0000 (23:54 +0100)]
[SERIAL] remove unused RS_TABLE definitions
Patch from Bjorn Helgaas.
RS_TABLE is defined by lots of architectures, but only referenced
in arch/{mips,ppc}.
This patch removes most of the unused definitions from 2.6.
Russell King [Sun, 5 Oct 2003 13:04:14 +0000 (14:04 +0100)]
Merge flint.arm.linux.org.uk:/usr/src/bk/linux-2.6
into flint.arm.linux.org.uk:/usr/src/bk/linux-2.6-serial
Linus Torvalds [Sun, 5 Oct 2003 07:04:03 +0000 (00:04 -0700)]
Merge bk://kernel.bkbits.net/davem/sparc-2.5
into home.osdl.org:/home/torvalds/v2.5/linux
Linus Torvalds [Sun, 5 Oct 2003 06:57:58 +0000 (23:57 -0700)]
Use "select" instead of "depends on" to select GAMEPORT support
automatically for the sound drivers that require it.
This is a low less confusing than telling people that they
need to enable gameport support in order to listen to sound.
David S. Miller [Sun, 5 Oct 2003 05:39:42 +0000 (22:39 -0700)]
[SPARC64]: Kill stray task->tty reference in Solaris module.
Michael Hunold [Sun, 5 Oct 2003 04:42:37 +0000 (21:42 -0700)]
[PATCH] Update V4L2 "Hexium" driver
This updates my two Video4Linux-2 drivers for the "Hexium Gemini" and
"Hexium Orion" cards.
It adds the long missing input handling for the "Gemini" card and
removes the annoying compile time warning about unused structures.
- remove various hexium header files, put all driver relevant
informations into the drivers. these informations are not needed
anywhere else.
- fix driver names in information printk()s
- fix device initialization for Hexium Gemini cards
- add input switching for Hexium Gemini cards
- fix all remaining "fixme"s
Andi Kleen [Sun, 5 Oct 2003 04:42:27 +0000 (21:42 -0700)]
[PATCH] Fix x86-64 compilation
Make x86-64 compile again.
Andi Kleen [Sun, 5 Oct 2003 04:42:19 +0000 (21:42 -0700)]
[PATCH] Fix -Wdeclaration-after-statement warnings for x86-64
Fix warnings on compilers that support -Wdeclaration-after-statement
in the x86-64 specific code. x86-64 was happily using ISO-C99 code
before because it only uses gcc 3+ which is ISO-C99 compliant, but
unfortunately this warning was added in the top level Makefile.
From Bryan O'Sullivan.
Andi Kleen [Sun, 5 Oct 2003 04:42:12 +0000 (21:42 -0700)]
[PATCH] Reserve vserver syscall for x86-64
Reserve vserver syscall on x86-64 too.
Rusty Russell [Sun, 5 Oct 2003 04:33:48 +0000 (21:33 -0700)]
[PATCH] Documentation_Changes visual cleanup
From: Marcel Sebek <sebek64@post.cz>
Rusty Russell [Sun, 5 Oct 2003 04:33:39 +0000 (21:33 -0700)]
[PATCH] Christoph Hellwig no longer works at Caldera
From: Adrian Bunk <bunk@fs.tum.de>
(Acked by Christoph Hellwig <hch@infradead.org>)
Rusty Russell [Sun, 5 Oct 2003 04:33:31 +0000 (21:33 -0700)]
[PATCH] unused variable in drivers_char_isicom.c
From: krishnakumar@naturesoft.net
Rusty Russell [Sun, 5 Oct 2003 04:33:22 +0000 (21:33 -0700)]
[PATCH] Small cleanups for input
From: Pavel Machek <pavel@suse.cz>
Rusty Russell [Sun, 5 Oct 2003 04:33:15 +0000 (21:33 -0700)]
[PATCH] 2 spelling patches in helps
From: Maciej Soltysiak <solt@dns.toxicfilms.tv>
Rusty Russell [Sun, 5 Oct 2003 04:33:07 +0000 (21:33 -0700)]
[PATCH] HISAX_SEDLBAUER_CS needs HISAX_SEDLBAUER
From: Adrian Bunk <bunk@fs.tum.de>
Rusty Russell [Sun, 5 Oct 2003 04:32:59 +0000 (21:32 -0700)]
[PATCH] Change list_emtpy() to take a const pointer
From: "Perez-Gonzalez, Inaky" <inaky.perez-gonzalez@intel.com>
Rusty Russell [Sun, 5 Oct 2003 04:32:49 +0000 (21:32 -0700)]
[PATCH] ISDN PCBIT: fix nonmodular compile
From: Adrian Bunk <bunk@fs.tum.de>
Rusty Russell [Sun, 5 Oct 2003 04:32:41 +0000 (21:32 -0700)]
[PATCH] drivers_cpufreq_Kconfig URL update
From: Petri Koistinen <petri.koistinen@iki.fi>
Rusty Russell [Sun, 5 Oct 2003 04:32:33 +0000 (21:32 -0700)]
[PATCH] unused variable in drivers_char_esp.c
From: krishnakumar@naturesoft.net
Rusty Russell [Sun, 5 Oct 2003 04:32:24 +0000 (21:32 -0700)]
[PATCH] Get rid of magic numbers in fs
From: Scharfe <l.s.r@web.de>
Rusty Russell [Sun, 5 Oct 2003 04:32:15 +0000 (21:32 -0700)]
[PATCH] update Kanoj Sarcar email address in docs
From: Ed L Cashin <ecashin@uga.edu>
(Acked by Kanoj Sarcar <kanojsarcar@yahoo.com>)
Rusty Russell [Sun, 5 Oct 2003 04:32:07 +0000 (21:32 -0700)]
[PATCH] Bugzilla bug # 993 - Documenation_Changes still reads 2.5
From: Josef Jeff Sipek <jeffpc@optonline.net>
Rusty Russell [Sun, 5 Oct 2003 04:31:58 +0000 (21:31 -0700)]
[PATCH] [PATCH ac97_plugin_ad1980.c: warning fix
From: Vinay K Nallamothu <vinay-rc@naturesoft.net>
Rusty Russell [Sun, 5 Oct 2003 04:31:50 +0000 (21:31 -0700)]
[PATCH] More modules.txt removals
From: Nicolas Kaiser <nikai@nikai.net>
Rusty Russell [Sun, 5 Oct 2003 04:31:42 +0000 (21:31 -0700)]
[PATCH] irq_affinity_write_proc no longer writes garbage into irq proc entries
From: <adobriyan@mail.ru>
Rusty Russell [Sun, 5 Oct 2003 04:31:34 +0000 (21:31 -0700)]
[PATCH] Fix comment in parse_hex_value
From: <adobriyan@mail.ru>
(Acked by William Lee Irwin III <wli@holomorphy.com>)
Rusty Russell [Sun, 5 Oct 2003 04:31:25 +0000 (21:31 -0700)]
[PATCH] Update for Documentation_binfmt_misc-document
From: "ismail (cartman) donmez" <kde@myrealbox.com>
Rusty Russell [Sun, 5 Oct 2003 04:31:16 +0000 (21:31 -0700)]
[PATCH] drivers_ide_Kconfig URL updates
From: Petri Koistinen <petri.koistinen@iki.fi>
Rusty Russell [Sun, 5 Oct 2003 04:31:09 +0000 (21:31 -0700)]
[PATCH] sysv_hash() is cleanups
From: Scharfe <l.s.r@web.de>
The sysvfs code was confusing. Rewrite it to be readable, and
use the existing VFS helper for recalculating the hash instead
of doing it all by hand.
Rusty Russell [Sun, 5 Oct 2003 04:31:00 +0000 (21:31 -0700)]
[PATCH] drivers_media_Kconfig URL update
From: Petri Koistinen <petri.koistinen@iki.fi>
Rusty Russell [Sun, 5 Oct 2003 04:30:51 +0000 (21:30 -0700)]
[PATCH] hlist constification
From: Mitchell Blank Jr <mitch@sfgoth.com>
Make some more of the hlist functions accept constant arguments.
Rusty Russell [Sun, 5 Oct 2003 04:30:43 +0000 (21:30 -0700)]
[PATCH] kconfig language doc r.e. ---help---
From: Stewart Smith <stewart@linux.org.au>
Document "---help---" tag in Kconfig
(Acked by Roman Zippel <zippel@linux-m68k.org>)
Rusty Russell [Sun, 5 Oct 2003 04:30:35 +0000 (21:30 -0700)]
[PATCH] Documentation_vm_hugetlbfs.txt cleanup
From: Maciej Soltysiak <solt@dns.toxicfilms.tv>
This changes the hugetlbfs examples actually being possible to
compile. errno is being used while it's not included.
(Acked by William Lee Irwin III <wli@holomorphy.com>)
Rusty Russell [Sun, 5 Oct 2003 04:30:26 +0000 (21:30 -0700)]
[PATCH] correct number of CPUs in Kconfig help file
From: Marcel Sebek <sebek64@post.cz>
(Acked by William Lee Irwin III <wli@holomorphy.com>)
Rusty Russell [Sun, 5 Oct 2003 04:30:18 +0000 (21:30 -0700)]
[PATCH] Fix Linux 2.5 -> Linux 2.6
From: Holger Schurig <h.schurig@mn-logistik.de>
Rusty Russell [Sun, 5 Oct 2003 04:30:10 +0000 (21:30 -0700)]
[PATCH] Add hint on sysrq on some keyboards
From: Pavel Machek <pavel@suse.cz>
Rusty Russell [Sun, 5 Oct 2003 04:30:02 +0000 (21:30 -0700)]
[PATCH] Bugzilla bug # 984 - 2.6 readme is still for 2.5
From: Josef Jeff Sipek <jeffpc@optonline.net>
Rusty Russell [Sun, 5 Oct 2003 04:29:54 +0000 (21:29 -0700)]
[PATCH] Rearrange error handling in fs_pipe.c a bit
From: Scharfe <l.s.r@web.de>
clean up the error handling in pipefs a little bit,
shrinking pipe.o by whopping 4 bytes! :)
Rusty Russell [Sun, 5 Oct 2003 04:29:46 +0000 (21:29 -0700)]
[PATCH] Obvious sched doc fix
From: Mitchell Blank Jr <mitch@sfgoth.com>
Obvious typo fix for the scheduler docs
(Acked by Ingo)
Rusty Russell [Sun, 5 Oct 2003 04:29:38 +0000 (21:29 -0700)]
[PATCH] Remove racy check_mem_region() call from pcbit_drv.c
From: Bob Miller <rem@osdl.org>
Removed the check_mem_region() call and replaced with request_mem_region().
Rusty Russell [Sun, 5 Oct 2003 04:29:29 +0000 (21:29 -0700)]
[PATCH] Remove extra #includes
From: Tom Rini <trini@kernel.crashing.org>
This removes two extra #includes of <linux/spinlock.h>.
Nothing in either of these files require <linux/spinlock.h>.