summaryrefslogtreecommitdiffstats
path: root/module
diff options
context:
space:
mode:
Diffstat (limited to 'module')
-rw-r--r--module/icp/core/kcf_sched.c6
-rw-r--r--module/zfs/dbuf.c4
2 files changed, 6 insertions, 4 deletions
diff --git a/module/icp/core/kcf_sched.c b/module/icp/core/kcf_sched.c
index 7046495f4..3b4cce4b5 100644
--- a/module/icp/core/kcf_sched.c
+++ b/module/icp/core/kcf_sched.c
@@ -1740,8 +1740,10 @@ kcf_last_req(void *last_req_arg, int status)
ct = (crypto_dual_data_t *)dcrops->dop_ciphertext;
break;
}
- default:
- break;
+ default: {
+ panic("invalid kcf_op_group_t %d", (int)params->rp_opgrp);
+ return;
+ }
}
ct->dd_offset1 = last_req->kr_saveoffset;
ct->dd_len1 = last_req->kr_savelen;
diff --git a/module/zfs/dbuf.c b/module/zfs/dbuf.c
index 2ec41fb51..1d8c0518a 100644
--- a/module/zfs/dbuf.c
+++ b/module/zfs/dbuf.c
@@ -3538,7 +3538,7 @@ dbuf_write_children_ready(zio_t *zio, arc_buf_t *buf, void *vdb)
epbs = dn->dn_phys->dn_indblkshift - SPA_BLKPTRSHIFT;
/* Determine if all our children are holes */
- for (i = 0, bp = db->db.db_data; i < 1 << epbs; i++, bp++) {
+ for (i = 0, bp = db->db.db_data; i < 1ULL << epbs; i++, bp++) {
if (!BP_IS_HOLE(bp))
break;
}
@@ -3547,7 +3547,7 @@ dbuf_write_children_ready(zio_t *zio, arc_buf_t *buf, void *vdb)
* If all the children are holes, then zero them all out so that
* we may get compressed away.
*/
- if (i == 1 << epbs) {
+ if (i == 1ULL << epbs) {
/* didn't find any non-holes */
bzero(db->db.db_data, db->db.db_size);
}