From: Adrian Cox <apc@agelectronics.co.uk>
To: LinuxPPC-Dev <linuxppc-dev@lists.linuxppc.org>
Subject: more /proc/ppc_htab
Date: Thu, 15 Jul 1999 11:21:19 +0100 [thread overview]
Message-ID: <378DB61F.15D77BD6@agelectronics.co.uk> (raw)
In the 2.2.10 kernel (with a Debian userspace), cat /proc/ppc_htab
works, and more /proc/ppc_htab produces a segfault. This fixes it.
- Adrian Cox, AG Electronics
--- linuxppc-2.2.10/arch/ppc/kernel/ppc_htab.c Thu Dec 10 00:24:23 1998
+++ linux/arch/ppc/kernel/ppc_htab.c Thu Jul 15 11:17:40 1999
@@ -253,6 +253,8 @@
return 0;
if (n > strlen(buffer) - *ppos)
n = strlen(buffer) - *ppos;
+ if (n > count)
+ n = count;
copy_to_user(buf, buffer + *ppos, n);
*ppos += n;
return n;
[[ This message was sent via the linuxppc-dev mailing list. Replies are ]]
[[ not forced back to the list, so be sure to Cc linuxppc-dev if your ]]
[[ reply is of general interest. Please check http://lists.linuxppc.org/ ]]
[[ and http://www.linuxppc.org/ for useful information before posting. ]]
reply other threads:[~1999-07-15 10:21 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=378DB61F.15D77BD6@agelectronics.co.uk \
--to=apc@agelectronics.co.uk \
--cc=linuxppc-dev@lists.linuxppc.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 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).