03 Mar, 2006
3 commits
-
Signed-off-by: Steve French
-
servers have same tid and we try to match oplock break to wrong tid.
Signed-off-by: Steve French
-
- slow down negprot 1ms during mount when RFC1001 over port 139
to give buggy servers time to clear sess_init
- remap some plausible but incorrect SMB return codes to the
right ones in truncate and hardlink pathsSigned-off-by: Steve French
02 Mar, 2006
3 commits
-
returns error invalid level
Signed-off-by: Steve French
-
not just the posix path feature.
Signed-off-by: Steve French
-
error to informational unless frame is rejected.
Signed-off-by: Steve French
01 Mar, 2006
2 commits
-
Signed-off-by: Steve French
-
Samba (version 3) server support for this is also currently being
done. This client code is in an experimental path (requires enabling
/proc/fs/cifs/Experimental) while it is being tested.Signed-off-by: Steve French
28 Feb, 2006
1 commit
-
Signed-off-by: Steve French
27 Feb, 2006
1 commit
-
small req buffer pool less often.
Signed-off-by: Steve French
24 Feb, 2006
1 commit
-
bcc on read response and for wrapping sessionsetup maxbufsize field
Signed-off-by: Steve French
23 Feb, 2006
16 commits
-
Signed-off-by: Steve French
-
Thanks to Adrian Bunk for debugging the problem and to Shaggy for
helping find the solution.Also added a fix for 64K pages we found in loosely-related testing
Signed-off-by: Dave Kleikamp
Signed-off-by: Steve French
Signed-off-by: Linus Torvalds -
esp_reset didn't get fixed when the EH locking changed.
->eh_bus_reset_handler is now called without the host lock held.Signed-off-by: Christoph Hellwig
Signed-off-by: David S. Miller -
Patch from Mårten Wikström
This patch fixes a bug in ixp4xx_set_irq_type() which leads to
GPIO being incorrectly set to both edge triggered for raising
as well as falling edge interrupt types. See the previous
discussion on patch 3312/1.Signed-off-by: Mårten Wikström
Signed-off-by: Russell King -
Patch from Andrew Victor
This patch adds the at91_set_multi_drive() function to enable/disable
the multi-drive (open collector) pin capability on the AT91RM9200
processor.This is necessary to fix the UDC (USB Gadget) driver for the AT91RM9200
board as it will not allow the board reset line to be pulled low if the
pullup is not driven as an open collector output as the boards are wired
to the USB connector on both the DK/EK.This version of the patch updates it to 2.6.16-rc4.
Orignal patch by Jeff Warren.Signed-off-by: Andrew Victor
Signed-off-by: Russell King -
CONFIG_CPU_MPCORE has never been a configuration symbol - it should
be CONFIG_CPU_32v6K.Signed-off-by: Russell King
-
Patch from Uli Luckas
This is a bugfix.
The comment in arch/arm/common/rtctime.c explains it:
* FIXME: for now, we just copy the alarm time because we're lazy (and
* is therefore buggy - setting a 10am alarm at 8pm will not result in
* the alarm triggering.)This patch adds one day to the alarm iff the alarm wrapped beyond midnight and therefore appears to be in the past.
Signed-off-by: Uli Luckas
Signed-off-by: Russell King -
Patch from Alessandro Zummo
This patch adds support for the beeper
embedded in the NSLU2 to the machine setup code.Signed-off-by: Alessandro Zummo
Signed-off-by: Rod Whitby
Signed-off-by: Russell King -
Patch from Alessandro Zummo
The I2C pin assignment for the Iomega NAS100d board was incorrect. This
patch fixes it. The correct assignment has now been tested using the
new RTC class and a new driver for the RTC on the NAS100d.Signed-off-by: Rod Whitby
Signed-off-by: Alessandro Zummo
Signed-off-by: Russell King -
Patch from Alessandro Zummo
The power button exit routine for the Linksys NSLU2 was not protected by
a machine_is_nslu2(). This patch fixes it.Signed-off-by: Rod Whitby
Signed-off-by: Alessandro Zummo
Signed-off-by: Russell King -
Patch from Catalin Marinas
The initial code did not configure the inbound memory windows for direct
master access to the SDRAM. This patch creates a 1:1 mapping between the
Versatile/PB PCI memory windows and its SDRAM. Note that an updated FPGA
image is needed for Versatile/PB since the original windows were 1MB and
not able to cover the whole SDRAM (now extended to 256MB). The patch also
fixes the PCI IRQ mapping for slot #2.Signed-off-by: Catalin Marinas
Signed-off-by: Russell King -
This change reverts the 033b96fd30db52a710d97b06f87d16fc59fee0f1 commit
from Kay Sievers that removed the mount/umount uevents from the kernel.
Some older versions of HAL still depend on these events to detect when a
new device has been mounted. These events are not correctly emitted,
and are broken by design, and so, should not be relied upon by any
future program. Instead, the /proc/mounts file should be polled to
properly detect this kind of event.A feature-removal-schedule.txt entry has been added, noting when this
interface will be removed from the kernel.Signed-off-by: Greg Kroah-Hartman
22 Feb, 2006
13 commits
-
A typo crept into the le32_to_cpu patch which broke 256-bit keys
in the padlock driver. The following patch based on observations
by Michael Heyse fixes the problem.Signed-off-by: Herbert Xu
Signed-off-by: Linus Torvalds -
Signed-off-by: Russell King
-
Although you could ask the kernel for panic-on-oops, it remained
non-functional because the architecture specific code fragment had
not been implemented. Add it, so it works as advertised.Signed-off-by: Russell King
-
It's MMC_CMD_MASK not MMC_CMD_TYPE.
Signed-off-by: Russell King
-
I've been dissatisfied with the mpol_nodelist mount option which was
added to tmpfs earlier in -rc. Replace it by mpol=policy:nodelist.And it was broken: a nodelist is a comma-separated list of numbers and
ranges; the mount options are a comma-separated list of token=values.
Whoops, blindly strsep'ing on commas doesn't work so well: since we've
no numeric tokens, and unlikely to add them, use that to distinguish.Move the mpol= parsing to shmem_parse_mpol under CONFIG_NUMA, reject
all its options as invalid if not NUMA. /proc shows MPOL_PREFERRED
as "prefer", so use that name for the policy instead of "preferred".Enforce that mpol=default has no nodelist; that mpol=prefer has one
node only; that mpol=bind has a nodelist; but let mpol=interleave use
node_online_map if no nodelist given. Describe this in tmpfs.txt.Signed-off-by: Hugh Dickins
Acked-by: Robin Holt
Acked-by: Andi Kleen
Signed-off-by: Linus Torvalds -
kmalloc/memset to simpler kzalloc usage
Signed-off-by: Eric Sesterhenn
Signed-off-by: Steve French -
Signed-off-by: Ralf Baechle
-
Signed-off-by: Ralf Baechle
-
The last argument of div_long_long_rem() must be long.
Signed-off-by: Atsushi Nemoto
Signed-off-by: Ralf Baechle -
A recent patch introduced cpu topology in sysfs. When you run a kernel
with SMP and sysfs enabled, you now get an Oops on boot. The following
patch fixes that by adding topology_init to arch/mips/kernel/smp.c. The
code is copied from arch/s390/kernel/smp.c.Signed-off-by: Rojhalat Ibrahim
Signed-off-by: Ralf Baechle -
Fix the following compiler warnings:
CC arch/mips/sibyte/bcm1480/irq.o
arch/mips/sibyte/bcm1480/irq.c: In function ‘bcm1480_set_affinity’:
arch/mips/sibyte/bcm1480/irq.c:168: warning: ISO C90 forbids mixed declarations and code
arch/mips/sibyte/bcm1480/irq.c: In function ‘ack_bcm1480_irq’:
arch/mips/sibyte/bcm1480/irq.c:230: warning: ISO C90 forbids mixed declarations and codeSigned-off-by: Martin Michlmayr
Signed-off-by: Ralf Baechle