Don't rely on DIRTY flag to be sure that consumer if open, because
DIRTY flag can be removed in idle process. Use consumer's acw field instead to avoid opening consumer twice.
This commit is contained in:
parent
3db2dc2a14
commit
f84ab9080d
@ -584,7 +584,7 @@ g_mirror_write_metadata(struct g_mirror_disk *disk,
|
||||
/*
|
||||
* Open consumer if it wasn't opened and remember to close it.
|
||||
*/
|
||||
if ((disk->d_flags & G_MIRROR_DISK_FLAG_DIRTY) == 0) {
|
||||
if (cp->acw == 0) {
|
||||
error = g_access(cp, 0, 1, 1);
|
||||
G_MIRROR_DEBUG(2, "Access %s r%dw%de%d = %d",
|
||||
cp->provider->name, 0, 1, 1, error);
|
||||
|
@ -618,7 +618,7 @@ g_raid3_write_metadata(struct g_raid3_disk *disk, struct g_raid3_metadata *md)
|
||||
/*
|
||||
* Open consumer if it wasn't opened and remember to close it.
|
||||
*/
|
||||
if ((disk->d_flags & G_RAID3_DISK_FLAG_DIRTY) == 0) {
|
||||
if (cp->acw == 0) {
|
||||
error = g_access(cp, 0, 1, 1);
|
||||
G_RAID3_DEBUG(2, "Access %s r%dw%de%d = %d", cp->provider->name,
|
||||
0, 1, 1, error);
|
||||
|
Loading…
Reference in New Issue
Block a user