From: Predrag Ivanovic <predivan@ptt.yu>
To: linux kernel mailing list <linux-kernel@vger.kernel.org>
Subject: Two .rej files when patching from 2.6.8.1 to 2.6.9-rc1
Date: Thu, 26 Aug 2004 01:31:36 +0000 [thread overview]
Message-ID: <20040826013136.72bd1906.predivan@ptt.yu> (raw)
Hi.
There are two .rej files when I patch 2.6.8.1 to 2.6.9-rc1
(I ran 'make mrproper' when I unpacked 2.6.8.1 tarball).
These are :
linux-2.6.9-rc1/Makefile.rej
-------------------------------------------
***************
*** 1,7 ****
VERSION = 2
PATCHLEVEL = 6
- SUBLEVEL = 8
- EXTRAVERSION =
NAME=Zonked Quokka
# *DOCUMENTATION*
--- 1,7 ----
VERSION = 2
PATCHLEVEL = 6
+ SUBLEVEL = 9
+ EXTRAVERSION = -rc1
NAME=Zonked Quokka
# *DOCUMENTATION*
-------------------------------------------
and linux-2.6.9-rc1/fs/nfs/file.c.rej.
------------------------------------------------
***************
*** 72,78 ****
static int nfs_check_flags(int flags)
{
- if (flags & (O_APPEND | O_DIRECT))
return -EINVAL;
return 0;
--- 74,80 ----
static int nfs_check_flags(int flags)
{
+ if ((flags & (O_APPEND | O_DIRECT)) == (O_APPEND | O_DIRECT))
return -EINVAL;
return 0;
***************
*** 89,95 ****
int res;
res = nfs_check_flags(filp->f_flags);
- if (!res)
return res;
lock_kernel();
--- 91,97 ----
int res;
res = nfs_check_flags(filp->f_flags);
+ if (res)
return res;
lock_kernel();
------------------------------------------------------------
HTH.
Pedja
LGOEG
--
Give a man a match, and he'll be warm for a minute, but
set him on fire, and he'll be warm for the rest of his life.
next reply other threads:[~2004-08-25 23:32 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2004-08-26 1:31 Predrag Ivanovic [this message]
2004-08-25 23:41 ` Two .rej files when patching from 2.6.8.1 to 2.6.9-rc1 Felipe Alfaro Solana
2004-08-25 23:50 ` David S. Miller
2004-08-26 17:52 ` Predrag Ivanovic
2004-08-25 23:58 ` Dominik Karall
2004-08-26 0:51 ` Daniel Andersen
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=20040826013136.72bd1906.predivan@ptt.yu \
--to=predivan@ptt.yu \
--cc=linux-kernel@vger.kernel.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.