qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PULL] Block patches for 2.2.0-rc3
@ 2014-11-24 14:01 Kevin Wolf
  2014-11-24 14:01 ` [Qemu-devel] [PULL] Revert "qemu-img info: show nocow info" Kevin Wolf
  2014-11-24 17:07 ` [Qemu-devel] [PULL] Block patches for 2.2.0-rc3 Peter Maydell
  0 siblings, 2 replies; 3+ messages in thread
From: Kevin Wolf @ 2014-11-24 14:01 UTC (permalink / raw)
  To: qemu-devel; +Cc: kwolf

The following changes since commit 0e88f478508b566152c6681f4889ed9830a2c0a5:

  Merge remote-tracking branch 'remotes/stefanha/tags/net-pull-request' into staging (2014-11-21 14:15:37 +0000)

are available in the git repository at:


  git://repo.or.cz/qemu/kevin.git tags/for-upstream

for you to fetch changes up to 24bf10dac389942b58f0d24e96590c927251b3d6:

  Revert "qemu-img info: show nocow info" (2014-11-24 13:52:10 +0100)

----------------------------------------------------------------
Block patches for 2.2.0-rc3

----------------------------------------------------------------
Kevin Wolf (1):
      Revert "qemu-img info: show nocow info"

 block/qapi.c         | 26 --------------------------
 qapi/block-core.json |  5 +----
 2 files changed, 1 insertion(+), 30 deletions(-)

^ permalink raw reply	[flat|nested] 3+ messages in thread

* [Qemu-devel] [PULL] Revert "qemu-img info: show nocow info"
  2014-11-24 14:01 [Qemu-devel] [PULL] Block patches for 2.2.0-rc3 Kevin Wolf
@ 2014-11-24 14:01 ` Kevin Wolf
  2014-11-24 17:07 ` [Qemu-devel] [PULL] Block patches for 2.2.0-rc3 Peter Maydell
  1 sibling, 0 replies; 3+ messages in thread
From: Kevin Wolf @ 2014-11-24 14:01 UTC (permalink / raw)
  To: qemu-devel; +Cc: kwolf

This reverts commit 000c4dfff4d7686e2fba3066a477a1290ed60622.

The main reason for reverting this commit before the 2.2 release is that
it adds a QAPI interface that we don't want to keep: The 'nocow' flag
doesn't generally make sense for block nodes, but only for the raw-posix
driver. It should therefore be part of ImageInfoSpecific rather than
ImageInfo.

The commit contains more problems, but unlike the API stability issue
they wouldn't justify reverting it.

Conflicts:
	block/qapi.c

Signed-off-by: Kevin Wolf <kwolf@redhat.com>
Reviewed-by: Eric Blake <eblake@redhat.com>
Reviewed-by: Stefan Hajnoczi <stefanha@redhat.com>
---
 block/qapi.c         | 26 --------------------------
 qapi/block-core.json |  5 +----
 2 files changed, 1 insertion(+), 30 deletions(-)

diff --git a/block/qapi.c b/block/qapi.c
index 1301144..a87a34a 100644
--- a/block/qapi.c
+++ b/block/qapi.c
@@ -29,13 +29,6 @@
 #include "qapi/qmp-output-visitor.h"
 #include "qapi/qmp/types.h"
 #include "sysemu/block-backend.h"
-#ifdef __linux__
-#include <linux/fs.h>
-#include <sys/ioctl.h>
-#ifndef FS_NOCOW_FL
-#define FS_NOCOW_FL                     0x00800000 /* Do not cow file */
-#endif
-#endif
 
 BlockDeviceInfo *bdrv_block_device_info(BlockDriverState *bs)
 {
@@ -180,9 +173,6 @@ void bdrv_query_image_info(BlockDriverState *bs,
     int ret;
     Error *err = NULL;
     ImageInfo *info;
-#ifdef __linux__
-    int fd, attr;
-#endif
 
     size = bdrv_getlength(bs);
     if (size < 0) {
@@ -212,18 +202,6 @@ void bdrv_query_image_info(BlockDriverState *bs,
     info->format_specific     = bdrv_get_specific_info(bs);
     info->has_format_specific = info->format_specific != NULL;
 
-#ifdef __linux__
-    /* get NOCOW info */
-    fd = qemu_open(bs->filename, O_RDONLY | O_NONBLOCK);
-    if (fd >= 0) {
-        if (ioctl(fd, FS_IOC_GETFLAGS, &attr) == 0 && (attr & FS_NOCOW_FL)) {
-            info->has_nocow = true;
-            info->nocow = true;
-        }
-        qemu_close(fd);
-    }
-#endif
-
     backing_filename = bs->backing_file;
     if (backing_filename[0] != '\0') {
         info->backing_filename = g_strdup(backing_filename);
@@ -655,8 +633,4 @@ void bdrv_image_info_dump(fprintf_function func_fprintf, void *f,
         func_fprintf(f, "Format specific information:\n");
         bdrv_image_info_specific_dump(func_fprintf, f, info->format_specific);
     }
-
-    if (info->has_nocow && info->nocow) {
-        func_fprintf(f, "NOCOW flag: set\n");
-    }
 }
diff --git a/qapi/block-core.json b/qapi/block-core.json
index 8c3e45d..a14e6ab 100644
--- a/qapi/block-core.json
+++ b/qapi/block-core.json
@@ -119,8 +119,6 @@
 # @format-specific: #optional structure supplying additional format-specific
 # information (since 1.7)
 #
-# @nocow: #optional info of whether NOCOW flag is set or not. (since 2.2)
-#
 # Since: 1.3
 #
 ##
@@ -132,8 +130,7 @@
            '*backing-filename': 'str', '*full-backing-filename': 'str',
            '*backing-filename-format': 'str', '*snapshots': ['SnapshotInfo'],
            '*backing-image': 'ImageInfo',
-           '*format-specific': 'ImageInfoSpecific',
-           '*nocow': 'bool' } }
+           '*format-specific': 'ImageInfoSpecific' } }
 
 ##
 # @ImageCheck:
-- 
1.8.3.1

^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [Qemu-devel] [PULL] Block patches for 2.2.0-rc3
  2014-11-24 14:01 [Qemu-devel] [PULL] Block patches for 2.2.0-rc3 Kevin Wolf
  2014-11-24 14:01 ` [Qemu-devel] [PULL] Revert "qemu-img info: show nocow info" Kevin Wolf
@ 2014-11-24 17:07 ` Peter Maydell
  1 sibling, 0 replies; 3+ messages in thread
From: Peter Maydell @ 2014-11-24 17:07 UTC (permalink / raw)
  To: Kevin Wolf; +Cc: QEMU Developers

On 24 November 2014 at 14:01, Kevin Wolf <kwolf@redhat.com> wrote:
> The following changes since commit 0e88f478508b566152c6681f4889ed9830a2c0a5:
>
>   Merge remote-tracking branch 'remotes/stefanha/tags/net-pull-request' into staging (2014-11-21 14:15:37 +0000)
>
> are available in the git repository at:
>
>
>   git://repo.or.cz/qemu/kevin.git tags/for-upstream
>
> for you to fetch changes up to 24bf10dac389942b58f0d24e96590c927251b3d6:
>
>   Revert "qemu-img info: show nocow info" (2014-11-24 13:52:10 +0100)
>
> ----------------------------------------------------------------
> Block patches for 2.2.0-rc3
>
> ----------------------------------------------------------------

Applied, thanks.

-- PMM

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2014-11-24 17:08 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-11-24 14:01 [Qemu-devel] [PULL] Block patches for 2.2.0-rc3 Kevin Wolf
2014-11-24 14:01 ` [Qemu-devel] [PULL] Revert "qemu-img info: show nocow info" Kevin Wolf
2014-11-24 17:07 ` [Qemu-devel] [PULL] Block patches for 2.2.0-rc3 Peter Maydell

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).