From: William Lee Irwin III <wli@holomorphy.com>
To: Andrew Morton <akpm@digeo.com>
Cc: linux-kernel@vger.kernel.org, linux-mm@kvack.org
Subject: Re: 2.5.69-mm1
Date: Mon, 5 May 2003 14:01:51 -0700 [thread overview]
Message-ID: <20030505210151.GO8978@holomorphy.com> (raw)
In-Reply-To: <20030504231650.75881288.akpm@digeo.com>
On Sun, May 04, 2003 at 11:16:50PM -0700, Andrew Morton wrote:
> ftp://ftp.kernel.org/pub/linux/kernel/people/akpm/patches/2.5/2.5.69/2.5.69-mm1/
> Various random fixups, cleanps and speedups. Mainly a resync to 2.5.69.
fs/file_table.c: In function `fget_light':
fs/file_table.c:209: warning: passing arg 1 of `_raw_read_lock' from incompatible pointer type
diff -urpN mm1-2.5.69-1/fs/file_table.c mm1-2.5.69-2/fs/file_table.c
--- mm1-2.5.69-1/fs/file_table.c 2003-05-05 13:32:43.000000000 -0700
+++ mm1-2.5.69-2/fs/file_table.c 2003-05-05 13:38:39.000000000 -0700
@@ -206,13 +206,13 @@ struct file *fget_light(unsigned int fd,
if (likely((atomic_read(&files->count) == 1))) {
file = fcheck(fd);
} else {
- read_lock(&files->file_lock);
+ spin_lock(&files->file_lock);
file = fcheck(fd);
if (file) {
get_file(file);
*fput_needed = 1;
}
- read_unlock(&files->file_lock);
+ spin_unlock(&files->file_lock);
}
return file;
}
WARNING: multiple messages have this Message-ID (diff)
From: William Lee Irwin III <wli@holomorphy.com>
To: Andrew Morton <akpm@digeo.com>
Cc: linux-kernel@vger.kernel.org, linux-mm@kvack.org
Subject: Re: 2.5.69-mm1
Date: Mon, 5 May 2003 14:01:51 -0700 [thread overview]
Message-ID: <20030505210151.GO8978@holomorphy.com> (raw)
In-Reply-To: <20030504231650.75881288.akpm@digeo.com>
On Sun, May 04, 2003 at 11:16:50PM -0700, Andrew Morton wrote:
> ftp://ftp.kernel.org/pub/linux/kernel/people/akpm/patches/2.5/2.5.69/2.5.69-mm1/
> Various random fixups, cleanps and speedups. Mainly a resync to 2.5.69.
fs/file_table.c: In function `fget_light':
fs/file_table.c:209: warning: passing arg 1 of `_raw_read_lock' from incompatible pointer type
diff -urpN mm1-2.5.69-1/fs/file_table.c mm1-2.5.69-2/fs/file_table.c
--- mm1-2.5.69-1/fs/file_table.c 2003-05-05 13:32:43.000000000 -0700
+++ mm1-2.5.69-2/fs/file_table.c 2003-05-05 13:38:39.000000000 -0700
@@ -206,13 +206,13 @@ struct file *fget_light(unsigned int fd,
if (likely((atomic_read(&files->count) == 1))) {
file = fcheck(fd);
} else {
- read_lock(&files->file_lock);
+ spin_lock(&files->file_lock);
file = fcheck(fd);
if (file) {
get_file(file);
*fput_needed = 1;
}
- read_unlock(&files->file_lock);
+ spin_unlock(&files->file_lock);
}
return file;
}
--
To unsubscribe, send a message with 'unsubscribe linux-mm' in
the body to majordomo@kvack.org. For more info on Linux MM,
see: http://www.linux-mm.org/ .
Don't email: <a href=mailto:"aart@kvack.org"> aart@kvack.org </a>
next prev parent reply other threads:[~2003-05-05 20:49 UTC|newest]
Thread overview: 28+ messages / expand[flat|nested] mbox.gz Atom feed top
2003-05-05 6:16 2.5.69-mm1 Andrew Morton
2003-05-05 6:16 ` 2.5.69-mm1 Andrew Morton
2003-05-05 15:32 ` 2.5.69-mm1 Andrei Ivanov
2003-05-05 16:45 ` 2.5.69-mm1 Greg KH
2003-05-06 9:49 ` 2.5.69-mm1 Andrei Ivanov
2003-05-05 18:44 ` 2.5.69-mm1 Andrew Morton
2003-05-05 21:01 ` William Lee Irwin III [this message]
2003-05-05 21:01 ` 2.5.69-mm1 William Lee Irwin III
2003-05-06 11:09 ` 2.5.69-mm1 Dipankar Sarma
2003-05-06 11:09 ` 2.5.69-mm1 Dipankar Sarma
2003-05-06 12:02 ` 2.5.69-mm1 David S. Miller
2003-05-06 12:02 ` 2.5.69-mm1 David S. Miller
2003-05-06 15:25 ` 2.5.69-mm1 Dipankar Sarma
2003-05-06 15:25 ` 2.5.69-mm1 Dipankar Sarma
2003-05-06 14:20 ` 2.5.69-mm1 David S. Miller
2003-05-06 14:20 ` 2.5.69-mm1 David S. Miller
2003-05-06 15:47 ` 2.5.69-mm1 Dipankar Sarma
2003-05-06 15:47 ` 2.5.69-mm1 Dipankar Sarma
2003-05-05 21:02 ` 2.5.69-mm1 William Lee Irwin III
2003-05-05 21:02 ` 2.5.69-mm1 William Lee Irwin III
2003-05-06 14:33 ` 2.5.69-mm1 Steven Cole
2003-05-06 14:33 ` 2.5.69-mm1 Steven Cole
2003-05-06 15:33 ` 2.5.69-mm1 Andrew Morton
2003-05-06 15:33 ` 2.5.69-mm1 Andrew Morton
2003-05-06 15:36 ` 2.5.69-mm1 Eric W. Biederman
2003-05-06 15:36 ` 2.5.69-mm1 Eric W. Biederman
2003-05-06 16:35 ` 2.5.69-mm1 Steven Cole
2003-05-06 16:35 ` 2.5.69-mm1 Steven Cole
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20030505210151.GO8978@holomorphy.com \
--to=wli@holomorphy.com \
--cc=akpm@digeo.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-mm@kvack.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.