login
Login
/
Register
Search
Search this site:
Forums
News
Blogs
Features
Site
Home
»
Mailing list archives
»
linux-kernel
»
2007
»
October
»
15
Re: 2.6.23-mm1: BUG in reiserfs_delete_xattrs
view
thread
Previous message: [
thread
] [
date
] [
author
]
Next message: [
thread
] [
date
] [
author
]
[view in full thread]
From: Laurent Riffard
Subject:
Re: 2.6.23-mm1: BUG in reiserfs_delete_xattrs
Date: Monday, October 15, 2007 - 12:51 pm
Le 15.10.2007 10:40, Christoph Hellwig a écrit :
quoted text
> On Mon, Oct 15, 2007 at 12:34:58AM +0200, Laurent Riffard wrote: >> reiserfs_delete_xattrs >> reiserfs_delete_inode >> generic_delete_inode >> generic_drop_inode >> iput >> do_unlinkat >> sys_unlink >> sys_enter_past_esp >> >> I reported a similar BUG in 2.6.22-rc8-mm2 (see >>
http://lkml.org/lkml/2007/9/27/235
). Dave Hansen sent a patch for it, I >> tested it and it was OK for 2.6.22-rc8-mm2. >> >> I tried this patch on 2.6.23-mm1, and it fixed the BUGs here too. > > The delete path is a similar case as the one Dave fixed, also cause by > a NULL vfsmount passed to dentry_open, but through a different code-path. > > Untested fix for this problem below:
Does work fine, thanks. Tested-by: Laurent Riffard <laurent.riffard@free.fr>
quoted text
> Index: linux-2.6.23-rc8/fs/reiserfs/xattr.c > =================================================================== > --- linux-2.6.23-rc8.orig/fs/reiserfs/xattr.c 2007-09-30 14:13:46.000000000 +0200 > +++ linux-2.6.23-rc8/fs/reiserfs/xattr.c 2007-09-30 14:18:30.000000000 +0200 > @@ -207,9 +207,8 @@ static struct dentry *get_xa_file_dentry > * we're called with i_mutex held, so there are no worries about the directory > * changing underneath us. > */ > -static int __xattr_readdir(struct file *filp, void *dirent, filldir_t filldir) > +static int __xattr_readdir(struct inode *inode, void *dirent, filldir_t filldir) > { > - struct inode *inode = filp->f_path.dentry->d_inode; > struct cpu_key pos_key; /* key of current position in the directory (key of directory entry) */ > INITIALIZE_PATH(path_to_entry); > struct buffer_head *bh; > @@ -352,24 +351,19 @@ static int __xattr_readdir(struct file * > * this is stolen from vfs_readdir > * > */ > -static > -int xattr_readdir(struct file *file, filldir_t filler, void *buf) > +static int xattr_readdir(struct inode *inode, filldir_t filler, void *buf) > { > - struct inode *inode = file->f_path.dentry->d_inode; > int res = -ENOTDIR; > - if (!file->f_op || !file->f_op->readdir) > - goto out; > + > mutex_lock_nested(&inode->i_mutex, I_MUTEX_XATTR); > -// down(&inode->i_zombie); > res = -ENOENT; > if (!IS_DEADDIR(inode)) { > lock_kernel(); > - res = __xattr_readdir(file, buf, filler); > + res = __xattr_readdir(inode, buf, filler); > unlock_kernel(); > } > -// up(&inode->i_zombie); > mutex_unlock(&inode->i_mutex); > - out: > + > return res; > } > > @@ -721,7 +715,6 @@ reiserfs_delete_xattrs_filler(void *buf, > /* This is called w/ inode->i_mutex downed */ > int reiserfs_delete_xattrs(struct inode *inode) > { > - struct file *fp; > struct dentry *dir, *root; > int err = 0; > > @@ -742,15 +735,8 @@ int reiserfs_delete_xattrs(struct inode > return 0; > } > > - fp = dentry_open(dir, NULL, O_RDWR); > - if (IS_ERR(fp)) { > - err = PTR_ERR(fp); > - /* dentry_open dputs the dentry if it fails */ > - goto out; > - } > - > lock_kernel(); > - err = xattr_readdir(fp, reiserfs_delete_xattrs_filler, dir); > + err = xattr_readdir(dir->d_inode, reiserfs_delete_xattrs_filler, dir); > if (err) { > unlock_kernel(); > goto out_dir; > @@ -770,7 +756,7 @@ int reiserfs_delete_xattrs(struct inode > unlock_kernel(); > > out_dir: > - fput(fp); > + dput(dir); > > out: > if (!err) > @@ -812,7 +798,6 @@ reiserfs_chown_xattrs_filler(void *buf, > > int reiserfs_chown_xattrs(struct inode *inode, struct iattr *attrs) > { > - struct file *fp; > struct dentry *dir; > int err = 0; > struct reiserfs_chown_buf buf; > @@ -836,13 +821,6 @@ int reiserfs_chown_xattrs(struct inode * > goto out; > } > > - fp = dentry_open(dir, NULL, O_RDWR); > - if (IS_ERR(fp)) { > - err = PTR_ERR(fp); > - /* dentry_open dputs the dentry if it fails */ > - goto out; > - } > - > lock_kernel(); > > attrs->ia_valid &= (ATTR_UID | ATTR_GID | ATTR_CTIME); > @@ -850,7 +828,7 @@ int reiserfs_chown_xattrs(struct inode * > buf.attrs = attrs; > buf.inode = inode; > > - err = xattr_readdir(fp, reiserfs_chown_xattrs_filler, &buf); > + err = xattr_readdir(dir->d_inode, reiserfs_chown_xattrs_filler, &buf); > if (err) { > unlock_kernel(); > goto out_dir; > @@ -860,7 +838,7 @@ int reiserfs_chown_xattrs(struct inode * > unlock_kernel(); > > out_dir: > - fput(fp); > + dput(dir); > > out: > attrs->ia_valid = ia_valid; > @@ -1008,7 +986,6 @@ reiserfs_listxattr_filler(void *buf, con > */ > ssize_t reiserfs_listxattr(struct dentry * dentry, char *buffer, size_t size) > { > - struct file *fp; > struct dentry *dir; > int err = 0; > struct reiserfs_listxattr_buf buf; > @@ -1031,13 +1008,6 @@ ssize_t reiserfs_listxattr(struct dentry > goto out; > } > > - fp = dentry_open(dir, NULL, O_RDWR); > - if (IS_ERR(fp)) { > - err = PTR_ERR(fp); > - /* dentry_open dputs the dentry if it fails */ > - goto out; > - } > - > buf.r_buf = buffer; > buf.r_size = buffer ? size : 0; > buf.r_pos = 0; > @@ -1045,7 +1015,7 @@ ssize_t reiserfs_listxattr(struct dentry > > REISERFS_I(dentry->d_inode)->i_flags |= i_has_xattr_dir; > > - err = xattr_readdir(fp, reiserfs_listxattr_filler, &buf); > + err = xattr_readdir(dir->d_inode, reiserfs_listxattr_filler, &buf); > if (err) > goto out_dir; > > @@ -1055,7 +1025,7 @@ ssize_t reiserfs_listxattr(struct dentry > err = buf.r_pos; > > out_dir: > - fput(fp); > + dput(dir); > > out: > reiserfs_read_unlock_xattr_i(dentry->d_inode); >
-
unsubscribe notice
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to
majordomo@vger.kernel.org
More majordomo info at
http://vger.kernel.org/majordomo-info.html
Please read the FAQ at
http://www.tux.org/lkml/
Previous message: [
thread
] [
date
] [
author
]
Next message: [
thread
] [
date
] [
author
]
Messages in current thread:
2.6.23-mm1
, Andrew Morton
, (Thu Oct 11, 9:31 pm)
Re: 2.6.23-mm1
, KAMEZAWA Hiroyuki
, (Thu Oct 11, 10:03 pm)
Re: 2.6.23-mm1
, Andrew Morton
, (Thu Oct 11, 11:42 pm)
Re: 2.6.23-mm1
, Al Viro
, (Thu Oct 11, 11:46 pm)
Re: 2.6.23-mm1
, Cedric Le Goater
, (Thu Oct 11, 11:48 pm)
[PATCH] add missing parenthesis in cfe_writeblk() macro
, Mariusz Kozlowski
, (Thu Oct 11, 11:51 pm)
Re: 2.6.23-mm1
, Andrew Morton
, (Fri Oct 12, 12:13 am)
Re: 2.6.23-mm1
, KAMEZAWA Hiroyuki
, (Fri Oct 12, 12:25 am)
Re: 2.6.23-mm1 - build failure on axonram
, Kamalesh Babulal
, (Fri Oct 12, 12:44 am)
Re: 2.6.23-mm1
, Torsten Kaiser
, (Fri Oct 12, 1:31 am)
Re: 2.6.23-mm1
, Sam Ravnborg
, (Fri Oct 12, 1:36 am)
Re: 2.6.23-mm1
, Andrew Morton
, (Fri Oct 12, 1:37 am)
Build Failure (Was Re: 2.6.23-mm1)
, Dhaval Giani
, (Fri Oct 12, 2:42 am)
Re: 2.6.23-mm1
, Torsten Kaiser
, (Fri Oct 12, 5:46 am)
[PATCH net-2.6] uml: hard_header fix
, Stephen Hemminger
, (Fri Oct 12, 11:06 am)
Re: 2.6.23-mm1
, Al Viro
, (Fri Oct 12, 12:04 pm)
Re: 2.6.23-mm1 thread exit_group issue
, Mathieu Desnoyers
, (Fri Oct 12, 12:47 pm)
Re: 2.6.23-mm1 thread exit_group issue
, Andrew Morton
, (Fri Oct 12, 1:01 pm)
Re: 2.6.23-mm1
, Laurent Riffard
, (Fri Oct 12, 1:38 pm)
Re: 2.6.23-mm1
, Andrew Morton
, (Fri Oct 12, 2:00 pm)
Re: 2.6.23-mm1
, Rafael J. Wysocki
, (Fri Oct 12, 2:32 pm)
Re: 2.6.23-mm1 thread exit_group issue
, Andrew Morton
, (Fri Oct 12, 6:03 pm)
Re: 2.6.23-mm1 - Build failure on rgmii
, Kamalesh Babulal
, (Fri Oct 12, 9:35 pm)
Re: 2.6.23-mm1 - build failure with advansys
, Kamalesh Babulal
, (Fri Oct 12, 9:44 pm)
Re: 2.6.23-mm1 - build failure with advansys
, Andrew Morton
, (Fri Oct 12, 11:52 pm)
Re: 2.6.23-mm1
, Torsten Kaiser
, (Sat Oct 13, 1:01 am)
[PATCH] Reiser4: Drop 'size' argument from bio_endio and b ...
, Laurent Riffard
, (Sat Oct 13, 2:29 am)
Re: [PATCH] Reiser4: Drop 'size' argument from bio_endio a ...
, Jens Axboe
, (Sat Oct 13, 3:10 am)
Re: 2.6.23-mm1
, Jeff Garzik
, (Sat Oct 13, 3:55 am)
Re: 2.6.23-mm1 thread exit_group issue
, Oleg Nesterov
, (Sat Oct 13, 4:48 am)
Re: 2.6.23-mm1 thread exit_group issue
, Oleg Nesterov
, (Sat Oct 13, 5:02 am)
Re: 2.6.23-mm1
, Torsten Kaiser
, (Sat Oct 13, 5:03 am)
Re: 2.6.23-mm1
, Jeff Garzik
, (Sat Oct 13, 5:19 am)
Re: 2.6.23-mm1
, Torsten Kaiser
, (Sat Oct 13, 7:32 am)
Re: 2.6.23-mm1
, Torsten Kaiser
, (Sat Oct 13, 7:40 am)
Re: 2.6.23-mm1
, Torsten Kaiser
, (Sat Oct 13, 8:13 am)
Re: 2.6.23-mm1 pm_prepare() and _finish() w/ args vs. without
, Joseph Fannin
, (Sat Oct 13, 8:50 am)
Re: 2.6.23-mm1
, Gabriel C
, (Sat Oct 13, 10:12 am)
Re: 2.6.23-mm1 pm_prepare() and _finish() w/ args vs. without
, Rafael J. Wysocki
, (Sat Oct 13, 10:22 am)
Re: 2.6.23-mm1
, Jeff Garzik
, (Sat Oct 13, 10:48 am)
Re: 2.6.23-mm1 thread exit_group issue
, Andrew Morton
, (Sat Oct 13, 10:49 am)
Suspend Broken (Re: 2.6.23-mm1)
, Dhaval Giani
, (Sat Oct 13, 10:58 am)
Re: 2.6.23-mm1
, Andrew Morton
, (Sat Oct 13, 11:01 am)
Re: 2.6.23-mm1
, Torsten Kaiser
, (Sat Oct 13, 11:05 am)
Re: 2.6.23-mm1
, Gabriel C
, (Sat Oct 13, 11:08 am)
Re: 2.6.23-mm1
, Andrew Morton
, (Sat Oct 13, 11:18 am)
Re: Suspend Broken (Re: 2.6.23-mm1)
, Rafael J. Wysocki
, (Sat Oct 13, 11:33 am)
Re: 2.6.23-mm1
, Torsten Kaiser
, (Sat Oct 13, 11:35 am)
Re: 2.6.23-mm1 pm_prepare() and _finish() w/ args vs. without
, Joseph Fannin
, (Sat Oct 13, 11:40 am)
Re: 2.6.23-mm1
, Jeff Garzik
, (Sat Oct 13, 11:41 am)
Re: 2.6.23-mm1 pm_prepare() and _finish() w/ args vs. without
, Rafael J. Wysocki
, (Sat Oct 13, 12:13 pm)
[2.6.23-mm1] CONFIG_LOCALVERSION handling broken
, Tilman Schmidt
, (Sat Oct 13, 3:11 pm)
Re: 2.6.23-mm1 thread exit_group issue
, Mathieu Desnoyers
, (Sat Oct 13, 9:04 pm)
Re: Suspend Broken (Re: 2.6.23-mm1)
, Dhaval Giani
, (Sat Oct 13, 9:26 pm)
Re: 2.6.23-mm1
, Torsten Kaiser
, (Sun Oct 14, 4:54 am)
Re: [PATCH] Reiser4: Drop 'size' argument from bio_endio a ...
, Edward Shishkin
, (Sun Oct 14, 6:09 am)
Re: Suspend Broken (Re: 2.6.23-mm1)
, Rafael J. Wysocki
, (Sun Oct 14, 7:19 am)
Re: 2.6.23-mm1
, Andrew Morton
, (Sun Oct 14, 11:39 am)
Re: 2.6.23-mm1
, Torsten Kaiser
, (Sun Oct 14, 12:12 pm)
Re: 2.6.23-mm1
, Andrew Morton
, (Sun Oct 14, 12:26 pm)
Re: 2.6.23-mm1
, Torsten Kaiser
, (Sun Oct 14, 12:40 pm)
Re: 2.6.23-mm1 pm_prepare() and _finish() w/ args vs. without
, Joseph Fannin
, (Sun Oct 14, 12:47 pm)
Re: 2.6.23-mm1 pm_prepare() and _finish() w/ args vs. without
, Rafael J. Wysocki
, (Sun Oct 14, 1:20 pm)
Re: 2.6.23-mm1
, Milan Broz
, (Sun Oct 14, 3:03 pm)
Re: 2.6.23-mm1: BUG in reiserfs_delete_xattrs
, Laurent Riffard
, (Sun Oct 14, 3:34 pm)
[PATCH] Add irq protection in the percpu-counters cpu-hotp ...
, Gautham R Shenoy
, (Sun Oct 14, 11:18 pm)
Re: 2.6.23-mm1
, Jens Axboe
, (Sun Oct 14, 11:50 pm)
Re: 2.6.23-mm1: BUG in reiserfs_delete_xattrs
, Christoph Hellwig
, (Mon Oct 15, 1:40 am)
nfs mmap adventure (was: 2.6.23-mm1)
, Peter Zijlstra
, (Mon Oct 15, 5:28 am)
Re: nfs mmap adventure (was: 2.6.23-mm1)
, David Howells
, (Mon Oct 15, 7:06 am)
Re: nfs mmap adventure (was: 2.6.23-mm1)
, Trond Myklebust
, (Mon Oct 15, 8:43 am)
Re: nfs mmap adventure (was: 2.6.23-mm1)
, Trond Myklebust
, (Mon Oct 15, 8:51 am)
Re: 2.6.23-mm1
, Mark Gross
, (Mon Oct 15, 9:09 am)
Re: 2.6.23-mm1
, Zan Lynx
, (Mon Oct 15, 9:13 am)
Re: 2.6.23-mm1
, Dave Hansen
, (Mon Oct 15, 9:28 am)
Re: nfs mmap adventure (was: 2.6.23-mm1)
, Peter Zijlstra
, (Mon Oct 15, 9:38 am)
Re: 2.6.23-mm1: BUG in reiserfs_delete_xattrs
, Jeff Mahoney
, (Mon Oct 15, 11:31 am)
Re: 2.6.23-mm1: BUG in reiserfs_delete_xattrs
, Laurent Riffard
, (Mon Oct 15, 12:51 pm)
Re: 2.6.23-mm1: BUG in reiserfs_delete_xattrs
, Laurent Riffard
, (Mon Oct 15, 1:06 pm)
Re: 2.6.23-mm1: BUG in reiserfs_delete_xattrs
, Jeff Mahoney
, (Mon Oct 15, 1:23 pm)
Re: 2.6.23-mm1
, Rafael J. Wysocki
, (Mon Oct 15, 1:40 pm)
Re: 2.6.23-mm1 pm_prepare() and _finish() w/ args vs. without
, Rafael J. Wysocki
, (Mon Oct 15, 1:55 pm)
Re: nfs mmap adventure (was: 2.6.23-mm1)
, David Howells
, (Mon Oct 15, 4:27 pm)
Re: nfs mmap adventure (was: 2.6.23-mm1)
, Nick Piggin
, (Mon Oct 15, 6:46 pm)
Re: 2.6.23-mm1 - regression- PowerPC link failure at arch/ ...
, Kamalesh Babulal
, (Tue Oct 16, 12:18 am)
Re: 2.6.23-mm1 - regression- PowerPC link failure at arch/ ...
, Andrew Morton
, (Tue Oct 16, 12:28 am)
Re: 2.6.23-mm1 - regression- PowerPC link failure at arch/ ...
, Kamalesh Babulal
, (Tue Oct 16, 12:44 am)
Re: 2.6.23-mm1 pm_prepare() and _finish() w/ args vs. without
, Joseph Fannin
, (Tue Oct 16, 10:29 am)
Re: 2.6.23-mm1
, Mark Gross
, (Tue Oct 16, 12:58 pm)
Re: 2.6.23-mm1
, Rafael J. Wysocki
, (Tue Oct 16, 1:28 pm)
Re: 2.6.23-mm1
, Mark Gross
, (Tue Oct 16, 4:31 pm)
Re: 2.6.23-mm1
, KAMEZAWA Hiroyuki
, (Wed Oct 17, 12:01 am)
Re: 2.6.23-mm1: BUG in reiserfs_delete_xattrs
, Christoph Hellwig
, (Wed Oct 17, 1:58 am)
Re: 2.6.23-mm1: BUG in reiserfs_delete_xattrs
, Christoph Hellwig
, (Wed Oct 17, 1:59 am)
Re: 2.6.23-mm1
, Andrew Morton
, (Wed Oct 17, 2:02 am)
Re: 2.6.23-mm1
, Jiri Kosina
, (Wed Oct 17, 2:10 am)
Re: 2.6.23-mm1
, KAMEZAWA Hiroyuki
, (Wed Oct 17, 2:36 am)
Re: 2.6.23-mm1
, Jiri Kosina
, (Wed Oct 17, 4:42 am)
Re: 2.6.23-mm1
, KAMEZAWA Hiroyuki
, (Wed Oct 17, 5:33 am)
Re: 2.6.23-mm1: BUG in reiserfs_delete_xattrs
, Jeff Mahoney
, (Wed Oct 17, 7:55 am)
Re: 2.6.23-mm1 - list_add corruption in cgroup
, Cedric Le Goater
, (Wed Oct 17, 8:54 am)
[PATCH] static initialization and blocking notification fo ...
, Mark Gross
, (Wed Oct 17, 10:21 am)
Re: [2.6.23-mm1] CONFIG_LOCALVERSION handling broken
, Sam Ravnborg
, (Wed Oct 17, 1:27 pm)
[PATCH] static initialization with blocking notifiers. wa ...
, Mark Gross
, (Wed Oct 17, 2:15 pm)
Re: [2.6.23-mm1] CONFIG_LOCALVERSION handling broken
, Tilman Schmidt
, (Wed Oct 17, 4:06 pm)
Re: 2.6.23-mm1 - build failure with advansys
, Paul Mackerras
, (Wed Oct 17, 5:07 pm)
Re: 2.6.23-mm1 - build failure with advansys
, Matthew Wilcox
, (Wed Oct 17, 6:48 pm)
Re: 2.6.23-mm1 - powerpc - Build fails at arch/powerpc/boo ...
, Kamalesh Babulal
, (Thu Oct 18, 5:06 am)
Re: 2.6.23-mm1 - powerpc - Build fails at arch/powerpc/boo ...
, Paul Mackerras
, (Thu Oct 18, 5:23 am)
Re: 2.6.23-mm1 - powerpc - Build fails at arch/powerpc/boo ...
, Kamalesh Babulal
, (Thu Oct 18, 6:20 am)
Re: 2.6.23-mm1 - list_add corruption in cgroup
, Paul Menage
, (Thu Oct 18, 8:56 am)
PIE randomization (was Re: 2.6.23-mm1)
, Jiri Kosina
, (Fri Oct 19, 2:07 am)
Re: 2.6.23-mm1
, Jiri Kosina
, (Fri Oct 19, 2:54 pm)
Re: 2.6.23-mm1 - list_add corruption in cgroup
, Paul Menage
, (Fri Oct 19, 3:11 pm)
oops in lbmIODone, fails to boot [Re: 2.6.23-mm1]
, Mattia Dongili
, (Fri Oct 19, 9:57 pm)
Re: 2.6.23-mm1 - autofs broken
, Rik van Riel
, (Fri Oct 19, 10:13 pm)
Re: oops in lbmIODone, fails to boot [Re: 2.6.23-mm1]
, Andrew Morton
, (Fri Oct 19, 10:34 pm)
Re: 2.6.23-mm1 - autofs broken
, Andrew Morton
, (Fri Oct 19, 10:39 pm)
Re: 2.6.23-mm1 - autofs broken
, Rik van Riel
, (Fri Oct 19, 10:54 pm)
Re: 2.6.23-mm1 - autofs broken
, Rik van Riel
, (Fri Oct 19, 10:54 pm)
Re: oops in lbmIODone, fails to boot [Re: 2.6.23-mm1]
, Dave Kleikamp
, (Sat Oct 20, 5:18 am)
Re: 2.6.23-mm1 - autofs broken
, Rik van Riel
, (Sat Oct 20, 7:56 am)
Re: oops in lbmIODone, fails to boot [Re: 2.6.23-mm1]
, Mattia Dongili
, (Sat Oct 20, 10:44 pm)
mysqld prevents s2ram [Re: 2.6.23-mm1]
, Mattia Dongili
, (Sat Oct 20, 10:58 pm)
Re: mysqld prevents s2ram [Re: 2.6.23-mm1]
, Mattia Dongili
, (Sat Oct 20, 11:28 pm)
Re: 2.6.23-mm1 - regression- PowerPC link failure at arch/ ...
, Kamalesh Babulal
, (Sat Oct 20, 11:42 pm)
Re: mysqld prevents s2ram [Re: 2.6.23-mm1]
, Pavel Machek
, (Sun Oct 21, 2:58 am)
Re: mysqld prevents s2ram [Re: 2.6.23-mm1]
, Rafael J. Wysocki
, (Sun Oct 21, 4:53 am)
Re: 2.6.23-mm1 - autofs broken
, Ian Kent
, (Sun Oct 21, 8:45 pm)
Re: 2.6.23-mm1 - autofs broken
, Rik van Riel
, (Mon Oct 22, 9:46 am)
kernel panic when running tcpdump
, Mariusz Kozlowski
, (Mon Oct 22, 11:40 am)
Re: kernel panic when running tcpdump
, Andrew Morton
, (Mon Oct 22, 12:03 pm)
Re: kernel panic when running tcpdump
, Mariusz Kozlowski
, (Mon Oct 22, 2:16 pm)
Re: 2.6.23-mm1 - autofs broken
, Dave Hansen
, (Mon Oct 22, 3:03 pm)
Re: 2.6.23-mm1 - regression- PowerPC link failure at arch/ ...
, Stephen Rothwell
, (Fri Oct 26, 10:05 pm)
Re: [2.6.23-mm1] CONFIG_LOCALVERSION handling broken
, Tilman Schmidt
, (Sat Oct 27, 8:19 am)
Re: [2.6.23-mm1] CONFIG_LOCALVERSION handling broken
, Sam Ravnborg
, (Sat Oct 27, 8:28 am)
Navigation
Mailing list archives
Recent posts
Popular discussions
linux-kernel
:
Greg Kroah-Hartman
[PATCH 041/196] kobject: add kobject_init_and_add function
Lukas Hejtmanek
Re: Another libata error related to OCZ SSD
Greg Kroah-Hartman
[PATCH 023/196] MCP_UCB1200: Convert from class_device to device
Florian Fainelli
Re: System clock runs too fast after 2.6.27 -> 2.6.28.1 upgrade
Christoph Lameter
[patch 1/4] mmu_notifier: Core code
git
:
Johannes Schindelin
Re: [PATCH 1/2] Add strbuf_initf()
John Bito
[EGIT] Push to GitHub caused corruption
Jakub Narebski
Re: [PATCH 0/2] gitweb: patch view
Junio C Hamano
Re: [PATCH] When a remote is added but not fetched, tell the user.
Andy Parkins
Re: [RFC] Submodules in GIT
git-commits-head
:
Linux Kernel Mailing List
ahci: Workaround HW bug for SB600/700 SATA controller PMP support
Linux Kernel Mailing List
V4L/DVB (11086): au0828: rename macro for currently non-function VBI support
Linux Kernel Mailing List
ceph: client types
Linux Kernel Mailing List
ceph: on-wire types
Linux Kernel Mailing List
crypto: chainiv - Use kcrypto_wq instead of keventd_wq
linux-netdev
:
Andrew Morton
Re: [Bugme-new] [Bug 14969] New: b44: WOL does not work in suspended state
Giuseppe CAVALLARO
Re: [PATCH 03/13] stmmac: add the new Header file for stmmac platform data
Taku Izumi
[PATCH 3/3] ixgbe: add registers etc. printout code just before resetting adapters
Eric Dumazet
rps: some comments
Thomas Gleixner
Re: [RFC PATCH 02/12] On Tue, 23 Sep 2008, David Miller wrote:
openbsd-misc
:
Stephan Andreas
problems with login after xlock in OpenBSD release 4.7
pmc
Make A Change. Alcoholism and Drug Addiction Treatment
ropers
Re: what exactly is enc0?
Fuad NAHDI
Re: What does your environment look like?
Matthew Szudzik
Typo on OpenBSD 4.4 CD Set
Colocation donated by:
Syndicate