commit | 0a80c16d1490689b99a5aae57f6438695d4ee283 | [log] [tgz] |
---|---|---|
author | Carlos Maiolino <cem@kernel.org> | Wed Jun 11 15:07:41 2025 +0200 |
committer | Carlos Maiolino <cem@kernel.org> | Wed Jun 11 15:07:41 2025 +0200 |
tree | f12c3ff47be6a6b40ca7854d47cfea2cd06661da | |
parent | 412c8242b93c3a272bcf9c93b1f31793421445fc [diff] |
Prevent context to be freed during recovery This is a hack to avoid a context to be freed while items are being added to the AIL. The issue is that the same transaction can have items that will be added and subsequentially deleted from the ail context, causing the AIL context to be freed before all items are processed. I'm still not sure what's the best way to handle it, so, just hack it until I come up with a better idea.