]> git.neil.brown.name Git - history.git/log
history.git
21 years ago[PATCH] uml: kbuild - add even more cleaning
Paolo \'Blaisorblade\' Giarrusso [Wed, 13 Oct 2004 14:30:46 +0000 (07:30 -0700)]
[PATCH] uml: kbuild - add even more cleaning

Remove one more symlink when doing

make mrproper ARCH=um

Signed-off-by: Paolo 'Blaisorblade' Giarrusso <blaisorblade_spam@yahoo.it>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
21 years ago[PATCH] uml: update makefile to new kbuild API names
Paolo \'Blaisorblade\' Giarrusso [Wed, 13 Oct 2004 14:30:34 +0000 (07:30 -0700)]
[PATCH] uml: update makefile to new kbuild API names

Drop the usage of check_gcc and host-progs, and use their new names.  A
must-have :-).

Oh, and it will create lots of serious problems - it will give me your root
account!  Yes, you don't see the code in the patch, but it happens!  :-)))

Signed-off-by: Paolo 'Blaisorblade' Giarrusso <blaisorblade_spam@yahoo.it>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
21 years ago[PATCH] uml: make -j fix
Paolo \'Blaisorblade\' Giarrusso [Wed, 13 Oct 2004 14:30:22 +0000 (07:30 -0700)]
[PATCH] uml: make -j fix

Makes the UML build system work well even under parallel make (tested, so far,
even with -j50).  Please notice that it must be updated for every makefile
change.  Or better, every makefile change must use correct dependencies (and
they are easy to miss).

Signed-off-by: Paolo 'Blaisorblade' Giarrusso <blaisorblade_spam@yahoo.it>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
21 years ago[PATCH] uml: Single Linking Step for vmlinux
Paolo \'Blaisorblade\' Giarrusso [Wed, 13 Oct 2004 14:30:10 +0000 (07:30 -0700)]
[PATCH] uml: Single Linking Step for vmlinux

Uml-specific patch (which requires a mainline hook, mailed separately).

This patch avoid the linking kludge which leaves kbuild link vmlinux and then
link it with libc inside linux.  This kludge has the big problem of making
kallsyms break, since the kallsyms pass is done on a completely

Signed-off-by: Paolo 'Blaisorblade' Giarrusso <blaisorblade_spam@yahoo.it>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
21 years ago[PATCH] uml: no extraversion in arch/um/Makefile for mainline
Paolo \'Blaisorblade\' Giarrusso [Wed, 13 Oct 2004 14:29:58 +0000 (07:29 -0700)]
[PATCH] uml: no extraversion in arch/um/Makefile for mainline

Extraversion in arch/um/Makefile is not needed in mainline, but just for
separate patches; also, they should set it in the main Makefile, not elsewhere
(Jeff Garzik has just complained).  Also remove the dependency from version.h
on arch/um/Makefile: it was added because arch/um/Makefile could change the
kernel version number.

Signed-off-by: Paolo 'Blaisorblade' Giarrusso <blaisorblade_spam@yahoo.it>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
21 years ago[PATCH] uml: force using /bin/bash for building
Paolo \'Blaisorblade\' Giarrusso [Wed, 13 Oct 2004 14:29:46 +0000 (07:29 -0700)]
[PATCH] uml: force using /bin/bash for building

This forces make to use bash rather than whatever /bin/sh is linked to.
Without this, since there are some bash extensions used in the build and when
/bin/sh isn't bash, then the build fails without a clear error message.

Signed-off-by: Paolo 'Blaisorblade' Giarrusso <blaisorblade_spam@yahoo.it>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
21 years ago[PATCH] uml: Set cflags before including arch Makefile
Paolo \'Blaisorblade\' Giarrusso [Wed, 13 Oct 2004 14:29:34 +0000 (07:29 -0700)]
[PATCH] uml: Set cflags before including arch Makefile

If arch/$(ARCH)/Makefile is included before adding -O2 (and the rest) to
CFLAGS, I must duplicate the addition of it to USER_CFLAGS for UML.  So let's
fix this.  Also, the below code is useless, since if CONFIG_DEBUG_INFO is y,
then CONFIG_FRAME_POINTER is always y.

ifeq ($(CONFIG_DEBUG_INFO),y)
CFLAGS := $(subst -fomit-frame-pointer,,$(CFLAGS))
endif

Signed-off-by: Paolo 'Blaisorblade' Giarrusso <blaisorblade_spam@yahoo.it>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
21 years ago[PATCH] uml: export more Symbols
Paolo \'Blaisorblade\' Giarrusso [Wed, 13 Oct 2004 14:29:22 +0000 (07:29 -0700)]
[PATCH] uml: export more Symbols

Adds a lot more EXPORT_SYMBOLS calls.

Signed-off-by: Paolo 'Blaisorblade' Giarrusso <blaisorblade_spam@yahoo.it>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
21 years ago[PATCH] uml: fix an "unused" warnings
Paolo \'Blaisorblade\' Giarrusso [Wed, 13 Oct 2004 14:29:10 +0000 (07:29 -0700)]
[PATCH] uml: fix an "unused" warnings

Fixes some random warnings.  To avoid "defined but not used" for
not_configged_ops, make it be defined only if at least one channel is not
defined.

Signed-off-by: Paolo 'Blaisorblade' Giarrusso <blaisorblade_spam@yahoo.it>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
21 years ago[PATCH] uml: finish update for 2.6.8 API changes
Paolo \'Blaisorblade\' Giarrusso [Wed, 13 Oct 2004 14:28:58 +0000 (07:28 -0700)]
[PATCH] uml: finish update for 2.6.8 API changes

Add some updates for API changes in 2.6.8 which were not included in the
original UML patch; these fixes were detected by some warnings, so I probably
missed some more ones.

Signed-off-by: Paolo 'Blaisorblade' Giarrusso <blaisorblade_spam@yahoo.it>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
21 years ago[PATCH] uml: fix warning for unused var
Paolo \'Blaisorblade\' Giarrusso [Wed, 13 Oct 2004 14:28:46 +0000 (07:28 -0700)]
[PATCH] uml: fix warning for unused var

That var is used only when CONFIG_UML_REAL_TIME_CLOCK is on, so #ifdef its
definition.

Signed-off-by: Paolo 'Blaisorblade' Giarrusso <blaisorblade_spam@yahoo.it>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
21 years ago[PATCH] uml: fix wrong type for rb_entry call
Paolo \'Blaisorblade\' Giarrusso [Wed, 13 Oct 2004 14:28:34 +0000 (07:28 -0700)]
[PATCH] uml: fix wrong type for rb_entry call

With the type-safe rb_entry (based on container_of, I sent it) I discovered
this type error, so I've fixed it.

Signed-off-by: Paolo 'Blaisorblade' Giarrusso <blaisorblade_spam@yahoo.it>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
21 years ago[PATCH] uml: don't declare cpu_online - fix compilation error
Paolo \'Blaisorblade\' Giarrusso [Wed, 13 Oct 2004 14:28:22 +0000 (07:28 -0700)]
[PATCH] uml: don't declare cpu_online - fix compilation error

Avoid redeclaring again (resulting in a compilation error) cpu_online and
cpu_*_map, which are now declared elsewhere.

Signed-off-by: Paolo 'Blaisorblade' Giarrusso <blaisorblade_spam@yahoo.it>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
21 years ago[PATCH] SELinux: fix bugs in mprotect hook
James Morris [Wed, 13 Oct 2004 14:28:10 +0000 (07:28 -0700)]
[PATCH] SELinux: fix bugs in mprotect hook

The patch below by Roland McGrath fixes two bugs in the implementation of
the selinux_file_mprotect hook:

  It calls selinux_file_mmap, which has two problems.  First, the stacked
  security module will get both mmap and mprotect callbacks for an
  mprotect call, which is wrong.  Secondly, the vm_flags value contains
  VM_* bits, and these do not match the MAP_* bits of the same name or
  function, so it passes bogus flags and causes every mprotect to be
  treated as if MAP_SHARED were in use.

  The patch shares the common code while not having one function call the
  other, and fixes these two bugs.

Signed-off-by: James Morris <jmorris@redhat.com>
Signed-off-by: Roland McGrath <roland@redhat.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
21 years ago[PATCH] SELinux: retain ptracer SID across fork
Stephen D. Smalley [Wed, 13 Oct 2004 14:27:58 +0000 (07:27 -0700)]
[PATCH] SELinux: retain ptracer SID across fork

This fixes a bug in SELinux to retain the ptracer SID (if any) across fork.
Otherwise, SELinux will always deny attempts by traced children to exec
domain-changing programs even if the policy would have allowed the tracer
to trace the new domains as well.

Signed-off-by: Stephen Smalley <sds@epoch.ncsc.mil>
Signed-off-by: James Morris <jmorris@redhat.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
21 years ago[PATCH] Fix reporting of process start times
Tim Schmielau [Wed, 13 Oct 2004 14:27:49 +0000 (07:27 -0700)]
[PATCH] Fix reporting of process start times

Derive process start times from the posix_clock_monotonic notion of uptime
instead of "jiffies", consistent with the earlier change to /proc/uptime
itself.
(http://linus.bkbits.net:8080/linux-2.5/cset@3ef4851dGg0fxX58R9Zv8SIq9fzNmQ?na%0Av=index.html|src/.|src/fs|src/fs/proc|related/fs/proc/proc_misc.c)

Process start times are reported to userspace in units of 1/USER_HZ since
boot, thus applications as procps need the value of "uptime" to convert
them into absolute time.

Currently "uptime" is derived from an ntp-corrected time base, but process
start time is derived from the free-running "jiffies" counter.  This
results in inaccurate, drifting process start times as seen by the user,
even if the exported number stays constant, because the users notion of
"jiffies" changes in time.

It's John Stultz's patch anyways, which I only messed up a bit, but since
people started trading signed-off lines on lkml:

Signed-off-by: Tim Schmielau <tim@physik3.uni-rostock.de>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
21 years ago[PATCH] Fix MTD build error for Lubbock map driver
Nicolas Pitre [Wed, 13 Oct 2004 14:27:37 +0000 (07:27 -0700)]
[PATCH] Fix MTD build error for Lubbock map driver

Without this patch, Lubbock is pretty unusable in current 2.6.9-rc4.  The
same fix already present in the MTD CVS.

Signed-off-by: Nicolas Pitre <nico@cam.org>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
21 years ago[PATCH] auth_domain_lookup fix
Olaf Kirch [Wed, 13 Oct 2004 14:27:25 +0000 (07:27 -0700)]
[PATCH] auth_domain_lookup fix

This patch makes sure that auth_domain_lookup returns NULL when it doesn't
find a matching entry, rather than the last entry in the hash chain.

Signed-off-by: Olaf Kirch <okir@suse.de>
Acked-by: Neil Brown <neilb@cse.unsw.edu.au>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
21 years ago[PATCH] Fix oops in parkbd
Dmitry Torokhov [Wed, 13 Oct 2004 14:27:13 +0000 (07:27 -0700)]
[PATCH] Fix oops in parkbd

parkbd - zero-fill allocated serio structure to prevent Oops when
registering port.

Signed-off-by: Dmitry Torokhov <dtor@mail.ru>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
21 years ago[PATCH] ptep_establish smp race x86 PAE >4G
Andrea Arcangeli [Wed, 13 Oct 2004 14:27:01 +0000 (07:27 -0700)]
[PATCH] ptep_establish smp race x86 PAE >4G

This avoid userspace mm corruption during COWs with threads (i.e.
malloc;fork;clone) on x86 PAE with >4G of ram

Signed-Off-By: Andrea Arcangeli <andrea@novell.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
21 years ago[PATCH] cyber2000: fix init/exit section confusion
Randy Dunlap [Wed, 13 Oct 2004 14:26:49 +0000 (07:26 -0700)]
[PATCH] cyber2000: fix init/exit section confusion

- cyberpro_free_fb_info() is called by both __devinit & __devexit code,
  so it cannot be __devinit.

- igs_regs[] is used by resume code (indirectly), so it cannot be
  discardable.

This leaves one reference in cyber2000fb that 'make buildcheck' complains
about, but I believe that it's OK, that being ".probe" here:

static struct pci_driver cyberpro_driver =
{
.name = "CyberPro",
.probe = cyberpro_pci_probe,

Signed-off-by: Randy Dunlap <rddunlap@osdl.org>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
21 years ago[PATCH] m32r: remove obsolete system calls
Hirokazu Takata [Wed, 13 Oct 2004 14:26:37 +0000 (07:26 -0700)]
[PATCH] m32r: remove obsolete system calls

This patch is for removing obsolete system calls from m32r kernel, such as
old_mmap and old_select.

* arch/m32r/kernel/entry.S:
- Remove an obsolete system call, old_mmap, from the syscall table.

* arch/m32r/kernel/sys_m32r.c:
- Remove obsolete system calls, old_mmap() and old_select().
- do_mmap2() is renamed to sys_mmap2().

* CAUTION (for m32r users):
  The new kernel (applied this patch) does not have a backward
  compatibility. The new kernel and old library pair does not work.

  So, those who want to use the new kernel must use a new version of
  glibc (the GNU C library), which uses the "mmap2(_NR_mmap2)" syscall
  for __mmap() instead of the "old_mmap(__NR_mmap)".

  The new glibc package, libc6_2.3.2.ds1-16.0.3_m32r.deb, is provided
  on the following site, please apt-get/download it and upgrade.

    http://debian.linux-m32r.org/dists/03_cambrian/main/binary-m32r/

Signed-off-by: Hirokazu Takata <takata@linux-m32r.org>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
21 years ago[PATCH] m32r: fix syscall table
Hirokazu Takata [Wed, 13 Oct 2004 14:26:25 +0000 (07:26 -0700)]
[PATCH] m32r: fix syscall table

This patch fixes the system call table for m32r.

The latest kernel cannot be linked for m32r, because the following
experimental syscalls doesn't exist in the prepatch kernel of bk-tree.

* include/asm-m32r/unistd.h:
- Remove syscalls from #285(perfctr_info) to #293(keyctl).

* arch/m32r/kernel/entry.S: ditto.

Signed-off-by: Hirokazu Takata <takata@linux-m32r.org>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
21 years ago[PATCH] revert writeback threshold changes
Andrew Morton [Wed, 13 Oct 2004 14:26:13 +0000 (07:26 -0700)]
[PATCH] revert writeback threshold changes

The post-2.6.8 recent tweaks to the page writeback thresholding code seems to
be doing the wrong thing for small unmapped_ratios - nathans had a few
problems with it.  The problem it was trying to fix is minor and fairly
theoretical anyway, so back it out to the old code.

Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
21 years ago[PATCH] fix oops in fork() cleanup path
John L. Byrne [Wed, 13 Oct 2004 14:26:01 +0000 (07:26 -0700)]
[PATCH] fix oops in fork() cleanup path

It will oops on an error path if the thread being forked is a process with
a NULL mm.

Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
21 years ago[PATCH] time interpolator fixes
Christoph Lameter [Wed, 13 Oct 2004 14:25:49 +0000 (07:25 -0700)]
[PATCH] time interpolator fixes

- Remove the setting of CLOCK_REALTIME and CLOCK_MONOTONIC resolution
  according to the interpolator resolution since this causes periodic timer
  signals to fail.  The clocks will still be high-resolution but the
  "resolution" reported reflects the timer intervals possible via
  timer_settime (also more conformant to what the Single Unix Specification
  says).

- Make the IA64 clock_gettime fastcall fall back on negative clock
  numbers instead of returning CLOCK_REALTIME.

Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
21 years agoMerge http://oss.sgi.com:8090/xfs-linux-2.6
Linus Torvalds [Wed, 13 Oct 2004 00:28:23 +0000 (17:28 -0700)]
Merge http://oss.sgi.com:8090/xfs-linux-2.6
into ppc970.osdl.org:/home/torvalds/v2.6/linux

21 years ago[XFS] fix a freeze/thaw deadlock
Christoph Hellwig [Wed, 13 Oct 2004 23:30:49 +0000 (09:30 +1000)]
[XFS] fix a freeze/thaw deadlock

Signed-off-by: Nathan Scott <nathans@sgi.com>
21 years ago[XFS] Fix regression when running in laptop mode, causes hangs on sync.
Nathan Scott [Wed, 13 Oct 2004 23:10:46 +0000 (09:10 +1000)]
[XFS] Fix regression when running in laptop mode, causes hangs on sync.

SGI Modid: xfs-linux:xfs-kern:19744a
Signed-off-by: Nathan Scott <nathans@sgi.com>
21 years ago[XFS] Fix up write_inode return type to use the right signedness.
Nathan Scott [Wed, 13 Oct 2004 23:07:07 +0000 (09:07 +1000)]
[XFS] Fix up write_inode return type to use the right signedness.

SGI Modid: xfs-linux:xfs-kern:19632a
Signed-off-by: Nathan Scott <nathans@sgi.com>
21 years ago[PATCH] ppc64: one more explicit cmp instruction sizing
David Woodhouse [Tue, 12 Oct 2004 00:52:30 +0000 (17:52 -0700)]
[PATCH] ppc64: one more explicit cmp instruction sizing

Signed-off-by: David Woodhouse <dwmw2@infradead.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
21 years ago[PATCH] megaraid 2.20.4: fix a data corruption bug
Sreenivas Bagalkote [Mon, 11 Oct 2004 01:32:50 +0000 (18:32 -0700)]
[PATCH] megaraid 2.20.4: fix a data corruption bug

Fixes a data corruption issue. Because of a typo in the driver, IO packets
were wrongly shared by the IOCTL path. This caused the whole IO command
to be replaced by an incoming IOCTL command.

21 years ago[PATCH] ACPI: check parameter for NULL
Nick Piggin [Mon, 11 Oct 2004 01:26:06 +0000 (18:26 -0700)]
[PATCH] ACPI: check parameter for NULL

ACPI still explodes on my old PII and stops it booting.

Anyway, it is oopsing in drivers/acpi/scan.c line 207 where element
(which is NULL) gets dereferenced.

The ACPI bios on this thing has always seemed to be pretty broken, but
this at least allows the 'power' button to continue to work (the only
reason why I want ACPI).

21 years agoLinux 2.6.9-rc4 v2.6.9-rc4
Linus Torvalds [Sun, 10 Oct 2004 12:55:28 +0000 (05:55 -0700)]
Linux 2.6.9-rc4

21 years ago[PATCH] find_isa_irq_pin can't be __init
Dave Jones [Sun, 10 Oct 2004 10:48:06 +0000 (03:48 -0700)]
[PATCH] find_isa_irq_pin can't be __init

As spotted by one of our Fedora users, we sometimes
oops during shutdown (http://www.roberthancock.com/kerneloops.png)
because disable_IO_APIC() wants to call find_isa_irq_pin(),
which we threw away during init.

Signed-off-by: Dave Jones <davej@redhat.com>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
21 years agoMerge bk://bk.arm.linux.org.uk/linux-2.6-pcmcia
Linus Torvalds [Sun, 10 Oct 2004 04:04:46 +0000 (21:04 -0700)]
Merge bk://bk.arm.linux.org.uk/linux-2.6-pcmcia
into ppc970.osdl.org:/home/torvalds/v2.6/linux

21 years ago[PCMCIA] Remove two unused variables.
Russell King [Sun, 10 Oct 2004 19:42:40 +0000 (20:42 +0100)]
[PCMCIA] Remove two unused variables.

21 years agoMerge bk://linux-acpi.bkbits.net/26-latest-release
Linus Torvalds [Sun, 10 Oct 2004 03:44:33 +0000 (20:44 -0700)]
Merge bk://linux-acpi.bkbits.net/26-latest-release
into ppc970.osdl.org:/home/torvalds/v2.6/linux

21 years ago[ACPI] If BIOS disabled the LAPIC, believe it by default.
Len Brown [Sun, 10 Oct 2004 09:21:08 +0000 (05:21 -0400)]
[ACPI] If BIOS disabled the LAPIC, believe it by default.
"lapic" is available to force enabling the LAPIC
in the event you know more than your BIOS vendor.
http://bugzilla.kernel.org/show_bug.cgi?id=3238

21 years agoCset exclude: len.brown@intel.com|ChangeSet|20041010081245|01886
Len Brown [Sun, 10 Oct 2004 08:56:59 +0000 (04:56 -0400)]
Cset exclude: len.brown@intel.com|ChangeSet|20041010081245|01886

21 years agoUse "request_resource()" to properly fix up PCI resource clashes.
Linus Torvalds [Sun, 10 Oct 2004 03:21:04 +0000 (20:21 -0700)]
Use "request_resource()" to properly fix up PCI resource clashes.

This is made possible by the previous resource allocation ordering
patch.

Now that we run the pre-existing PCI resource discovery _before_
ACPI resources have been added, we should not "insert" the resources
into any existing tree. If they clash with existing resources, we
should re-allocate them (later, when we have the full resource map).

21 years ago[PATCH] PCI resource allocation re-ordering
Li Shaohua [Sun, 10 Oct 2004 03:15:28 +0000 (20:15 -0700)]
[PATCH] PCI resource allocation re-ordering

This re-orders the PCI and ACPI IO resource assignment as suggested by
Linus.

With this patch, now the sequence of reserving resources is:
 1. PCI claim BAR
 2. ACPI reserve motherboard resources
 3. PNP reserve motherboard resources
 4. PCI allocate resources for uninitialized PCI devices

This way the kernel allocates new PCI resources after it has full
knowledge of the resource state, and at the same time allows ACPI and
PnP to be run _after_ we've filled in our knowledge about pre-allocated
resources.

The way it is done is to make the last phase of the original PCI assign
resources code to be an 'fs_initcall', along with the ACPI and PnP
initializations.

Signed-off-by: Linus Torvalds <torvalds@osdl.org>
21 years agoMerge bk://bart.bkbits.net/ide-2.6
Linus Torvalds [Sun, 10 Oct 2004 02:52:51 +0000 (19:52 -0700)]
Merge bk://bart.bkbits.net/ide-2.6
into ppc970.osdl.org:/home/torvalds/v2.6/linux

21 years ago[ide] pdc202xx_old: kill PDC202XX_DECODE_REGISTER_INFO
Bartlomiej Zolnierkiewicz [Sun, 10 Oct 2004 20:00:26 +0000 (22:00 +0200)]
[ide] pdc202xx_old: kill PDC202XX_DECODE_REGISTER_INFO

Signed-off-by: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
21 years ago[ide] kill dead TASKFILE_IN_OUT code
Bartlomiej Zolnierkiewicz [Sun, 10 Oct 2004 19:47:22 +0000 (21:47 +0200)]
[ide] kill dead TASKFILE_IN_OUT code

Signed-off-by: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
21 years ago[ide] cmd64x: kill dead DEBUG_CMD_REGS code
Bartlomiej Zolnierkiewicz [Sun, 10 Oct 2004 19:44:23 +0000 (21:44 +0200)]
[ide] cmd64x: kill dead DEBUG_CMD_REGS code

Signed-off-by: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
21 years ago[ide] ide-dma blacklist behaviour broken
Bartlomiej Zolnierkiewicz [Sun, 10 Oct 2004 19:37:56 +0000 (21:37 +0200)]
[ide] ide-dma blacklist behaviour broken

From: Jens Axboe <axboe@suse.de>

The blacklist stuff is broken. When set_using_dma() calls into
->ide_dma_check(), it returns __ide_dma_off() for a blacklisted drive.
This of course succeeds, returning success to the caller of ->ide_dma_check().
Not so good... It then uncondtionally calls ->ide_dma_on(), which turns on
DMA for the drive.

This moves the check to __ide_dma_on() so we also catch the buggy
->ide_dma_check() defined by various chipset drivers.

Signed-off-by: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
21 years agoMerge bk://bk.arm.linux.org.uk/linux-2.6-pcmcia
Linus Torvalds [Sun, 10 Oct 2004 02:49:59 +0000 (19:49 -0700)]
Merge bk://bk.arm.linux.org.uk/linux-2.6-pcmcia
into ppc970.osdl.org:/home/torvalds/v2.6/linux

21 years ago[ACPI] Don't enable LAPIC when the BIOS disabled it.
Len Brown [Sun, 10 Oct 2004 00:12:45 +0000 (20:12 -0400)]
[ACPI] Don't enable LAPIC when the BIOS disabled it.
Doing so apparently breaks every Dell on Earth.
http://bugzilla.kernel.org/show_bug.cgi?id=3238

21 years ago[PATCH] Fix Neomagic configuration dependency
Adrian Bunk [Sat, 9 Oct 2004 09:55:07 +0000 (02:55 -0700)]
[PATCH] Fix Neomagic configuration dependency

FB_NEOMAGIC needs FB_MODE_HELPER (for vesa_modes).

Reported by Michel Angelo da Silva Pereira.

Signed-off-by: Adrian Bunk <bunk@stusta.de>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
21 years agoMerge bk://bk.arm.linux.org.uk/linux-2.6-rmk
Linus Torvalds [Sat, 9 Oct 2004 08:36:36 +0000 (01:36 -0700)]
Merge bk://bk.arm.linux.org.uk/linux-2.6-rmk
into ppc970.osdl.org:/home/torvalds/v2.6/linux

21 years ago[ARM PATCH] 2073/3: Hynix h720x architecture support
Sascha Hauer [Sat, 9 Oct 2004 23:05:21 +0000 (00:05 +0100)]
[ARM PATCH] 2073/3: Hynix h720x architecture support

Patch from Sascha Hauer

This patch supports the Hynix developer boards h7201 and h7202 for the
HMS30C7201 and HMS30C7202 CPUs.

Changes to previous patch:
- reorganized file structure. We now have common.c which shares stuff
  common to all h720x processors and cpu-h720[12].c files for the cpu
  specific stuff
- fixed timer handling for timers 1/2
- cleaned up h720x register definitions and splitted in files specific
  to each cpu and one generic part

Signed-off-by: Thomas Gleixner
Signed-off-by: Robert Schwebel
Signed-off-by: Sascha Hauer
21 years ago[PATCH] sparc32: fix warning for changed section attributes
Clemens Buchacher [Sat, 9 Oct 2004 08:05:38 +0000 (01:05 -0700)]
[PATCH] sparc32: fix warning for changed section attributes

This fixes the "Ignoring changed section attributes" warning by commenting
out the attributes appended by gcc.

The previous 'fix' created a section '.text,#alloc' (literally), which I
guess was not intended.

Signed-off-by: Clemens Buchacher <drizzd@aon.at>
Signed-off-by: William Irwin <wli@holomorphy.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
21 years ago[PATCH] Remove get_cpu_ptr() comment reference
Jonathan Corbet [Sat, 9 Oct 2004 08:05:26 +0000 (01:05 -0700)]
[PATCH] Remove get_cpu_ptr() comment reference

Since get_cpu_ptr() went away, we probably shouldn't tease developers by
telling them to use it in the comments.

Signed-off-by: Jonathan Corbet <corbet@lwn.net>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
21 years ago[PATCH] alpha: cpu mask fix-ups broke SMP DP264 machines in 2.6.8
Ali Saidi [Sat, 9 Oct 2004 08:05:14 +0000 (01:05 -0700)]
[PATCH] alpha: cpu mask fix-ups broke SMP DP264 machines in 2.6.8

The cpu mask fix-ups in 2.6.8 broke SMP kernels booting on a DP264.
Instead of not setting the DIM for cpus that did not exit, the patch
inadvertently doesn't set the DIM for CPUs that do exist.  Thus no device
interrupts get to the cpu.

Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
21 years ago[PATCH] s390: qeth network driver
Thomas Spatzier [Sat, 9 Oct 2004 08:05:02 +0000 (01:05 -0700)]
[PATCH] s390: qeth network driver

qeth network driver changes:
 - Unlock queue in qeth_do_sent_packet if there is no empty buffer
   in packing state.

Signed-off-by: Martin Schwidefsky <schwidefsky@de.ibm.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
21 years ago[PATCH] s390: dcss changes
Gerald Schaefer [Sat, 9 Oct 2004 08:04:50 +0000 (01:04 -0700)]
[PATCH] s390: dcss changes

DCSS block device driver changes:
 - Add module/kernel parameter for loading segments.

Signed-off-by: Martin Schwidefsky <schwidefsky@de.ibm.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
21 years ago[PATCH] s390: z/VM monitor stream
Gerald Schaefer [Sat, 9 Oct 2004 08:04:38 +0000 (01:04 -0700)]
[PATCH] s390: z/VM monitor stream

z/VM monitor stream changes:
 - Reduce stack usage of appldata_get_mem_data.

Signed-off-by: Martin Schwidefsky <schwidefsky@de.ibm.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
21 years ago[PATCH] s390: dasd driver
Horst Hummel [Sat, 9 Oct 2004 08:04:26 +0000 (01:04 -0700)]
[PATCH] s390: dasd driver

dasd driver changes:
 - Free memory returned by read_conf_data.
 - Add warning message if use_diag is specified with a non-CMS
   formatted device.

Signed-off-by: Martin Schwidefsky <schwidefsky@de.ibm.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
21 years ago[PATCH] s390: common i/o layer
Cornelia Huck [Sat, 9 Oct 2004 08:04:14 +0000 (01:04 -0700)]
[PATCH] s390: common i/o layer

Common i/o layer changes:
 - Fix error handling in io_subchannel_register.
 - Fix __MAX_SUBCHANNELS limit checking.
 - Clear slow_subchannel structure after kmalloc.
 - Update ssd_info if a different device appears at an already known
   subchannel to get the correct set of chpids.
 - Avoid struct initializers to reduce stack usage of ccwgroup_create,
   readall_cmb and io_subchannel_recog,
 - Setup fields in pmcw in each retry because msch might fail and a stsch
   overwrites them.
 - Prevent irq_exit() in cio_tpi from calling do_softirq by adding a
   local_bh_disable/__local_bh_enable pair.
 - Retry sense id after receiving an unsolicited interrupt.

Signed-off-by: Martin Schwidefsky <schwidefsky@de.ibm.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
21 years ago[PATCH] s390: core changes
Martin Schwidefsky [Sat, 9 Oct 2004 08:04:02 +0000 (01:04 -0700)]
[PATCH] s390: core changes

From: Christian Borntrdger <cborntra@de.ibm.com>
From: Martin Schwidefsky <schwidefsky@de.ibm.com>
From: Thomas Spatzier <tspat@de.ibm.com>

s390 core changes:
 - Add default storage key and introduce page_{set,get}_storage_key.
 - Fix access to siginfo in copy_siginfo_from_user32.
 - Regenerate default configuration.

Signed-off-by: Martin Schwidefsky <schwidefsky@de.ibm.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
21 years ago[PATCH] therm_adt746x: various fixes
Colin Leroy [Sat, 9 Oct 2004 08:03:50 +0000 (01:03 -0700)]
[PATCH] therm_adt746x: various fixes

This one removes the other occurences of "°C"; fixes displayed fan speed so
that it uses the same scale than other occurences of this parameter instead
of RPM only; fixes the RPM reading of the fan so that it shows zero instead
of 82 when it is effectively stopped.

Signed-off-by: Colin Leroy <colin@colino.net>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
21 years ago[PATCH] hugetlb: initialize sb->s_maxbytes
William Lee Irwin III [Sat, 9 Oct 2004 08:03:38 +0000 (01:03 -0700)]
[PATCH] hugetlb: initialize sb->s_maxbytes

hugetblfs appears not to support the creation of files larger than 2GB.
hugetlbfs_vmtruncate() checks against the s_maxbytes member of the super
block and returns EFBIG if the requested file size is too large.

Signed-off-by: Guy Cardwell <gcardwel@motorola.com>
Signed-off-by: William Irwin <wli@holomorphy.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
21 years ago[PATCH] pm: console driver fixes
Ian Campbell [Sat, 9 Oct 2004 08:03:26 +0000 (01:03 -0700)]
[PATCH] pm: console driver fixes

Fix warnings in kernel/power/console.c by only declaring orig_fgconsole
and orig_kmsg when required by SUSPEND_CONSOLE. Restore kmsg_redirect on
resume.

Signed-off-by: Ian Campbell <icampbell@arcom.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
21 years ago[PATCH] pc110pad.c request_region() fix
Li Shaohua [Sat, 9 Oct 2004 07:51:19 +0000 (00:51 -0700)]
[PATCH] pc110pad.c request_region() fix

request_region() returns NULL if failed.  The driver gets it wrong.

Signed-off-by: Li Shaohua <shaoh.li@gmail.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
21 years ago[PATCH] i2o.h fix
Alexander Viro [Sat, 9 Oct 2004 05:51:39 +0000 (22:51 -0700)]
[PATCH] i2o.h fix

i2o.h uses stuff defined in linux/dma-mapping.h but includes
asm/dma-mapping.h instead.  It works by accident on some platforms
(they end up pulling linux/dma-mapping.h from asm-generic/pci-dma-compat.h
before it hits the fan), but breaks on e.g. alpha.

Signed-off-by: Al Viro <viro@parcelfarce.linux.org.uk>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
21 years agodrm: cleanup header includes into one drm_core.h include
Dave Airlie [Sun, 10 Oct 2004 06:13:54 +0000 (16:13 +1000)]
drm: cleanup header includes into one drm_core.h include

This patch just cleans up the fact that all drm drivers include a
bunch of header files, it places them into one place (drm_core.h)
and uses that.

From: Jon Smirl <jonsmirl@gmail.com>
Signed-off-by: Dave Airlie <airlied@linux.ie>
21 years agodrm: remove unused dma support remnants.
Dave Airlie [Sun, 10 Oct 2004 04:57:24 +0000 (14:57 +1000)]
drm: remove unused dma support remnants.

These are unused since the gamma driver was dropped, they
cause problems with the via driver (coming soon).

Signed-off-by: Dave Airlie <airlied@linux.ie>
21 years ago[PCMCIA] Improve locking for memory resource probing.
Russell King [Sat, 9 Oct 2004 00:48:34 +0000 (01:48 +0100)]
[PCMCIA] Improve locking for memory resource probing.

- Pass a mask of the regions we wish to be probed to validate_mem
- Only take s->skt_sem if we need to probe resources on a socket

This prevents a deadlock reported by Adam Belay caused by ds.c waiting
with the socket semaphore held for userspace to respond.  Meanwhile,
userspace may under some rare circumstances issue a request to read
tuples from the card, which tries to take the socket semaphore again.

21 years agoMerge intel.com:/home/lenb/src/26-stable-dev
Len Brown [Fri, 8 Oct 2004 21:19:48 +0000 (17:19 -0400)]
Merge intel.com:/home/lenb/src/26-stable-dev
into intel.com:/home/lenb/src/26-latest-dev

21 years ago[ACPI4ASUS] globalize hotk structure
Len Brown [Fri, 8 Oct 2004 20:25:31 +0000 (16:25 -0400)]
[ACPI4ASUS] globalize hotk structure

This cleans the code up a bit, but mainly allows most functions
to be called externally when need (read: video driver) arises.

Signed-off-by: Karol Kozimor <sziwan@hell.org.pl
21 years ago[ACPI4ASUS] support M6700R laptops
Len Brown [Fri, 8 Oct 2004 20:24:17 +0000 (16:24 -0400)]
[ACPI4ASUS] support M6700R laptops

Signed-off-by: Karol Kozimor <sziwan@hell.org.pl
21 years ago[ACPI4ASUS] acpi_bus_register_driver() return code
Len Brown [Fri, 8 Oct 2004 20:22:10 +0000 (16:22 -0400)]
[ACPI4ASUS] acpi_bus_register_driver() return code

Signed-off-by: Karol Kozimor <sziwan@hell.org.pl>
21 years ago[ACPI] acpi4asus update: support W1N, v0.29
Len Brown [Fri, 8 Oct 2004 20:20:30 +0000 (16:20 -0400)]
[ACPI] acpi4asus update: support W1N, v0.29

Signed-off-by: Karol Kozimor <sziwan@hell.org.pl>
21 years agoMerge intel.com:/home/lenb/src/26-stable-dev
Len Brown [Fri, 8 Oct 2004 20:09:18 +0000 (16:09 -0400)]
Merge intel.com:/home/lenb/src/26-stable-dev
into intel.com:/home/lenb/src/26-latest-dev

21 years ago[ACPI] thermal module race condition/memory leak (David Shaohua Li)
Len Brown [Fri, 8 Oct 2004 19:59:07 +0000 (15:59 -0400)]
[ACPI] thermal module race condition/memory leak (David Shaohua Li)
http://bugzilla.kernel.org/show_bug.cgi?id=3231

21 years ago[ACPI] fix double quoted params such as acpi_os_string="a b c"
Len Brown [Fri, 8 Oct 2004 19:51:51 +0000 (15:51 -0400)]
[ACPI] fix double quoted params such as acpi_os_string="a b c"
by Christian Lupien
http://bugzilla.kernel.org/show_bug.cgi?id=3242

21 years agoMerge intel.com:/home/lenb/bk/26-latest-ref
Len Brown [Fri, 8 Oct 2004 19:34:25 +0000 (15:34 -0400)]
Merge intel.com:/home/lenb/bk/26-latest-ref
into intel.com:/home/lenb/src/26-latest-dev

21 years agoMerge intel.com:/home/lenb/src/26-stable-dev
Len Brown [Fri, 8 Oct 2004 13:56:02 +0000 (09:56 -0400)]
Merge intel.com:/home/lenb/src/26-stable-dev
into intel.com:/home/lenb/src/26-latest-dev

21 years ago[ACPI] x86_64 build fix
Len Brown [Fri, 8 Oct 2004 13:33:03 +0000 (09:33 -0400)]
[ACPI] x86_64 build fix

Signed-off-by: Andrew Morton <akpm@osdl.org>
21 years ago[ACPI] fix allmodconfig build
Len Brown [Fri, 8 Oct 2004 13:31:00 +0000 (09:31 -0400)]
[ACPI] fix allmodconfig build

Signed-off-by: Andrew Morton <akpm@osdl.org>
21 years agoMerge intel.com:/home/lenb/bk/26-latest-ref
Len Brown [Fri, 8 Oct 2004 13:20:41 +0000 (09:20 -0400)]
Merge intel.com:/home/lenb/bk/26-latest-ref
into intel.com:/home/lenb/src/26-latest-dev

21 years agoUpdate ray_cs Raylink/WebGear wireless driver.
Linus Torvalds [Fri, 8 Oct 2004 11:30:54 +0000 (04:30 -0700)]
Update ray_cs Raylink/WebGear wireless driver.

This adds iomem annotations, cleans up the code, fixes
an oops at unload time, and builds in the wireless
extensions that were not getting enabled due to an
obsolete CONFIG_NET_PCMCIA_RADIO test.

Tested by Jean Tourrilhes, who pointed out the wireless
extensions problem.

21 years agoMerge bk://bk.arm.linux.org.uk/linux-2.6-rmk
Linus Torvalds [Fri, 8 Oct 2004 09:51:16 +0000 (02:51 -0700)]
Merge bk://bk.arm.linux.org.uk/linux-2.6-rmk
into ppc970.osdl.org:/home/torvalds/v2.6/linux

21 years ago[ARM] ecard.c: Remove unnecessary context checks.
Russell King [Fri, 8 Oct 2004 23:54:13 +0000 (00:54 +0100)]
[ARM] ecard.c: Remove unnecessary context checks.

21 years ago[ARM] ecard.c: pass a function pointer for kecardd
Russell King [Fri, 8 Oct 2004 23:48:35 +0000 (00:48 +0100)]
[ARM] ecard.c: pass a function pointer for kecardd

21 years ago[ARM] ecard.c: Make the ecard task completion per request.
Russell King [Fri, 8 Oct 2004 23:35:37 +0000 (00:35 +0100)]
[ARM] ecard.c: Make the ecard task completion per request.

21 years ago[ARM] Ecard initialisation tweaks.
Russell King [Fri, 8 Oct 2004 23:24:07 +0000 (00:24 +0100)]
[ARM] Ecard initialisation tweaks.

Start ecard_task at initialisation time.
Statically initialise ecard wait queue head.

21 years ago[ARM] Mark source for copy_page const.
Russell King [Fri, 8 Oct 2004 17:53:52 +0000 (18:53 +0100)]
[ARM] Mark source for copy_page const.

21 years ago[ARM] Remove cache type check before flushing ARMv6 cache.
Russell King [Fri, 8 Oct 2004 16:37:05 +0000 (17:37 +0100)]
[ARM] Remove cache type check before flushing ARMv6 cache.

We do not need to check which type of cache we have before
using using the Harvard or von Neumann cache instructions -
the unimplemented instructions are defined to be NOPs.

21 years ago[ARM] Add decompressor support for ARMv6 caches.
Russell King [Fri, 8 Oct 2004 16:30:49 +0000 (17:30 +0100)]
[ARM] Add decompressor support for ARMv6 caches.

21 years ago[PATCH] PPC64 Replace cmp instructions with cmpw/cmpd
David Woodhouse [Fri, 8 Oct 2004 00:36:04 +0000 (17:36 -0700)]
[PATCH] PPC64 Replace cmp instructions with cmpw/cmpd

On Fri, 2004-10-08 at 15:37 +1000, Paul Mackerras wrote:
> This patch replaces cmp{,l}{,i} with cmp{,l}[wd]{,i} as appropriate.
> The original patch was from Segher Boessenkool, slightly modified by
> me.

And also for ppc32 and arch/ppc64/kernel/ItLpQueue.c...

Signed-off-by: David Woodhouse <dwmw2@infradead.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
21 years ago[PATCH] PPC64 Replace cmp instructions with cmpw/cmpd
Paul Mackerras [Fri, 8 Oct 2004 00:35:51 +0000 (17:35 -0700)]
[PATCH] PPC64 Replace cmp instructions with cmpw/cmpd

There were a few places in assembly code in the ppc64 part of the
kernel where we were using the old forms of the compare instruction
(cmp, cmpi, cmpl, cmpli) which don't specify the operand size (word or
doubleword).  These have been accepted for a long time for backward
compatibility with the old POWER architecture (and defaulted to a
32-bit comparison) but are now being rejected by the latest versions
of binutils.  Some of them were actual bugs in that they were on
things which were actually 64-bit values such as pointers (not that
any of them actually caused a problem in practice).

This patch replaces cmp{,l}{,i} with cmp{,l}[wd]{,i} as appropriate.
The original patch was from Segher Boessenkool, slightly modified by
me.

Signed-off-by: Paul Mackerras <paulus@samba.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
21 years ago[PATCH] PPC64: Remove degree symbol from rtas-proc.c
Paul Mackerras [Fri, 8 Oct 2004 00:35:39 +0000 (17:35 -0700)]
[PATCH] PPC64: Remove degree symbol from rtas-proc.c

Alan Cox pointed out that the degree symbol in the thermal sensor proc
files that we have on ppc64 cause problems for people using other
locales or UTF-8.  This patch makes them disappear.

Signed-off-by: Paul Mackerras <paulus@samba.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
21 years ago[PATCH] ppc64: Fix module exports for G5
Benjamin Herrenschmidt [Fri, 8 Oct 2004 00:35:27 +0000 (17:35 -0700)]
[PATCH] ppc64: Fix module exports for G5

Some stuffs in ppc_ksyms.c where still #ifdef CONFIG_PPC_PSERIES, which
is no longer set for PowerMac-only configs. Change them to depend on
CONFIG_PPC_MULTIPLATFORM for now. Later on, a bunch of these will be
just gone since those are mostly deprecated functions and I'll move the
exports close to the actual functions.

Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
21 years ago[PATCH] uml: fix major & minor handling in hostfs
Paolo \'Blaisorblade\' Giarrusso [Fri, 8 Oct 2004 00:35:15 +0000 (17:35 -0700)]
[PATCH] uml: fix major & minor handling in hostfs

Currently hostfs passes the rdev value from stat() on the host as rdev
value to return to stat() on the guest; but we cannot pass rdev as is
because glibc and the kernel disagree about its definition.  So we must
decode it in a major/minor couple with glibc macros and re-encode it in
kernelspace code.

Signed-off-by: Paolo 'Blaisorblade' Giarrusso <blaisorblade_spam@yahoo.it>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
21 years ago[PATCH] uml: fix fd leak with HostFs
Paolo \'Blaisorblade\' Giarrusso [Fri, 8 Oct 2004 00:35:03 +0000 (17:35 -0700)]
[PATCH] uml: fix fd leak with HostFs

On 2.4 we used force_delete() to make sure inode were not cached, and we then
close the host file when the inode is cleared; when porting to 2.6 the
"force_delete" thing was dropped, and this patch adds a fix for this (by
setting drop_inode = generic_delete_inode).

Search for drop_inode in the 2.6 Documentation/filesystems/vfs.txt for info
about this.

Signed-off-by: Paolo 'Blaisorblade' Giarrusso <blaisorblade_spam@yahoo.it>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
21 years ago[PATCH] uml: remove wrong declaration
Paolo \'Blaisorblade\' Giarrusso [Fri, 8 Oct 2004 00:34:51 +0000 (17:34 -0700)]
[PATCH] uml: remove wrong declaration

Avoid compile failure due to the addition of sys_timer_create to
linux/syscalls.h

Signed-off-by: Paolo 'Blaisorblade' Giarrusso <blaisorblade_spam@yahoo.it>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
21 years ago[PATCH] uml: fix get_user warning
Paolo \'Blaisorblade\' Giarrusso [Fri, 8 Oct 2004 00:34:39 +0000 (17:34 -0700)]
[PATCH] uml: fix get_user warning

Adds some more parenthesis for a macro arg to fix a warning (which was in
kernel/uid16.c).

Signed-off-by: Paolo 'Blaisorblade' Giarrusso <blaisorblade_spam@yahoo.it>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
21 years ago[PATCH] uml: add generic ptrace requests
Paolo \'Blaisorblade\' Giarrusso [Fri, 8 Oct 2004 00:34:27 +0000 (17:34 -0700)]
[PATCH] uml: add generic ptrace requests

When we don't know how to handle ptrace(2) calls, call the arch-independent
ptrace_request like i386 (and I guess other archs) do, instead of returning
-EIO.

Signed-off-by: Paolo 'Blaisorblade' Giarrusso <blaisorblade_spam@yahoo.it>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>