| From | Subject | Date |
|---|---|---|
| Len Brown | [GIT PATCH] ACPI paches for 2.6.24-rc0
Hi Linus,
please pull from:
git://git.kernel.org/pub/scm/linux/kernel/git/lenb/linux-acpi-2.6.git release
Multiple random branches which have been queued for a while...
A new platform specific driver for Fujitsu laptops.
cpuidle is new, and is not perfect, but it seems time for it to get it upstream
where it will get some wider exposure now that people are doing things
like running powertop to tune tickless kernels...
The old ACPI idle code runs when CONFIG_CPU_IDLE=n.
This will update t...
| Oct 9, 11:10 pm 2007 |
| Jim Gifford | Nvidia SATA - Seagate SATA Drives
Here's the situation. I have a MSI KN8Neo-f motherboard with a Seagate
Barracuda 250 GB SATA drive. I have replaced this drive three times in
the last two weeks due to it failing. Now the only thing in common is
the use of a 2.6.22.9 kernel I built from scratch, before that I was
using 2.6.19 kernel but working on doing some upgrades for the CLFS
project and tried a 2.6.22.9. I will explain the situation and
including the links I used for fix the issues.
It boots up and instantly has a probl...
| Oct 9, 11:52 pm 2007 |
| Herbert Xu | Crypto Update for 2.6.24
Hi:
Here is the crypto update for 2.6.24:
Please pull from
git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6.git
or
master.kernel.org:/pub/scm/linux/kernel/git/herbert/crypto-2.6.git
Summary:
* Added SEED algorithm.
* Added XTS block cipher mode.
* Added new aead type (essentially blkcipher + hash).
* Added authenc wrapper as first aead algorithm.
* Preparatory work for CTR (Counter) mode support.
* Better loading of optimised algorithm modules.
Adrian Bunk (2):...
| Oct 9, 11:17 pm 2007 |
| Siddha, Suresh B | [patch] x86_64, vsyscall: fix the oops crash with __pa_vsymb...
Appended patch fixes an oops while changing the vsyscall sysctl.
I am sure no one tested this code before integrating into mainline :(
BTW, using ioremap() in vsyscall_sysctl_change() to get the virtual
address of a kernel symbol sounds like an over kill.. I wonder if we
can define a simple __va_vsymbol() which will return directly the
kernel direct mapping. comments in the code which says gcc has trouble
with __va(__pa()) sounds bogus to me. __pa() on a vsyscall address will
not work anyhow :(
...
| Oct 9, 9:59 pm 2007 |
| wit | about probing a device
Hi,
I found these routines in the kernel, does this means only one driver
can be matched to a device? What if two drivers both can drive the
device, like sd & sg in scsi subsystem?
static int device_attach(struct device * dev)
{
struct bus_type * bus = dev->bus;
struct list_head * entry;
int error;
if (dev->driver) {
device_bind_driver(dev);
return 1;
}
if (bus->match) {
list_for_each(entry, &bus->drivers.list) {
struct device_driver * drv = to_drv(en...
| Oct 9, 9:39 pm 2007 |
| Jeremy Fitzhardinge | [PATCH 3/3] xen-netfront: remove dead code
This patch removes some residual dead code left over from removing the
"flip" receive mode. This patch doesn't change the generated output
at all, since gcc already realized it was dead.
This resolves the "regression" reported by Adrian.
Signed-off-by: Jeremy Fitzhardinge <jeremy@xensource.com>
Cc: Adrian Bunk <bunk@stusta.de>
Cc: Michal Piotrowski <michal.k.k.piotrowski@gmail.com>
---
drivers/net/xen-netfront.c | 37 ++-----------------------------------
1 file changed,...
| Oct 9, 9:13 pm 2007 |
| Jeremy Fitzhardinge | [PATCH 2/3] xen-netfront: rearrange netfront structure to se...
Keep tx and rx elements separate on different cachelines to prevent
bouncing.
Signed-off-by: Jeremy Fitzhardinge <jeremy@xensource.com>
Cc: Stephen Hemminger <shemminger@linux-foundation.org>
Cc: Christoph Hellwig <hch@infradead.org>
---
drivers/net/xen-netfront.c | 37 ++++++++++++++++++-------------------
1 file changed, 18 insertions(+), 19 deletions(-)
===================================================================
--- a/drivers/net/xen-netfront.c
+++ b/drivers/n...
| Oct 9, 9:13 pm 2007 |
| Jeremy Fitzhardinge | [PATCH 1/3] xen-netfront: use net_device's stats structure
struct net_device has its own stats structure, so use that instead.
Also, we can use the default get_stats function.
Signed-off-by: Jeremy Fitzhardinge <jeremy@xensource.com>
Cc: Stephen Hemminger <shemminger@linux-foundation.org>
Cc: Rusty Russell <rusty@rustcorp.com.au>
---
drivers/net/xen-netfront.c | 25 +++++++------------------
1 file changed, 7 insertions(+), 18 deletions(-)
===================================================================
--- a/drivers/net/xen-net...
| Oct 9, 9:13 pm 2007 |
| Jeff Garzik | [git patches] net driver updates
Please pull from the 'upstream-davem' branch of
master.kernel.org:/pub/scm/linux/kernel/git/jgarzik/netdev-2.6.git upstream-davem
to receive these changes:
Auke Kok (2):
e1000e: Simple optimizations in e1000_xmit_frame
e1000e: restore flow control settings properly
Jan-Bernd Themann (1):
ehea: use kernel event queue
Krishna Kumar (1):
e1000: Simple optimizations in e1000_xmit_frame
Mark Brown (1):
natsemi: Use NATSEMI_TIMER_FREQ consistently
Roland Dre...
| Oct 9, 9:03 pm 2007 |
| David Miller | Re: [git patches] net driver updates
From: Jeff Garzik <jeff@garzik.org>
Pulled and pushed back out, thanks Jeff!
-
| Oct 9, 9:12 pm 2007 |
| Robert Hancock | Invalid PnP ACPI reserved MMIO areas on Supermicro boards
Some people with certain Supermicro boards (at least the H8DCE, it
seems) have reported that the sata_nv driver fails to attach to some of
the controllers due to resource conflicts:
https://bugzilla.redhat.com/show_bug.cgi?id=280641
https://bugzilla.redhat.com/show_bug.cgi?id=313491
Essentially since about 2.6.22 or so (before which we apparently didn't
handle PnpACPI reserved MMIO regions?) we get:
pnp: 00:09: iomem range 0xdfefd000-0xdfefd3ff has been reserved
pnp: 00:09: iomem range 0xdf...
| Oct 9, 8:01 pm 2007 |
| Gustavo Chain | [PATCH] Reserve N process to root
I think it's necessary to reserve some pids to the super user.
5 must be sufficient.
Signed-off-by: Gustavo Chain <g@0xff.cl>
---
kernel/fork.c | 6 ++++++
1 files changed, 6 insertions(+), 0 deletions(-)
diff --git a/kernel/fork.c b/kernel/fork.c
index 33f12f4..db23cb3 100644
--- a/kernel/fork.c
+++ b/kernel/fork.c
@@ -1367,11 +1367,17 @@ long do_fork(unsigned long clone_flags,
int __user *parent_tidptr,
int __user *child_tidptr)
{
+#define RESERVED_...
| Oct 9, 7:48 pm 2007 |
| David Newall | Re: [PATCH] Reserve N process to root
Why? (Sorry if I missed something.)
Shouldn't you test for error return before the pid is allocated?
(While I'm being picky, I don't like braces around a simple return, and
neither, I note, does the style guide.)
-
| Oct 9, 9:49 pm 2007 |
| James Morris | [PATCH 0/6] SELinux patches for 2.6.24
Please pull.
The following changes since commit bbf25010f1a6b761914430f5fca081ec8c7accd1:
Linus Torvalds (1):
Linux 2.6.23
are available in the git repository at:
git://git.kernel.org/pub/scm/linux/kernel/git/jmorris/selinux-2.6.git for-linus
Eric Paris (2):
SELinux: change Kconfig to use select instead of depends
SELinux: policy selectable handling of unknown classes and perms
KaiGai Kohei (2):
SELinux: improve performance when AVC misses.
SELinux:...
| Oct 9, 7:18 pm 2007 |
| James Morris | [PATCH 5/6] SELinux: improve performance when AVC misses
From: KaiGai Kohei <kaigai@ak.jp.nec.com>
* We add ebitmap_for_each_positive_bit() which enables to walk on
any positive bit on the given ebitmap, to improve its performance
using common bit-operations defined in linux/bitops.h.
In the previous version, this logic was implemented using a combination
of ebitmap_for_each_bit() and ebitmap_node_get_bit(), but is was worse
in performance aspect.
This logic is most frequestly used to compute a new AVC entry,
so this patch can improv...
| Oct 9, 7:23 pm 2007 |
| James Morris | [PATCH 6/6] SELinux: kills warnings in Improve SELinux perfo...
From: KaiGai Kohei <kaigai@kaigai.gr.jp>
This patch kills ugly warnings when the "Improve SELinux performance when
AVC misses" patch.
Signed-off-by: KaiGai Kohei <kaigai@ak.jp.nec.com>
Signed-off-by: James Morris <jmorris@namei.org>
---
security/selinux/ss/ebitmap.c | 11 +++++------
security/selinux/ss/ebitmap.h | 2 ++
2 files changed, 7 insertions(+), 6 deletions(-)
diff --git a/security/selinux/ss/ebitmap.c b/security/selinux/ss/ebitmap.c
index ae44c0c..c1a6b22 1...
| Oct 9, 7:23 pm 2007 |
| James Morris | [PATCH 4/6] SELinux: policy selectable handling of unknown c...
From: Eric Paris <eparis@redhat.com>
Allow policy to select, in much the same way as it selects MLS support, how
the kernel should handle access decisions which contain either unknown
classes or unknown permissions in known classes. The three choices for the
policy flags are
0 - Deny unknown security access. (default)
2 - reject loading policy if it does not contain all definitions
4 - allow unknown security access
The policy's choice is exported through 2 booleans in
selinuxfs. /seli...
| Oct 9, 7:22 pm 2007 |
| James Morris | [PATCH 1/6] SELinux: change Kconfig to use select instead of...
From: Eric Paris <eparis@redhat.com>
Changes the security/selinux/Kconfig to use select instead of depends
for most of the SELinux requirements. This allows the SELinux option to
show up when people do a make config without already knowing they had to
enable audit and other non-obvious choices. Added a depends on SECURITY
(which previously existed through SECURITY_NETWORK) so that SELinux
would not always show up, but would be easy and intuitive to find.
Signed-off-by: Eric Paris <epar...
| Oct 9, 7:19 pm 2007 |
| Randy Dunlap | Re: [PATCH 1/6] SELinux: change Kconfig to use select instea...
I doth protest. Enabling the entire NET subsystem thru a hidden
select is awful. Select should be used (sparingly) to enable
library code only. If someone wants NET enabled, they should
---
~Randy
-
| Oct 9, 7:28 pm 2007 |
| James Morris | Re: [PATCH 1/6] SELinux: change Kconfig to use select instea...
Ok, fair enough.
I've dropped the patch and rebased the branch. Please pull per:
The following changes since commit bbf25010f1a6b761914430f5fca081ec8c7accd1:
Linus Torvalds (1):
Linux 2.6.23
are available in the git repository at:
ssh://master.kernel.org/pub/scm/linux/kernel/git/jmorris/selinux-2.6.git for-linus
Eric Paris (1):
SELinux: policy selectable handling of unknown classes and perms
KaiGai Kohei (2):
SELinux: improve performance when AVC misses.
...
| Oct 9, 7:50 pm 2007 |
| Randy Dunlap | Re: [PATCH 1/6] SELinux: change Kconfig to use select instea...
Great, thanks.
---
~Randy
-
| Oct 9, 8:16 pm 2007 |
| James Morris | [PATCH 3/6] SELinux: Improve read/write performance
From: Yuichi Nakamura <ynakam@hitachisoft.jp>
It reduces the selinux overhead on read/write by only revalidating
permissions in selinux_file_permission if the task or inode labels have
changed or the policy has changed since the open-time check. A new LSM
hook, security_dentry_open, is added to capture the necessary state at open
time to allow this optimization.
(see http://marc.info/?l=selinux&m=118972995207740&w=2)
Signed-off-by: Yuichi Nakamura<ynakam@hitachisoft.jp>
Ac...
| Oct 9, 7:21 pm 2007 |
| James Morris | [PATCH 2/6] SELinux: tune avtab to reduce memory usage
From: Yuichi Nakamura <ynakam@hitachisoft.jp>
This patch reduces memory usage of SELinux by tuning avtab. Number of hash
slots in avtab was 32768. Unused slots used memory when number of rules is
fewer. This patch decides number of hash slots dynamically based on number
of rules. (chain length)^2 is also printed out in avtab_hash_eval to see
standard deviation of avtab hash table.
Signed-off-by: Yuichi Nakamura<ynakam@hitachisoft.jp>
Acked-by: Stephen Smalley <sds@tycho.nsa.gov>...
| Oct 9, 7:20 pm 2007 |
| Agarwal, Lomesh | TPM driver changes to support multiple locality
Current TPM driver supports only locality 0. I am planning to add
support so that it can access any locality. Locality parameter will be
passed as parameter. Will this change be acceptable? If yes then I will
modify the driver and send the patch.
Thanks,
Lomesh
-
| Oct 9, 6:51 pm 2007 |
| Mark Brown | [PATCH] natsemi: Use round_jiffies() for slow timers
Unless we have failed to fill the RX ring the timer used by the natsemi
driver is not particularly urgent and can use round_jiffies() to allow
grouping with other timers.
Signed-off-by: Mark Brown <broonie@sirena.org.uk>
---
drivers/net/natsemi.c | 10 +++++++---
1 files changed, 7 insertions(+), 3 deletions(-)
diff --git a/drivers/net/natsemi.c b/drivers/net/natsemi.c
index b47a12d..0b33a58 100644
--- a/drivers/net/natsemi.c
+++ b/drivers/net/natsemi.c
@@ -1575,7 +1575,7 @@ static i...
| Oct 9, 5:57 pm 2007 |
| Jeff Garzik | Re: [PATCH] natsemi: Use round_jiffies() for slow timers
ACK but does not apply to netdev-2.6.git#upstream or davem/net-2.6.24.git
-
| Oct 9, 8:47 pm 2007 |
| Mark Brown | [PATCH] natsemi: Use NATSEMI_TIMER_FREQ consistently
The natsemi driver has a define NATSEMI_TIMER_FREQ which looks like it
controls the normal frequency of the chip poll timer but in fact only
takes effect for the first run of the timer. Adjust the value of the
define to match that used by the timer and use the define consistently.
Signed-off-by: Mark Brown <broonie@sirena.org.uk>
---
drivers/net/natsemi.c | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/drivers/net/natsemi.c b/drivers/net/natsemi.c
index 0b33a5...
| Oct 9, 5:57 pm 2007 |
| Jeff Garzik | Oct 9, 8:47 pm 2007 | |
| Matt LaPlante | (resubmitting) typo fixes for 2.6.23
Most of these fixes were already submitted for old kernel versions, and were approved, but for some reason they never made it into the releases. I've updated the changes for the 2.6.23 kernel and attached the resulting patch. Because this is a consolidation of a couple old missed patches, it touches both Kconfigs and documentation texts.
Signed-off-by: Matt LaPlante <kernel1@cyberdogtech.com>
--
diff -ru a/arch/arm/Kconfig b/arch/arm/Kconfig
--- a/arch/arm/Kconfig 2007-10-09 16:31:38.0000000...
| Oct 9, 6:13 pm 2007 |
| Randy Dunlap | Re: (resubmitting) typo fixes for 2.6.23
Hi Matt,
software
Thanks.
---
~Randy
-
| Oct 9, 7:12 pm 2007 |
| Linus Torvalds | Linux 2.6.23
Finally.
Yeah, it got delayed, not because of any huge issues, but because of
various bugfixes trickling in and causing me to reset my "release clock"
all the time. But it's out there now, and hopefully better for the wait.
Not a whole lot of changes since -rc9, although there's a few updates to
mips, sparc64 and blackfin in there. Ignoring those arch updates, there's
basically a number of mostly one-liners (mostly in drivers, but there's
some networking fixes and soem VFS/VM fixes there ...
| Oct 9, 4:54 pm 2007 |
| chandru | [RFC] [Patch] calgary iommu: Use the first kernel's tce tabl...
kdump kernel fails to boot with calgary iommu and aacraid driver on a
x366 box. The ongoing dma's of aacraid from the first kernel continue
to exist until the driver is loaded in the kdump kernel. Calgary is
initialized prior to aacraid and creation of new tce tables causes wrong
dma's to occur.
Here we try to grab the tce tables of the first kernel in kdump kernel
and use them. While in the kdump kernel we do not allocate new tce
tables but rather read the base address register contents of calga...
| Oct 9, 4:40 pm 2007 |
| Muli Ben-Yehuda | Re: [RFC] [Patch] calgary iommu: Use the first kernel's tce ...
Hi Chandru,
Thanks for the patch. Comments on the patch below, but first a general
question for my education: the main problem here that aacraid
continues DMA'ing when it shouldn't. Why can't we shut it down
cleanly? Even without the presence of an IOMMU, it seems dangerous to
let an adapter continue DMA'ing to and from memory when the kernel is
an inconsistent state.
The patch below looks reasonable *if* that is the least worst way of
doing it - let's see if we can come up with something cleane...
| Oct 9, 5:06 pm 2007 |
| Darrick J. Wong | [PATCH v3] hwmon: Add power meter spec to Documentation/hwmo...
Update the hwmon sysfs interface documentation to include a specification
for power meters.
Signed-off-by: Darrick J. Wong <djwong@us.ibm.com>
---
Documentation/hwmon/sysfs-interface | 31 +++++++++++++++++++++++++++++++
1 files changed, 31 insertions(+), 0 deletions(-)
diff --git a/Documentation/hwmon/sysfs-interface b/Documentation/hwmon/sysfs-interface
index db7bb4a..4e0fb20 100644
--- a/Documentation/hwmon/sysfs-interface
+++ b/Documentation/hwmon/sysfs-interface
@@ -324,6 +324,...
| Oct 9, 4:39 pm 2007 |
| Sam Ravnborg | [PATCH v2] kbuild: save ARCH & CROSS_COMPILE when buildi...
When building a kernel for a different architecture
kbuild requires the user always to specify ARCH and
CROSS_COMPILE on the command-line.
Failing to do so can result in strange build errros especially
when the asm symlink point to anohter architecture than
the one being build.
The typical case is that the user forget to specify
ARCH and/or CROSS_COMPILE on the commandline.
Address the above issues by saving ARCH and CROSS_COMPILE
when building a kernel. The information is saved in a
file named ...
| Oct 9, 3:49 pm 2007 |
| Mark Langsdorf | [PATCH] architectural pstate driver for powernow-k8
This patch should apply cleanly to the 2.6.22.6 kernel. =A0It changes the
powernow-k8 driver code that deals with 3rd generation Opteron, Phenom,
and later processors to match the architectual pstate driver described
in the AMD64 Architecture Programmer's Manual Volume 2 Chapter 18. The
initial implementation of the hardware pstate driver for PowerNow!
used some processor-version specific features, and would not be
maintainable in the long term as the processor features changed.
This architectural d...
| Oct 9, 3:46 pm 2007 |
| Andi Kleen | Re: [PATCH] architectural pstate driver for powernow-k8
Isn't that a little old? The earliest this could be merged
is the upcomming 2.6.24 tree. Best you submit it against .23
That's great. Requiring new powernow drivers all the time was
a little annoying in the past.
-Andi
-
| Oct 9, 4:06 pm 2007 |
| Mark Langsdorf | [PATCH][try 2] architectural pstate driver for powernow-k8
Good point.
This patch should apply cleanly to the 2.6.23-rc8-mm2 kernel. It changes
the powernow-k8 driver code that deals with 3rd generation Opteron, Phenom,
and later processors to match the architectual pstate driver described
in the AMD64 Architecture Programmer's Manual Volume 2 Chapter 18. The
initial implementation of the hardware pstate driver for PowerNow!
used some processor-version specific features, and would not be
maintainable in the long term as the processor features change...
| Oct 9, 4:43 pm 2007 |
| Dave Jones | Re: [PATCH][try 2] architectural pstate driver for powernow-k8
On Tue, Oct 09, 2007 at 03:43:20PM -0500, Mark Langsdorf wrote:
> This patch should apply cleanly to the 2.6.23-rc8-mm2 kernel. It changes
> the powernow-k8 driver code that deals with 3rd generation Opteron, Phenom,
> and later processors to match the architectual pstate driver described
> in the AMD64 Architecture Programmer's Manual Volume 2 Chapter 18. The
> initial implementation of the hardware pstate driver for PowerNow!
> used some processor-version specific featur...
| Oct 9, 7:41 pm 2007 |
| Jeremy Fitzhardinge | [PATCH] xen-netfront: rearrange netfront_info structure to s...
Keep tx and rx elements separate on different cachelines to prevent
bouncing.
Signed-off-by: Jeremy Fitzhardinge <jeremy@xensource.com>
Cc: Stephen Hemminger <shemminger@linux-foundation.org>
Cc: Christoph Hellwig <hch@infradead.org>
---
drivers/net/xen-netfront.c | 37 ++++++++++++++++++-------------------
1 file changed, 18 insertions(+), 19 deletions(-)
===================================================================
--- a/drivers/net/xen-netfront.c
+++ b/drivers/n...
| Oct 9, 2:44 pm 2007 |
| Jeff Garzik | Re: [PATCH] xen-netfront: rearrange netfront_info structure ...
ACK but does not apply to jgarzik/netdev-2.6.git#upstream nor
davem/net-2.6.24.git
-
| Oct 9, 8:46 pm 2007 |
| Jeremy Fitzhardinge | Re: [PATCH] xen-netfront: rearrange netfront_info structure ...
OK, looks like you don't have the other two patches. Will post in a sec.
J
-
| Oct 9, 9:08 pm 2007 |
| Jeremy Fitzhardinge | Re: [PATCH] xen-netfront: rearrange netfront_info structure ...
Oh, OK, I'll have a look. I wasn't aware of any other changes in
xen-netfront. Or rather, there are a couple of other changes which I
think you already have: one to use the common netdev stats structure,
and another to remove a chunk of dead code.
J
-
| Oct 9, 9:03 pm 2007 |
| Jeremy Fitzhardinge | [PATCH RFC REPOST 2/2] paravirt: clean up lazy mode handling
[ I think this is a straight repost this patch, which addresses all the
previous comments. I'd like to submit this for .24 as the basis for a
unified paravirt_ops. Any objections? ]
Currently, the set_lazy_mode pv_op is overloaded with 5 functions:
1. enter lazy cpu mode
2. leave lazy cpu mode
3. enter lazy mmu mode
4. leave lazy mmu mode
5. flush pending batched operations
This complicates each paravirt backend, since it needs to deal with
all the possible state transitions, handling f...
| Oct 9, 2:24 pm 2007 |
| Jeremy Fitzhardinge | [PATCH RFC REPOST 1/2] paravirt: refactor struct paravirt_op...
[ I think this is a straight repost this patch, which addresses all the
previous comments. I'd like to submit this for .24 as the basis for a
unified paravirt_ops. Any objections? ]
This patch refactors the paravirt_ops structure into groups of
functionally related ops:
pv_info - random info, rather than function entrypoints
pv_init_ops - functions used at boot time (some for module_init too)
pv_misc_ops - lazy mode, which didn't fit well anywhere else
pv_time_ops - time-related functions
pv_...
| Oct 9, 2:24 pm 2007 |
| Chris Rankin | [BUG] The return of the sysfs oops
Hi,
Do you remember that oops in sysfs a few versions ago? (Kernel bug 8198) Well, it's baaaack in
2.6.22.9...
Cheers,
Chris
_____________________________________________________
Do not compromise. Get unlimited storage and first rate spam protection with Yahoo! Mail.
http://uk.mail.yahoo.com
| Oct 9, 2:13 pm 2007 |
| Tejun Heo | Re: [BUG] The return of the sysfs oops
This isn't really related to sysfs. It seems module count was too low
and went away while there still were holders. What were you doing when
it happened? Can you reproduce it?
--
tejun
-
| Oct 9, 10:24 pm 2007 |
| Jan Blunck | [patch 09/10] Use struct path in fs_struct
* Use struct path in fs_struct.
Signed-off-by: Andreas Gruenbacher <agruen@suse.de>
Signed-off-by: Jan Blunck <jblunck@suse.de>
Acked-by: Christoph Hellwig <hch@lst.de>
---
fs/dcache.c | 34 ++++++++++++---------------
fs/namei.c | 53 ++++++++++++++++++------------------------
fs/namespace.c | 57 ++++++++++++++++++++--------------------------
fs/proc/base.c | 8 +++---
include/linux/fs_struct.h | 6 +---
init/do_...
| Oct 9, 2:05 pm 2007 |
| Jan Blunck | [patch 05/10] Embed a struct path into struct nameidata inst...
Switch from nd->{dentry,mnt} to nd->path.{dentry,mnt} everywhere.
Signed-off-by: Jan Blunck <jblunck@suse.de>
Signed-off-by: Andreas Gruenbacher <agruen@suse.de>
Acked-by: Christoph Hellwig <hch@lst.de>
---
arch/alpha/kernel/osf_sys.c | 2
arch/mips/kernel/sysirix.c | 6
arch/parisc/hpux/sys_hpux.c | 2
arch/powerpc/platforms/cell/spufs/inode.c | 18 +-
arch/sparc64/solaris/fs.c | 8
arch/um/dri...
| Oct 9, 2:05 pm 2007 |
| Jan Blunck | [patch 06/10] Introduce path_put()
* Add path_put() functions for releasing a reference to the dentry and
vfsmount of a struct path in the right order
* Switch from path_release(nd) to path_put(&nd->path)
* Rename dput_path() to path_put_conditional()
Signed-off-by: Jan Blunck <jblunck@suse.de>
Signed-off-by: Andreas Gruenbacher <agruen@suse.de>
Acked-by: Christoph Hellwig <hch@lst.de>
---
arch/alpha/kernel/osf_sys.c | 2
arch/mips/kernel/sysirix.c | 6 +-
...
| Oct 9, 2:05 pm 2007 |
| previous day | today | next day |
|---|---|---|
| October 8, 2007 | October 9, 2007 | October 10, 2007 |
| monstr | [PATCH 27/56] microblaze_v2: support for a.out |
| Andrew Morton | Re: Dual-Licensing Linux Kernel with GPL V2 and GPL V3 |
| mdew . | Re: [patch] CFS scheduler, v4 |
| Gabriel C | Re: 2.6.21-mm1 |
git: | |
| Gerrit Renker | [PATCH 27/37] dccp: Integration of dynamic feature activation - part 2 (server side) |
| Willy Tarreau | Re: [PATCH] tcp: splice as many packets as possible at once |
| Linus Torvalds | Re: [GIT]: Networking |
| Jarek Poplawski | [PATCH] pkt_sched: Destroy gen estimators under rtnl_lock(). |
