Page Menu
Home
FreeBSD
Search
Configure Global Search
Log In
Files
F167024793
D26361.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Flag For Later
Award Token
Size
946 B
Referenced Files
None
Subscribers
None
D26361.diff
View Options
Index: head/sys/crypto/armv8/armv8_crypto.c
===================================================================
--- head/sys/crypto/armv8/armv8_crypto.c
+++ head/sys/crypto/armv8/armv8_crypto.c
@@ -281,7 +281,7 @@
out:
crp->crp_etype = error;
crypto_done(crp);
- return (error);
+ return (0);
}
static uint8_t *
Index: head/sys/dev/hifn/hifn7751.c
===================================================================
--- head/sys/dev/hifn/hifn7751.c
+++ head/sys/dev/hifn/hifn7751.c
@@ -2517,7 +2517,7 @@
hifnstats.hst_nomem++;
crp->crp_etype = err;
crypto_done(crp);
- return (err);
+ return (0);
}
static void
Index: head/sys/dev/safe/safe.c
===================================================================
--- head/sys/dev/safe/safe.c
+++ head/sys/dev/safe/safe.c
@@ -1259,6 +1259,7 @@
if (err != ERESTART) {
crp->crp_etype = err;
crypto_done(crp);
+ err = 0;
} else {
sc->sc_needwakeup |= CRYPTO_SYMQ;
}
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Wed, Aug 19, 3:52 PM (12 h, 43 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
36943599
Default Alt Text
D26361.diff (946 B)
Attached To
Mode
D26361: Don't return errors from the cryptodev_process() method.
Attached
Detach File
Event Timeline
Log In to Comment