| From | Subject | Date |
|---|---|---|
| Kumar Gala | [PATCH] NFS: Fix the ustat() regression
From: Trond Myklebust <Trond.Myklebust@netapp.com>
Since 2.6.18, the superblock sb->s_root has been a dummy dentry with a
dummy inode. This breaks ustat(), which actually uses sb->s_root in a
vfstat() call.
Fix this by making the s_root a dummy alias to the directory inode that was
used when creating the superblock.
Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>
Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
---
fs/nfs/getroot.c | 81 ++++++++++++...
| Nov 10, 7:02 pm 2007 |
| Jeff Garzik | [git patches] net driver fixes
Please pull from 'upstream-linus' branch of
master.kernel.org:/pub/scm/linux/kernel/git/jgarzik/netdev-2.6.git upstream-linus
to receive the following updates:
MAINTAINERS | 10 ++-
drivers/net/Kconfig | 2 +-
drivers/net/bonding/bond_main.c | 1 +
drivers/net/bonding/bond_sysfs.c | 4 +-
drivers/net/pasemi_mac.c | 18 ++++-
drivers/net/qla3xxx.c | 42 +++++------
drivers/net/ql...
| Nov 10, 5:42 pm 2007 |
| Chris Friedhoff | 2.6.24-rc2 STD with s2disk fails to activate suspended syste...
please cc me, I'm not not subscribed to LKML
Hello,
with kernel 2.6.24-rc2 STD with s2disk suspends the system to disk, but
when I start the system and the suspended systemimage is loaded, it
fails to "activate" this suspended systemimage and continues after some
time with following the normal boot sequence.
I can sucessfully STD the system with the following sequence
echo platform > /sys/power/disk
echo disk > /sys/power/state
and when I start the laptop the suspended system is suc...
| Nov 10, 5:16 pm 2007 |
| Mark Lord | USB storage: corrupted data transfers
Something may be broken in USB / usb-storage land.
I've got a 2GB USB stick here.
I want to copy it to an image file on my hard drive:
cat /dev/sdb > usbkey.image1
Make a second copy, with or without unplugging/replugging the stick:
cat /dev/sdb > usbkey.image2
After doing this, the two copies *differ*.
So I wrote a little program to compare them and determine *how* they differ,
and the result is very interesting.
Periodically, or or the other file has 8192 *zero* bytes ...
| Nov 10, 5:05 pm 2007 |
| Mark Lord | Re: USB storage: corrupted data transfers
Here's the information on the specific devices I'm trying this with.
I'm beginning to suspect a faulty stick, or maybe one that just doesn't
work reliably with the way Linux accesses it (?). The type that fails
(I have several of that model here) also gives some errors from "lsusb -v"
(see below for details).
I have another completely different brand/model of 2GB stick here
that has now been confirmed to NOT have any such issues.
Perhaps the USB experts here could comment on the differences
...
| Nov 10, 5:41 pm 2007 |
| Alan Stern | Re: [Linux-usb-users] USB storage: corrupted data transfers
Me too. It seems rather unlikely that they are coming from the USB
device or the transport, since at that level everything is addressed in
terms of sector numbers. I don't see how 16 extra sectors could just
get inserted. More believable would be a problem in the block layer,
Or it makes all drives somewhat unreliable, depending on just where the
You could try doing a more specific test. Write a program to access
the block device sector-by-sector and store a distinct recognizable
byte pa...
| Nov 10, 5:20 pm 2007 |
| Olof Johansson | [PATCH] [POWERPC] Fix CONFIG_SMP=n build error on ppc64
[POWERPC] Fix CONFIG_SMP=n build error
The patch "KVM: fix !SMP build error" change the way smp_call_function()
actually uses the passed in function names on non-SMP builds. So
previously it was never caught that the function passed in was never
actually defined.
This causes a build error on ppc64_defconfig + CONFIG_SMP=n:
arch/powerpc/mm/tlb_64.c: In function 'pgtable_free_now':
arch/powerpc/mm/tlb_64.c:71: error: 'pte_free_smp_sync' undeclared (first use in this function)
arch/powerpc/mm/tlb...
| Nov 10, 4:59 pm 2007 |
| Sam Ravnborg | [PATCH 0/5] introduce K64BIT=y and backward compatibility AR...
As discussed in another thread the right thing is to add a generic solution
to select between 32 and 64 bit - useable for powerpc, s390, ppc et al.
First step was to teach kconfig how to force 64BIT to a specific value.
The x86 Kconfig file needed a small twist to use 64BIT as the symbol
to seelct 32 or 64 bit.
Then it was simple to add backward compatibility ARCH= settings.
The patchset is not yet pushed out - I will await a bit feedback first.
Shortlog and diffstat.
kconfig: factor out...
| Nov 10, 4:40 pm 2007 |
| Randy Dunlap | Re: [PATCH 0/5] introduce K64BIT=y and backward compatibilit...
Hi Sam,
Looks good to me and should satisfy our habits^w usages models.
The one minor question is the environment variable name (K64BIT or
something else, like Guillaume brought up). Personally I don't
care how it's spelled. IOW, K64BIT is sufficient, but if there is a
goal to be able to place any CONFIG_symbol on the command line or
as an env. variable, they might as well all be named with CONFIG_*.
Thanks,
---
~Randy
-
| Nov 10, 6:33 pm 2007 |
| Sam Ravnborg | Re: [PATCH 0/5] introduce K64BIT=y and backward compatibilit...
The K64BIT varibale came up because it is more unique than CONFIG_64BIT.
Google turned up less than 20 hits[1] on K64BIT but 14900 on CONFIG_64BIT.
And I dunno if some people source their .config or other crazy stuff.
And then K64BIT was easier to type...
But if we assume this is internal stuff only then we could go
for the longer version and I will then suggest to prefix
the CONFIG_ symbol with K like in KCONFIG_64BIT which
has no hits with google right now!
I do not see this extended to 'any...
| Nov 10, 6:50 pm 2007 |
| Sam Ravnborg | [PATCH] kconfig: factor out code in confdata.c
This patch introduce no functional changes.
Signed-off-by: Sam Ravnborg <sam@ravnborg.org>
Cc: Roman Zippel <zippel@linux-m68k.org>
---
scripts/kconfig/confdata.c | 119 +++++++++++++++++++++++--------------------
1 files changed, 64 insertions(+), 55 deletions(-)
diff --git a/scripts/kconfig/confdata.c b/scripts/kconfig/confdata.c
index b2913e9..e0f402f 100644
--- a/scripts/kconfig/confdata.c
+++ b/scripts/kconfig/confdata.c
@@ -83,6 +83,68 @@ char *conf_get_default_confname(voi...
| Nov 10, 4:43 pm 2007 |
| Sam Ravnborg | [PATCH] kconfig: use $K64BIT to set 64BIT with all*config ta...
The variable K64BIT can now be used to select the
value of CONFIG_64BIT.
This is for example useful for powerpc to generate
allmodconfig for both bit sizes - like this:
make ARCH=powerpc K64BIT=y
make ARCH=powerpc K64BIT=n
To use this the Kconfig file must use "64BIT" as the
config value to select between 32 and 64 bit.
Signed-off-by: Sam Ravnborg <sam@ravnborg.org>
---
scripts/kconfig/conf.c | 1 +
scripts/kconfig/confdata.c | 27 +++++++++++++++++++++++++++
scripts/kcon...
| Nov 10, 4:43 pm 2007 |
| Randy Dunlap | Re: [PATCH] kconfig: use $K64BIT to set 64BIT with all*confi...
What's with <warning> and <conf_filename> here? I don't see how
---
~Randy
-
| Nov 10, 6:16 pm 2007 |
| Sam Ravnborg | Re: [PATCH] kconfig: use $K64BIT to set 64BIT with all*confi...
Added to allow conf_warning to print out something usefull.
Like in the following example:
make K64BIT=randy allnoconfig
Environment variable (K64BIT = "randy"):0:warning: symbol value 'randy' invalid for 64BIT
This could look better - but I preferred this version for the
less readable:
(null):0:warning: symbol value 'randy' invalid for 64BIT
Thanks for the other inputs. I am correcting them in
my local patch-set. Before resubmit I willawait further comments.
Sam
-
| Nov 10, 6:31 pm 2007 |
| Guillaume Chazarain | Re: [PATCH] kconfig: use $K64BIT to set 64BIT with all*confi...
Hi,
Why not calling the environment variable CONFIG_64BIT,
in preparation of the day when all CONFIG_ variables can
be passed by environment variables?
--
Guillaume
-
| Nov 10, 4:55 pm 2007 |
| Sam Ravnborg | [PATCH] x86: Use CONFIG_64BIT to select between 32 and 64 bi...
This change allow us to use the new syntax:
make K64BIT={n,y} to select between 32 and 64 bit.
Signed-off-by: Sam Ravnborg <sam@ravnborg.org>
---
arch/x86/Kconfig | 26 ++++++++------------------
1 files changed, 8 insertions(+), 18 deletions(-)
diff --git a/arch/x86/Kconfig b/arch/x86/Kconfig
index 153c26c..0d86611 100644
--- a/arch/x86/Kconfig
+++ b/arch/x86/Kconfig
@@ -1,34 +1,24 @@
# x86 configuration
# Select 32 or 64 bit
-choice
- bool "Select 32 or 64 bit"
- default X...
| Nov 10, 4:43 pm 2007 |
| Randy Dunlap | Nov 10, 6:18 pm 2007 | |
| Sam Ravnborg | [PATCH] kconfig: document make K64BIT=y in README
Signed-off-by: Sam Ravnborg <sam@ravnborg.org>
---
README | 2 ++
1 files changed, 2 insertions(+), 0 deletions(-)
diff --git a/README b/README
index 159912c..6622ba1 100644
--- a/README
+++ b/README
@@ -194,6 +194,8 @@ CONFIGURING the kernel:
"make *config" checks for a file named "all{yes/mod/no/random}.config"
for symbol values that are to be forced. If this file is not found,
it checks for a file named "all.config" to contain forced values.
+ Finally it checks the ...
| Nov 10, 4:43 pm 2007 |
| Randy Dunlap | Re: [PATCH] kconfig: document make K64BIT=y in README
and if found, sets
---
~Randy
-
| Nov 10, 6:23 pm 2007 |
| Sam Ravnborg | [PATCH] x86: introduce ARCH=i386,ARCH=x86_64 to select 32/64...
Using the newly added infrastructure is is now simple
to add addition ARCH= symbols to select between 32 and 64 bit.
Do this for x86.
Signed-off-by: Sam Ravnborg <sam@ravnborg.org>
---
Makefile | 16 +++++++++++++---
arch/x86/Makefile | 10 +++++++---
scripts/kconfig/Makefile | 2 +-
3 files changed, 21 insertions(+), 7 deletions(-)
diff --git a/Makefile b/Makefile
index 902082b..5efee80 100644
--- a/Makefile
+++ b/Makefile
@@ -165,8 +165,7 @@ export src...
| Nov 10, 4:43 pm 2007 |
| Mikulas Patocka | Temporary lockup on loopback block device
Hi
I am experiencing a transient lockup in 'D' state with loopback device. It
happens when process writes to a filesystem in loopback with command like
dd if=/dev/zero of=/s/fill bs=4k
CPU is idle, disk is idle too, yet the dd process is waiting in 'D' in
congestion_wait called from balance_dirty_pages.
After about 30 seconds, the lockup is gone and dd resumes, but it locks up
soon again.
I added a printk to the balance_dirty_pages
printk("wait: nr_reclaimable %d, nr_writeback %d, dirty...
| Nov 10, 3:51 pm 2007 |
| Andrew Morton | Re: Temporary lockup on loopback block device
Arguably we just have the wrong backing-device here, and what we should do
is to propagate the real backing device's pointer through up into the
filesystem. There's machinery for this which things like DM stacks use.
I wonder if the post-2.6.23 changes happened to make this problem go away.
-
| Nov 10, 6:54 pm 2007 |
| Peter Zijlstra | Re: Temporary lockup on loopback block device
The per BDI dirty stuff in 24 should make this work, I just checked and
loopback thingies seem to have their own BDI, so all should be well.
-
| Nov 10, 7:02 pm 2007 |
| Miguel | [PATCH] iwlwifi: Remove unnecessary code in iwl3945 and iwl4...
Remove unnecesary code in iwl3945 and iwl4965 drivers.
"final_mode" variable is already initialized with the value of the "mode" variable.
Signed-off-by: Miguel Boton <mboton@gmail.com>
Index: linux-2.6.24-rc2/drivers/net/wireless/iwlwifi/iwl3945-base.c
===================================================================
--- linux-2.6.24-rc2.orig/drivers/net/wireless/iwlwifi/iwl3945-base.c
+++ linux-2.6.24-rc2/drivers/net/wireless/iwlwifi/iwl3945-base.c
@@ -2377,9 +2377,6 @@
case IWL_PO...
| Nov 10, 3:49 pm 2007 |
| Robert Hancock | Re: x86_64 SATA DVD drive + libata trouble
There is a known problem with ATAPI devices on CK804 chipsets which have
memory above the 4GB mark, being debugged here:
https://bugzilla.redhat.com/show_bug.cgi?id=351451
If you are running into that one you can workaround it for now by
passing the adma=0 parameter to the sata_nv module (not sure how this
would be done on Suse's setup) or pass sata_nv.adma=0 on the kernel
command line if sata_nv is built into the kernel. If that does help, I
could ask you to test patches :-)
--
Rober...
| Nov 10, 3:14 pm 2007 |
| Casey Schaufler | Repost - NetLabel: Introduce a new kernel configuration API ...
From: Paul Moore <paul.moore@hp.com>
Add a new set of configuration functions to the NetLabel/LSM API so that
LSMs can perform their own configuration of the NetLabel subsystem without
relying on assistance from userspace.
Signed-off-by: Paul Moore <paul.moore@hp.com>
Signed-off-by: Casey Schaufler <casey@schaufler-ca.com>
---
Reposting to ensure propriety of sign-offs.
include/net/netlabel.h | 47 ++++++++--
net/ipv4/cipso_ipv4.c | 4 -
n...
| Nov 10, 2:52 pm 2007 |
| Andrey Borzenkov | [PATCH] 2.6.24-rc2: fix oops in ACPI battery removal
Alexey, this fixes my patch that went into -rc2. Sorry for Oops.
Subject: [PATCH] 2.6.24-rc2: do not unregister power_supply in sysfs ->show=
method
=46rom: Andrey Borzenkov <arvidjaar@mail.ru>
Currently unplugging battery oopses with call stack:
[ 2245.375393] [<c010488a>] show_trace_log_lvl+0x1a/0x30
[ 2245.375570] [<c0104949>] show_stack_log_lvl+0xa9/0xd0
[ 2245.375732] [<c0104a36>] show_registers+0xc6/0x1c0
[ 2245.375884] [<c0104c21>] die+0xf1/0x200
[...
| Nov 10, 2:40 pm 2007 |
| Alexey Starikovskiy | Re: [PATCH] 2.6.24-rc2: fix oops in ACPI battery removal
Andrey,
Fix already exists. It already went up to Len's tree.
Regards,
Alex.
-
| Nov 10, 2:47 pm 2007 |
| Jerome Pinot | [PATCH] ACPI: add documentation for deprecated /proc/acpi/ba...
From: Jerome Pinot <ngc891@gmail.com>
Add documentation in Kconfig help about the move of /proc/acpi/battery
to /sys/class/power_supply
when selecting ACPI_PROCFS. This will impact a lot of users and should
be documented.
Signed-off-by: Jerome Pinot <ngc891@gmail.com>
---
diff --git a/drivers/acpi/Kconfig b/drivers/acpi/Kconfig
index da3a08f..ce9dead 100644
--- a/drivers/acpi/Kconfig
+++ b/drivers/acpi/Kconfig
@@ -60,6 +60,7 @@ config ACPI_PROCFS
/proc/acpi/info (/sys/modul...
| Nov 10, 2:01 pm 2007 |
| Stanislav Brabec | [PATCH] drivers/video/s1d13xxxfb.c as module with dbg
Attached patch fixes two compilation problems of s1d13xxxfb.c:
- Fixes outdated dbg() message to fix compilation error with debugging enabled.
- Do not read kernel command line options when compiled as module.
Signed-off-by: Stanislav Brabec <utx@penguin.cz>
--- linux-2.6.23/drivers/video/s1d13xxxfb.c 2007-10-09 22:31:38.000000000 +0200
+++ linux-2.6.23/drivers/video/s1d13xxxfb.c 2007-11-02 16:48:34.000000000 +0100
@@ -540,7 +540,7 @@
int ret = 0;
u8 revision;
- dbg("probe called: ...
| Nov 10, 11:51 am 2007 |
| dave chung | Re: [PATCH] drivers/video/s1d13xxxfb.c as module with dbg
we also need to look at splitting out the "chip revision", which is
currently hard set, as I have had very good results with this driver
and chip S1D13506, which is functionally similar but without the
external clocking and without teh internal ram.
We also have some build dependancies related to "CONFIG_FB_S1D13XXX"
and ics1523 , this chip is not used on the full range of S1D13XXX and
causes errors in the build , for chips such as S1D13506.
potentially we could re-use most of the code, but wo...
| Nov 10, 7:29 pm 2007 |
| Thomas Koeller | [PATCH] Include header required for INT_MAX
cdrom.h uses INT_MAX, so it must include kernel.h or
limits.h (userspace) for a definition.
Signed-off-by: Thomas Koeller <thomas@koeller.dyndns.org>
diff --git a/include/linux/cdrom.h b/include/linux/cdrom.h
index c6d3e22..bd8064a 100644
--- a/include/linux/cdrom.h
+++ b/include/linux/cdrom.h
@@ -12,6 +12,11 @@
#define _LINUX_CDROM_H
#include <asm/byteorder.h>
+#ifdef __KERNEL__
+#include <linux/kernel.h>
+#else
+#include <limits.h>
+#endif
/*************...
| Nov 10, 10:55 am 2007 |
| Alexander E. Patrakov | Re: [PATCH] Include header required for INT_MAX
No, it must be fixed so that it doesn't use this #defined constant. Debian has this:
/* Special codes used when specifying changer slots. */
#define CDSL_NONE ((int) (~0U>>1)-1)
#define CDSL_CURRENT ((int) (~0U>>1))
--
Alexander E. Patrakov
-
| Nov 10, 12:48 pm 2007 |
| Christoph Hellwig | Re: [PATCH] Include header required for INT_MAX
Nack, we shoiuld never include userspace headers in kernel headers,
an even more never add !__KERNEL__ ifdefs. Just make sure your
programs include limit.h before including linux/cdrom.h.
-
| Nov 10, 11:56 am 2007 |
| Mike Frysinger | [patch] fixup genksyms usage/getopt
The usage does not mention the "-a,--arch" or "-T,--dump-types" options, so
add them. The calls to getopt() seem to mention options that no longer exist
(some "k" and "p" thingy) but omits the "h" option which means using '-h'
actually triggers the error code path, so update those as well.
Signed-off-by: Mike Frysinger <vapier@gentoo.org>
---
diff --git a/scripts/genksyms/genksyms.c b/scripts/genksyms/genksyms.c
index 511023b..dca5e0d 100644
--- a/scripts/genksyms/genksyms.c
+++ b/scripts/...
| Nov 10, 10:32 am 2007 |
| Kamalesh Babulal | 2.6.24-rc2-git powerpc - kernel build fails !CONFIG_SMP
Hi,
The 2.6.24-rc2-git1 kernel build fails with randconfig on powerpc,
CC arch/powerpc/mm/tlb_64.o
arch/powerpc/mm/tlb_64.c: In function
| Nov 10, 9:08 am 2007 |
| Pierre Ossman | [GIT PULL] MMC update
Linus, please pull from
git://git.kernel.org/pub/scm/linux/kernel/git/drzeus/mmc.git for-linus
to receive the following updates:
drivers/mmc/host/sdhci.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
Rolf Eike Beer (1):
Add missing "\n" to log message
diff --git a/drivers/mmc/host/sdhci.c b/drivers/mmc/host/sdhci.c
index 6b80bf7..ff59d2e 100644
--- a/drivers/mmc/host/sdhci.c
+++ b/drivers/mmc/host/sdhci.c
@@ -1301,7 +1301,7 @@ static int __devinit sdhci_prob...
| Nov 10, 7:25 am 2007 |
| Diego Calleja | [PATCH] Improve cgroup printks
When I boot with the 'quiet' parameter, I see on the screen:
[ 0.000000] Initializing cgroup subsys cpuset
[ 0.000000] Initializing cgroup subsys cpu
[ 39.036026] Initializing cgroup subsys cpuacct
[ 39.036080] Initializing cgroup subsys debug
[ 39.036118] Initializing cgroup subsys ns
This patch lowers the priority of those messages, adds a "cgroup: " prefix
to another couple of printks and kills the useless reference to the source file.
Signed-off-by: Diego Calleja <diegocg@...
| Nov 10, 7:11 am 2007 |
| Kamalesh Babulal | [PATCH](resend) 2.6.24-rc2-git1 Build fails in selinux/hooks.
Hi,
The 2.6.24-rc2-git1 kernel build fails, with following error
CC security/selinux/hooks.o
In file included from include/net/tcp.h:35,
from security/selinux/hooks.c:52:
include/net/inet_hashtables.h: In function 'inet_ehash_locks_alloc':
include/net/inet_hashtables.h:165: error: implicit declaration of function 'vmalloc'
include/net/inet_hashtables.h:165: warning: assignment makes pointer from integer without a cast
include/net/inet_hashtables.h: In function 'inet_ehash...
| Nov 10, 5:41 am 2007 |
| Eric Dumazet | Re: [PATCH](resend) 2.6.24-rc2-git1 Build fails in selinux/h...
Yes, same patch was posted some hours ago, but Tony didnt acknowledged it.
http://marc.info/?l=linux-kernel&m=119465902731847&w=2
Thank you
-
| Nov 10, 6:24 am 2007 |
| Kamalesh Babulal | Re: [PATCH](resend) 2.6.24-rc2-git1 Build fails in selinux/h...
Hi Eric,
Thank you and sorry for the noise.
-
| Nov 10, 6:48 am 2007 |
| Kamalesh Babulal | [PATCH] 2.6.24-rc2-git1 Build fails in selinux/hooks.
Hi,
The 2.6.24-rc2-git1 kernel build fails, with following error
CC security/selinux/hooks.o
In file included from include/net/tcp.h:35,
from security/selinux/hooks.c:52:
include/net/inet_hashtables.h: In function 'inet_ehash_locks_alloc':
include/net/inet_hashtables.h:165: error: implicit declaration of function 'vmalloc'
include/net/inet_hashtables.h:165: warning: assignment makes pointer from integer without a cast
include/net/inet_hashtables.h: In function 'inet_ehash...
| Nov 10, 5:34 am 2007 |
| Jeff Garzik | [git patches] libata fixes
Please pull from 'upstream-linus' branch of
master.kernel.org:/pub/scm/linux/kernel/git/jgarzik/libata-dev.git upstream-linus
to receive the following updates:
drivers/ata/ata_piix.c | 7 +++
drivers/ata/libata-acpi.c | 10 +---
drivers/ata/libata-core.c | 78 ++++++++++++++++++++++-------
drivers/ata/pata_platform.c | 35 +++++++++++---
drivers/ata/sata_nv.c | 2 +-
drivers/ata/sata_qstor.c | 114 ++++++++++++++++++++++++++++---------------
6 files changed, 17...
| Nov 10, 5:24 am 2007 |
| Paul Mundt | ARM defconfig bogosity in current git
The last ARM merge contained this gem:
commit f33bac8dd4573428b94c67149c5607be489092d1
Author: Robert Schwebel <robert@schwebel.de>
Date: Mon Nov 5 17:59:25 2007 +0100
[ARM] 4642/2: netX: default config for netx based boards
This patch updates the default config file for netx based boards.
Signed-off-by: Robert Schwebel <r.schwebel@pengutronix.de>
Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Signed-off-by: Russell King <rmk+kernel@ar...
| Nov 10, 4:06 am 2007 |
| Russell King | Re: ARM defconfig bogosity in current git
-p1 doesn't avoid this when the patch just contains new files.
Unfortunately, you have to rely both on people spotting such things
and whoever's generating the patch doing the right thing.
Robert?
--
Russell King
Linux kernel 2.6 ARM Linux - http://www.arm.linux.org.uk/
maintainer of:
-
| Nov 10, 5:10 am 2007 |
| Robert Schwebel | Re: ARM defconfig bogosity in current git
Aaargh, that came from a broken script changing the patch from p0 to p1...
Please simply revert that patch, I'll send a new and correct one.
Sorry for the noise.
Robert
--
Dipl.-Ing. Robert Schwebel | http://www.pengutronix.de
Pengutronix - Linux Solutions for Science and Industry
Handelsregister: Amtsgericht Hildesheim, HRA 2686
Hannoversche Str. 2, 31134 Hildesheim, Germany
Phone: +49-5121-206917-0 | Fax: +49-5121-206917-9
-
| Nov 10, 7:26 am 2007 |
| Adrian Bunk | Re: ARM defconfig bogosity in current git
You should also check what you sent - the contents of this file was
cu
Adrian
--
"Is there not promise of rain?" Ling Tan asked suddenly out
of the darkness. There had been need of rain for many days.
"Only a promise," Lao Er said.
Pearl S. Buck - Dragon Seed
-
| Nov 10, 7:49 am 2007 |
| Robert Schwebel | Re: ARM defconfig bogosity in current git
/me puts on his brown paper bag. Patch follows.
Robert
--
Dipl.-Ing. Robert Schwebel | http://www.pengutronix.de
Pengutronix - Linux Solutions for Science and Industry
Handelsregister: Amtsgericht Hildesheim, HRA 2686
Hannoversche Str. 2, 31134 Hildesheim, Germany
Phone: +49-5121-206917-0 | Fax: +49-5121-206917-9
-
| Nov 10, 9:40 am 2007 |
| Robert Schwebel | [PATCH] netx: remove bogus defconfig patch with wrong -p
[Empty message]
| Nov 10, 9:41 am 2007 |
| Nick Piggin | [patch 1/2] mm: page trylock rename
Hi,
OK minus the memory barrier changes for now. Can we possibly please
get these into 2.6.24?
--
mm: rename page trylock
Converting page lock to new locking bitops requires a change of page flag
operation naming, so we might as well convert it to something nicer
(!TestSetPageLocked => trylock_page, SetPageLocked => set_page_locked).
Signed-off-by: Nick Piggin <npiggin@suse.de>
---
drivers/scsi/sg.c | 2 +-
fs/afs/write.c | 2 +-
fs/cifs/file.c...
| Nov 10, 1:12 am 2007 |
| previous day | today | next day |
|---|---|---|
| November 9, 2007 | November 10, 2007 | November 11, 2007 |
| Thomas Gleixner | Re: Linux 2.6.21-rc1 |
| Tarkan Erimer | Re: Dual-Licensing Linux Kernel with GPL V2 and GPL V3 |
| James Bottomley | [Ksummit-2008-discuss] Fixing the Kernel Janitors project |
| James Morris | Re: LSM conversion to static interface |
git: | |
| Natalie Protasevich | [BUG] New Kernel Bugs |
| Christoph Hellwig | Re: [PATCH 06/32] IGET: Mark iget() and read_inode() as being obsolete [try #2] |
| Linus Torvalds | Re: [GIT]: Networking |
| Jarek Poplawski | [PATCH take 2] pkt_sched: Protect gen estimators under est_lock. |
