Skip to content

Commit

Permalink
dsl_dir_tempreserve_impl: remove unused deferred variable
Browse files Browse the repository at this point in the history
The following commit moved the users of `unused` into functino
dsl_pool_unreserved_space:

    commit d2734cc
    Author: Serapheim Dimitropoulos <[email protected]>
    Date:   Fri Dec 16 14:11:29 2016 -0800

        OpenZFS 9166 - zfs storage pool checkpoint

Signed-off-by: Christian Schwarz <[email protected]>
  • Loading branch information
cschwarz-nutanix committed Feb 2, 2022
1 parent 73e972a commit de4a1de
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions module/zfs/dsl_dir.c
Original file line number Diff line number Diff line change
Expand Up @@ -1322,7 +1322,6 @@ dsl_dir_tempreserve_impl(dsl_dir_t *dd, uint64_t asize, boolean_t netfree,
* we're very close to full, this will allow a steady trickle of
* removes to get through.
*/
uint64_t deferred = 0;
if (dd->dd_parent == NULL) {
uint64_t avail = dsl_pool_unreserved_space(dd->dd_pool,
(netfree) ?
Expand All @@ -1342,7 +1341,7 @@ dsl_dir_tempreserve_impl(dsl_dir_t *dd, uint64_t asize, boolean_t netfree,
*/
if (used_on_disk + est_inflight >= quota) {
if (est_inflight > 0 || used_on_disk < quota ||
(retval == ENOSPC && used_on_disk < quota + deferred))
(retval == ENOSPC && used_on_disk < quota))
retval = ERESTART;
dprintf_dd(dd, "failing: used=%lluK inflight = %lluK "
"quota=%lluK tr=%lluK err=%d\n",
Expand Down

0 comments on commit de4a1de

Please sign in to comment.