Blame SOURCES/kvm-block-file-posix-Pass-FD-to-locking-helpers.patch

383d26
From 4667112e87999632688621951ce8c2ec8a0ebb8d Mon Sep 17 00:00:00 2001
383d26
From: Max Reitz <mreitz@redhat.com>
383d26
Date: Mon, 18 Jun 2018 14:53:35 +0200
383d26
Subject: [PATCH 06/57] block/file-posix: Pass FD to locking helpers
383d26
383d26
RH-Author: Max Reitz <mreitz@redhat.com>
383d26
Message-id: <20180618145337.633-2-mreitz@redhat.com>
383d26
Patchwork-id: 80751
383d26
O-Subject: [RHV-7.6 qemu-kvm-rhev PATCH 1/3] block/file-posix: Pass FD to locking helpers
383d26
Bugzilla: 1519144
383d26
RH-Acked-by: Stefan Hajnoczi <stefanha@redhat.com>
383d26
RH-Acked-by: Fam Zheng <famz@redhat.com>
383d26
RH-Acked-by: Miroslav Rezanina <mrezanin@redhat.com>
383d26
383d26
raw_apply_lock_bytes() and raw_check_lock_bytes() currently take a
383d26
BDRVRawState *, but they only use the lock_fd field.  During image
383d26
creation, we do not have a BDRVRawState, but we do have an FD; so if we
383d26
want to reuse the functions there, we should modify them to receive only
383d26
the FD.
383d26
383d26
Signed-off-by: Max Reitz <mreitz@redhat.com>
383d26
Reviewed-by: Fam Zheng <famz@redhat.com>
383d26
Message-id: 20180509215336.31304-2-mreitz@redhat.com
383d26
Signed-off-by: Max Reitz <mreitz@redhat.com>
383d26
(cherry picked from commit d0a96155de099d388f5e1f46277a54bdcfbb0bb2)
383d26
Signed-off-by: Max Reitz <mreitz@redhat.com>
383d26
Signed-off-by: Miroslav Rezanina <mrezanin@redhat.com>
383d26
---
383d26
 block/file-posix.c | 27 ++++++++++++++-------------
383d26
 1 file changed, 14 insertions(+), 13 deletions(-)
383d26
383d26
diff --git a/block/file-posix.c b/block/file-posix.c
383d26
index 3794c00..c98a4a1 100644
383d26
--- a/block/file-posix.c
383d26
+++ b/block/file-posix.c
383d26
@@ -630,7 +630,7 @@ typedef enum {
383d26
  * file; if @unlock == true, also unlock the unneeded bytes.
383d26
  * @shared_perm_lock_bits is the mask of all permissions that are NOT shared.
383d26
  */
383d26
-static int raw_apply_lock_bytes(BDRVRawState *s,
383d26
+static int raw_apply_lock_bytes(int fd,
383d26
                                 uint64_t perm_lock_bits,
383d26
                                 uint64_t shared_perm_lock_bits,
383d26
                                 bool unlock, Error **errp)
383d26
@@ -641,13 +641,13 @@ static int raw_apply_lock_bytes(BDRVRawState *s,
383d26
     PERM_FOREACH(i) {
383d26
         int off = RAW_LOCK_PERM_BASE + i;
383d26
         if (perm_lock_bits & (1ULL << i)) {
383d26
-            ret = qemu_lock_fd(s->lock_fd, off, 1, false);
383d26
+            ret = qemu_lock_fd(fd, off, 1, false);
383d26
             if (ret) {
383d26
                 error_setg(errp, "Failed to lock byte %d", off);
383d26
                 return ret;
383d26
             }
383d26
         } else if (unlock) {
383d26
-            ret = qemu_unlock_fd(s->lock_fd, off, 1);
383d26
+            ret = qemu_unlock_fd(fd, off, 1);
383d26
             if (ret) {
383d26
                 error_setg(errp, "Failed to unlock byte %d", off);
383d26
                 return ret;
383d26
@@ -657,13 +657,13 @@ static int raw_apply_lock_bytes(BDRVRawState *s,
383d26
     PERM_FOREACH(i) {
383d26
         int off = RAW_LOCK_SHARED_BASE + i;
383d26
         if (shared_perm_lock_bits & (1ULL << i)) {
383d26
-            ret = qemu_lock_fd(s->lock_fd, off, 1, false);
383d26
+            ret = qemu_lock_fd(fd, off, 1, false);
383d26
             if (ret) {
383d26
                 error_setg(errp, "Failed to lock byte %d", off);
383d26
                 return ret;
383d26
             }
383d26
         } else if (unlock) {
383d26
-            ret = qemu_unlock_fd(s->lock_fd, off, 1);
383d26
+            ret = qemu_unlock_fd(fd, off, 1);
383d26
             if (ret) {
383d26
                 error_setg(errp, "Failed to unlock byte %d", off);
383d26
                 return ret;
383d26
@@ -674,8 +674,7 @@ static int raw_apply_lock_bytes(BDRVRawState *s,
383d26
 }
383d26
 
383d26
 /* Check "unshared" bytes implied by @perm and ~@shared_perm in the file. */
383d26
-static int raw_check_lock_bytes(BDRVRawState *s,
383d26
-                                uint64_t perm, uint64_t shared_perm,
383d26
+static int raw_check_lock_bytes(int fd, uint64_t perm, uint64_t shared_perm,
383d26
                                 Error **errp)
383d26
 {
383d26
     int ret;
383d26
@@ -685,7 +684,7 @@ static int raw_check_lock_bytes(BDRVRawState *s,
383d26
         int off = RAW_LOCK_SHARED_BASE + i;
383d26
         uint64_t p = 1ULL << i;
383d26
         if (perm & p) {
383d26
-            ret = qemu_lock_fd_test(s->lock_fd, off, 1, true);
383d26
+            ret = qemu_lock_fd_test(fd, off, 1, true);
383d26
             if (ret) {
383d26
                 char *perm_name = bdrv_perm_names(p);
383d26
                 error_setg(errp,
383d26
@@ -702,7 +701,7 @@ static int raw_check_lock_bytes(BDRVRawState *s,
383d26
         int off = RAW_LOCK_PERM_BASE + i;
383d26
         uint64_t p = 1ULL << i;
383d26
         if (!(shared_perm & p)) {
383d26
-            ret = qemu_lock_fd_test(s->lock_fd, off, 1, true);
383d26
+            ret = qemu_lock_fd_test(fd, off, 1, true);
383d26
             if (ret) {
383d26
                 char *perm_name = bdrv_perm_names(p);
383d26
                 error_setg(errp,
383d26
@@ -739,11 +738,11 @@ static int raw_handle_perm_lock(BlockDriverState *bs,
383d26
 
383d26
     switch (op) {
383d26
     case RAW_PL_PREPARE:
383d26
-        ret = raw_apply_lock_bytes(s, s->perm | new_perm,
383d26
+        ret = raw_apply_lock_bytes(s->lock_fd, s->perm | new_perm,
383d26
                                    ~s->shared_perm | ~new_shared,
383d26
                                    false, errp);
383d26
         if (!ret) {
383d26
-            ret = raw_check_lock_bytes(s, new_perm, new_shared, errp);
383d26
+            ret = raw_check_lock_bytes(s->lock_fd, new_perm, new_shared, errp);
383d26
             if (!ret) {
383d26
                 return 0;
383d26
             }
383d26
@@ -751,7 +750,8 @@ static int raw_handle_perm_lock(BlockDriverState *bs,
383d26
         op = RAW_PL_ABORT;
383d26
         /* fall through to unlock bytes. */
383d26
     case RAW_PL_ABORT:
383d26
-        raw_apply_lock_bytes(s, s->perm, ~s->shared_perm, true, &local_err);
383d26
+        raw_apply_lock_bytes(s->lock_fd, s->perm, ~s->shared_perm,
383d26
+                             true, &local_err);
383d26
         if (local_err) {
383d26
             /* Theoretically the above call only unlocks bytes and it cannot
383d26
              * fail. Something weird happened, report it.
383d26
@@ -760,7 +760,8 @@ static int raw_handle_perm_lock(BlockDriverState *bs,
383d26
         }
383d26
         break;
383d26
     case RAW_PL_COMMIT:
383d26
-        raw_apply_lock_bytes(s, new_perm, ~new_shared, true, &local_err);
383d26
+        raw_apply_lock_bytes(s->lock_fd, new_perm, ~new_shared,
383d26
+                             true, &local_err);
383d26
         if (local_err) {
383d26
             /* Theoretically the above call only unlocks bytes and it cannot
383d26
              * fail. Something weird happened, report it.
383d26
-- 
383d26
1.8.3.1
383d26