Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add
linstor
storage driver #1621Add
linstor
storage driver #1621Changes from all commits
d40571b
f62f705
f77fa5c
f9d3a55
fb6be04
8f90a2e
126d0ec
c043d29
485283c
9cc1040
09548bd
5273af8
8f93d6f
a86d6c4
0471e14
7da1141
53af2a9
b8b71fa
6d7beb0
93ae977
7fee8e4
b34e65b
2639813
79cad37
638b042
1c85bc8
803afa2
e2b000e
bee4434
b3926a0
12f8874
3a3bf61
4cefc5d
9aef3c8
57371f6
05865f0
714cfd8
7e061ea
5e6edb4
f515ade
038d9c4
1c0fdc0
809c559
File filter
Filter by extension
Conversations
Jump to
There are no files selected for viewing
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I’m seeing a small race condition leading to a double execution of
setupLinstor
:getLinstor
gets called until after thed.linstor == nil
condition is checkedsetupLinstor
gets called beforeerr := d.setupLinstor()
gets calledsetupLinstor
gets called again byerr := d.setupLinstor()
.I’d put a synchronization here…