diff mbox series

[SRU,T,1/6] Revert "UBUNTU: SAUCE: CacheFiles: fix a read_waiter/read_copier race"

Message ID 20180802041850.22961-2-daniel.axtens@canonical.com
State New
Headers show
Series NFS FSCache Fixes: LP: #1774336, #1776277, #1776254 | expand

Commit Message

Daniel Axtens Aug. 2, 2018, 4:18 a.m. UTC
BugLink: https://bugs.launchpad.net/bugs/1774336

Revert 8aa5f7aa51024cd8e211707bf240689200dfe263 in Trusty.
Upstream has taken a different solution, which we're about to apply.

Signed-off-by: Daniel Axtens <daniel.axtens@canonical.com>
---
 fs/cachefiles/rdwr.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff mbox series

Patch

diff --git a/fs/cachefiles/rdwr.c b/fs/cachefiles/rdwr.c
index 24617af9f24a..a1210b0322e0 100644
--- a/fs/cachefiles/rdwr.c
+++ b/fs/cachefiles/rdwr.c
@@ -58,9 +58,9 @@  static int cachefiles_read_waiter(wait_queue_t *wait, unsigned mode,
 
 	spin_lock(&object->work_lock);
 	list_add_tail(&monitor->op_link, &monitor->op->to_do);
-	fscache_enqueue_retrieval(monitor->op);
 	spin_unlock(&object->work_lock);
 
+	fscache_enqueue_retrieval(monitor->op);
 	return 0;
 }