Check for NULL in dmu_free_long_range_impl()

A NULL should never be passed as the dnode_t pointer to the function
dmu_free_long_range_impl().  Regardless, because we have a reported
occurrence of this let's add some error handling to catch this.
Better to report a reasonable error to caller than panic the system.

Signed-off-by: Brian Behlendorf <behlendorf1@llnl.gov>
Issue #3445
This commit is contained in:
Brian Behlendorf 2015-07-24 12:08:53 -07:00
parent 21d41d6806
commit c97d30691c

View File

@ -644,9 +644,13 @@ static int
dmu_free_long_range_impl(objset_t *os, dnode_t *dn, uint64_t offset, dmu_free_long_range_impl(objset_t *os, dnode_t *dn, uint64_t offset,
uint64_t length) uint64_t length)
{ {
uint64_t object_size = (dn->dn_maxblkid + 1) * dn->dn_datablksz; uint64_t object_size;
int err; int err;
if (dn == NULL)
return (SET_ERROR(EINVAL));
object_size = (dn->dn_maxblkid + 1) * dn->dn_datablksz;
if (offset >= object_size) if (offset >= object_size)
return (0); return (0);