From 7b4de4e037bca8ea9cf99b8a77ab8db594cb9fb3 Mon Sep 17 00:00:00 2001 From: Markus Pilman Date: Thu, 25 Mar 2021 14:00:07 -0600 Subject: [PATCH] Revert change --- fdbrpc/AsyncFileNonDurable.actor.h | 47 +++++++----------------------- 1 file changed, 11 insertions(+), 36 deletions(-) diff --git a/fdbrpc/AsyncFileNonDurable.actor.h b/fdbrpc/AsyncFileNonDurable.actor.h index ef686271c5..cc341ea155 100644 --- a/fdbrpc/AsyncFileNonDurable.actor.h +++ b/fdbrpc/AsyncFileNonDurable.actor.h @@ -276,27 +276,20 @@ public: state std::string filename = self->filename; wait(g_simulator.onMachine(currentProcess)); - try { - Promise startSyncPromise = self->startSyncPromise; - self->startSyncPromise = Promise(); - startSyncPromise.send(true); + Promise startSyncPromise = self->startSyncPromise; + self->startSyncPromise = Promise(); + startSyncPromise.send(true); - std::vector> outstandingModifications; + std::vector> outstandingModifications; - for (auto itr = self->pendingModifications.ranges().begin(); - itr != self->pendingModifications.ranges().end(); - ++itr) - if (itr->value().isValid() && !itr->value().isReady()) - outstandingModifications.push_back(itr->value()); + for (auto itr = self->pendingModifications.ranges().begin(); itr != self->pendingModifications.ranges().end(); + ++itr) + if (itr->value().isValid() && !itr->value().isReady()) + outstandingModifications.push_back(itr->value()); - // Ignore errors here so that all modifications can finish - wait(waitForAllReady(outstandingModifications)); - wait(g_simulator.onProcess(currentProcess, currentTaskID)); - } catch (Error& e) { - state Error err = e; - wait(g_simulator.onProcess(currentProcess, currentTaskID)); - throw err; - } + // Ignore errors here so that all modifications can finish + wait(waitForAllReady(outstandingModifications)); + wait(g_simulator.onProcess(currentProcess, currentTaskID)); } void addref() override { ReferenceCounted::addref(); } @@ -310,24 +303,6 @@ public: } else if (isSoleOwner()) { // isSoleOwner is a bit confusing here. What we mean is that the openFiles map is the sole owner. If we // remove the file from the map to make sure it gets closed. - bool hasPendingModifications = false; - for (auto iter = pendingModifications.ranges().begin(); iter != pendingModifications.ranges().end(); - ++iter) { - if (iter->value().isValid() && !iter->value().isReady()) { - hasPendingModifications = true; - break; - } - } - if (hasPendingModifications) { - // If we still have pending references we won't close the file and instead wait for them. But while we - // wait for those to complete, another actor might open the file. So we call into an actor that will - // hold a refernce until all pending operations are complete. If someone opens this file before this - // completes, nothing will happen. Otherwise we will enter delref again but this time - // hasPendingModifications will evalualte to false. - addref(); - waitOnOutstandingModifications(Reference(this)); - return; - } auto& openFiles = g_simulator.getCurrentProcess()->machine->openFiles; auto iter = openFiles.find(filename); // the file could've been renamed (DiskQueue does that for example). In that case the file won't be in the