From: Paul Mackerras <paulus@samba.org>
To: "Dale Farnsworth" <Dale.Farnsworth@mvista.com>
Cc: linuxppc-dev@lists.linuxppc.org
Subject: Re: __copy_tofrom_user fails on unaligned read faults
Date: Sat, 23 Nov 2002 12:03:36 +1100 [thread overview]
Message-ID: <15838.54248.574661.759367@argo.ozlabs.ibm.com> (raw)
In-Reply-To: <20021121231855.GF6090@cuzco.az.mvista.com>
Dale Farnsworth writes:
> copy_from_user is supposed to transfer as much data as is
> valid and then to return the number of bytes not tranferred.
> That's how it works on x86. On ppc it can be as much as 15
> bytes short.
>
> I initially saw the problem with the mount system call. Here's
> a partial strace:
I've always disliked the way that the mount system call does that.
However, we just have to deal with it, I guess.
IMO you are right in thinking that we need to try to copy bytes one at
a time after we get a read fault. I think I would do the extra byte
copy loop inline after the 99: label instead of jumping back the way
you do. Could you try this patch, please?
Paul.
diff -urN linuxppc_2_4_devel/arch/ppc/lib/string.S pmac/arch/ppc/lib/string.S
--- linuxppc_2_4_devel/arch/ppc/lib/string.S 2002-08-13 21:52:53.000000000 +1000
+++ pmac/arch/ppc/lib/string.S 2002-11-23 12:01:31.000000000 +1100
@@ -567,10 +567,19 @@
*/
99: mfctr r0
slw r3,r0,r3
- add r3,r3,r5
+ add. r3,r3,r5
+ beq 120f /* shouldn't happen */
cmpwi 0,r4,0
bne 120f
-/* for read fault, clear out the destination: r3 bytes starting at 4(r6) */
+/* for a read fault, first try to continue the copy one byte at a time */
+ mtctr r3
+130: lbz r0,4(r4)
+131: stb r0,4(r6)
+ addi r4,r4,1
+ addi r6,r6,1
+ bdnz 130b
+/* then clear out the destination: r3 bytes starting at 4(r6) */
+132: mfctr r3
srwi. r0,r3,2
li r9,0
mtctr r0
@@ -591,6 +600,8 @@
.long 31b,109b
.long 40b,110b
.long 41b,111b
+ .long 130b,132b
+ .long 131b,120b
.long 112b,120b
.long 114b,120b
.text
** Sent via the linuxppc-dev mail list. See http://lists.linuxppc.org/
next prev parent reply other threads:[~2002-11-23 1:03 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2002-11-21 21:50 __copy_tofrom_user fails on unaligned read faults Dale Farnsworth
2002-11-21 22:07 ` Dan Malek
2002-11-21 22:12 ` Dale Farnsworth
2002-11-21 22:27 ` Dan Malek
2002-11-21 23:18 ` Dale Farnsworth
2002-11-23 1:03 ` Paul Mackerras [this message]
2002-11-24 2:25 ` Dale Farnsworth
2002-11-25 18:30 ` Dale Farnsworth
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=15838.54248.574661.759367@argo.ozlabs.ibm.com \
--to=paulus@samba.org \
--cc=Dale.Farnsworth@mvista.com \
--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).