linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: "Adam J. Richter" <adam@yggdrasil.com>
To: linux-kernel@vger.kernel.org
Cc: torvalds@transmeta.com
Subject: Patch: linux-2.4.0-test12-pre5/fs/udf/inode.c writepage still had extra parameter
Date: Tue, 5 Dec 2000 03:31:52 -0800	[thread overview]
Message-ID: <20001205033152.A6613@baldur.yggdrasil.com> (raw)

[-- Attachment #1: Type: text/plain, Size: 498 bytes --]


	Apparently, in linux 2.4.0-test12-pre5,
address_space_operations->writepage went from having two parameters
to just one.  fs/udf/inode.c apparently was overlooked in the patch.
Here is the one line change.

-- 
Adam J. Richter     __     ______________   4880 Stevens Creek Blvd, Suite 104
adam@yggdrasil.com     \ /                  San Jose, California 95129-1034
+1 408 261-6630         | g g d r a s i l   United States of America
fax +1 408 261-6631      "Free Software For The Rest Of Us."

[-- Attachment #2: writepage.diffs --]
[-- Type: text/plain, Size: 510 bytes --]

Index: linux/fs/udf/inode.c
===================================================================
RCS file: /usr/src.repository/repository/linux/fs/udf/inode.c,v
retrieving revision 1.22
diff -u -r1.22 inode.c
--- linux/fs/udf/inode.c	2000/12/05 10:21:27	1.22
+++ linux/fs/udf/inode.c	2000/12/05 11:27:54
@@ -202,7 +202,7 @@
 	mark_buffer_dirty(bh);
 	udf_release_data(bh);
 
-	inode->i_data.a_ops->writepage(NULL, page);
+	inode->i_data.a_ops->writepage(page);
 	UnlockPage(page);
 	page_cache_release(page);
 

                 reply	other threads:[~2000-12-05 12:03 UTC|newest]

Thread overview: [no followups] expand[flat|nested]  mbox.gz  Atom feed

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=20001205033152.A6613@baldur.yggdrasil.com \
    --to=adam@yggdrasil.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=torvalds@transmeta.com \
    /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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).