linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Alexander Viro <viro@math.psu.edu>
To: Linus Torvalds <torvalds@transmeta.com>
Cc: linux-kernel@vger.kernel.org
Subject: [PATCH] (1/6) alpha fixes
Date: Fri, 19 Apr 2002 00:45:41 -0400 (EDT)	[thread overview]
Message-ID: <Pine.GSO.4.21.0204190037400.20383-100000@weyl.math.psu.edu> (raw)

	Contents:
1)	bogus return value type for ->open() and ->release() on nfsd
(generic, caught on alpha since there ssize_t != int)

2)	missing defines/fields/includes for alpha (accumulated since 2.5.0)

3)	s/p_pptr/parent/, s/p_opptr/real_parent/ done for alpha

4)	(dumb) default_idle() provided (alpha)

5)	alpha/mm/init.c forgot to set max_pfn

6)	fixed off-by-PAGE_OFFSET in populate_pmd() (alpha, again)

	With that patchset the thing builds, boots and seems to be working
(on AS200).

diff -urN C8/fs/nfsd/nfsctl.c C8-nfsctl/fs/nfsd/nfsctl.c
--- C8/fs/nfsd/nfsctl.c	Sun Apr 14 17:53:09 2002
+++ C8-nfsctl/fs/nfsd/nfsctl.c	Thu Apr 18 23:21:29 2002
@@ -98,13 +98,13 @@
 	return size;
 }
 
-static ssize_t TA_open(struct inode *inode, struct file *file)
+static int TA_open(struct inode *inode, struct file *file)
 {
 	file->private_data = NULL;
 	return 0;
 }
 
-static ssize_t TA_release(struct inode *inode, struct file *file)
+static int TA_release(struct inode *inode, struct file *file)
 {
 	void *p = file->private_data;
 	file->private_data = NULL;


             reply	other threads:[~2002-04-19  4:45 UTC|newest]

Thread overview: 7+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2002-04-19  4:45 Alexander Viro [this message]
2002-04-19  4:46 ` [PATCH] (2/6) alpha fixes Alexander Viro
2002-04-19  4:46   ` [PATCH] (3/6) " Alexander Viro
2002-04-19  4:47     ` [PATCH] (4/6) " Alexander Viro
2002-04-19  4:47       ` [PATCH] (5/6) " Alexander Viro
2002-04-19  4:48         ` [PATCH] (6/6) " Alexander Viro
2002-04-19  9:23         ` [PATCH] (5/6) " Oliver Pitzeier

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=Pine.GSO.4.21.0204190037400.20383-100000@weyl.math.psu.edu \
    --to=viro@math.psu.edu \
    --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).