mirror of
https://git.proxmox.com/git/mirror_zfs.git
synced 2024-11-17 10:01:01 +03:00
Fix assertion in Persistent L2ARC
At the end of l2arc_evict() fix an assertion in the case that l2ad_hand + distance == l2ad_end. Reviewed-by: Brian Behlendorf <behlendorf1@llnl.gov> Signed-off-by: George Amanakis <gamanakis@gmail.com> Closes #16202 Closes #16207
This commit is contained in:
parent
d0aa9dbccf
commit
8865dfbcaa
@ -8886,7 +8886,7 @@ out:
|
||||
* assertions may be violated without functional consequences
|
||||
* as the device is about to be removed.
|
||||
*/
|
||||
ASSERT3U(dev->l2ad_hand + distance, <, dev->l2ad_end);
|
||||
ASSERT3U(dev->l2ad_hand + distance, <=, dev->l2ad_end);
|
||||
if (!dev->l2ad_first)
|
||||
ASSERT3U(dev->l2ad_hand, <=, dev->l2ad_evict);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user