search for: 355,14

Displaying 13 results from an estimated 13 matches for "355,14".

Did you mean: 35,14
2014 Nov 05
2
[PATCH] Use -ltinfo instead of -lncurses.
...7 @@ OCAMLCLIBS = \ -L../src/.libs -lutils \ -L../gnulib/lib/.libs -lgnu \ -pthread -lpthread \ - -lncurses -lcrypt + -ltinfo -lcrypt if HAVE_OCAMLOPT virt-builder: $(OBJECTS) diff --git a/configure.ac b/configure.ac index 3165e96..8916ebd 100644 --- a/configure.ac +++ b/configure.ac @@ -355,14 +355,14 @@ struct sockaddr_un myaddr; dnl tgetent, tputs and UP [sic] are all required. They come from libtinfo dnl which is pulled in as a dependency of libncurses. old_LIBS="$LIBS" -AC_CHECK_LIB([ncurses], [tgetent], [], [ - AC_MSG_ERROR(['ncurses' library not found, o...
2015 Dec 24
0
[PATCH v2] btrfs: Fix logical to physical block address mapping
...nsert to mapping table, ignore multi stripes */ - item.logical = key->offset; - item.length = chunk->length; - item.devid = chunk->stripe.devid; - item.physical = chunk->stripe.offset;/*ignore other stripes */ - insert_map(fs, &item); + insert_map(fs, key, chunk); } } @@ -355,14 +366,18 @@ static void btrfs_read_sys_chunk_array(struct fs_info *fs) static void btrfs_read_chunk_tree(struct fs_info *fs) { struct btrfs_info * const bfs = fs->fs_info; + struct btrfs_disk_key ignore_key; struct btrfs_disk_key search_key; struct btrfs_chunk *chunk; - struct btrfs_ch...
2015 Dec 27
0
[PATCH v3] btrfs: Fix logical to physical block address mapping
...nsert to mapping table, ignore multi stripes */ - item.logical = key->offset; - item.length = chunk->length; - item.devid = chunk->stripe.devid; - item.physical = chunk->stripe.offset;/*ignore other stripes */ - insert_map(fs, &item); + insert_map(fs, key, chunk); } } @@ -355,14 +366,18 @@ static void btrfs_read_sys_chunk_array(struct fs_info *fs) static void btrfs_read_chunk_tree(struct fs_info *fs) { struct btrfs_info * const bfs = fs->fs_info; + struct btrfs_disk_key ignore_key; struct btrfs_disk_key search_key; struct btrfs_chunk *chunk; - struct btrfs_ch...
2015 Dec 24
4
[PATCH] btrfs: Fix logical to physical block address mapping
The current btrfs support did not handled multiple stripes stored in chunk items, hence skipping the physical addresses that were needed to do the mapping. Besides, the chunk tree may contain DEV_ITEM keys which store information on all of the underlying block devices, so we must skip them instead of finishing lookup. The bug was reproduced with btrfs-progs v4.2.2. Cc: Gene Cumm <gene.cumm
2016 Dec 27
1
[PATCH] virtio-crypto: support crypto engine framework
...pto *vcrypto) +{ + u32 i; + + for (i = 0; i < vcrypto->max_data_queues; i++) + if (vcrypto->data_vq[i].engine) + crypto_engine_exit(vcrypto->data_vq[i].engine); +} + static void virtcrypto_del_vqs(struct virtio_crypto *vcrypto) { struct virtio_device *vdev = vcrypto->vdev; @@ -355,14 +398,21 @@ static int virtcrypto_probe(struct virtio_device *vdev) dev_err(&vdev->dev, "Failed to initialize vqs.\n"); goto free_dev; } + + err = virtcrypto_start_crypto_engines(vcrypto); + if (err) + goto free_vqs; + virtio_device_ready(vdev); err = virtcrypto_up...
2016 Dec 27
1
[PATCH] virtio-crypto: support crypto engine framework
...pto *vcrypto) +{ + u32 i; + + for (i = 0; i < vcrypto->max_data_queues; i++) + if (vcrypto->data_vq[i].engine) + crypto_engine_exit(vcrypto->data_vq[i].engine); +} + static void virtcrypto_del_vqs(struct virtio_crypto *vcrypto) { struct virtio_device *vdev = vcrypto->vdev; @@ -355,14 +398,21 @@ static int virtcrypto_probe(struct virtio_device *vdev) dev_err(&vdev->dev, "Failed to initialize vqs.\n"); goto free_dev; } + + err = virtcrypto_start_crypto_engines(vcrypto); + if (err) + goto free_vqs; + virtio_device_ready(vdev); err = virtcrypto_up...
2018 Jan 09
0
[PATCH v21 2/5 RESEND] virtio-balloon: VIRTIO_BALLOON_F_SG
...ne array worth at a time. */ - num = min(num, ARRAY_SIZE(vb->pfns)); + /* Traditionally, we can only do one array worth at a time. */ + if (!use_sg) + num = min(num, ARRAY_SIZE(vb->pfns)); mutex_lock(&vb->balloon_lock); /* We can't release more pages than taken */ @@ -223,7 +355,14 @@ static unsigned leak_balloon(struct virtio_balloon *vb, size_t num) page = balloon_page_dequeue(vb_dev_info); if (!page) break; - set_page_pfns(vb, vb->pfns + vb->num_pfns, page); + if (use_sg) { + if (xb_set_page(vb, page, &pfn_min, &pfn_max) < 0) { + balloo...
2009 Jul 15
0
[PATCH] Make Perl strings translatable
...20,7 @@ elsif ($output eq "perl") { # YAML output elsif ($output eq "yaml") { - die "virt-inspector: no YAML support\n" + die __"virt-inspector: no YAML support\n" unless exists $INC{"YAML/Any.pm"}; print Dump(%$oses); @@ -354,13 +355,13 @@ sub output_text_os print $os->{version}, " " if exists $os->{version}; print "on ", $os->{root_device}, ":\n"; - print " Mountpoints:\n"; + print __" Mountpoints:\n"; my $mounts = $os->{mounts}; foreac...
2018 Jan 09
6
[PATCH v21 0/5] Virtio-balloon Enhancement
This patch series enhances the existing virtio-balloon with the following new features: 1) fast ballooning: transfer ballooned pages between the guest and host in chunks using sgs, instead of one array each time; and 2) free page block reporting: a new virtqueue to report guest free pages to the host. The second feature can be used to accelerate live migration of VMs. Here are some details: Live
2015 Apr 07
18
[PATCH v15 00/15] qspinlock: a 4-byte queue spinlock with PV support
...Jobs per Jobs/min/ Std_dev Std_dev JTI Forked Time SysTime UTime Minute Child Time Percent 1 2.15 0.36 1.19 2818.60 2818.60 0.00 0.00 100 17 6.29 42.41 22.43 16378.38 963.43 0.27 4.43 95 33 56.24 1611.77 47.04 3555.83 107.75 1.58 2.88 97 49 120.88 5576.87 63.54 2456.49 50.13 1.75 1.47 98 65 199.17 12328.42 81.27 1977.71 30.43 2.42 1.23 98 81 270.89 20943.99 103.99 1812.03 22.37 3.85 1.44 98 97 315.31 29211.63 121.30...
2015 Apr 07
18
[PATCH v15 00/15] qspinlock: a 4-byte queue spinlock with PV support
...Jobs per Jobs/min/ Std_dev Std_dev JTI Forked Time SysTime UTime Minute Child Time Percent 1 2.15 0.36 1.19 2818.60 2818.60 0.00 0.00 100 17 6.29 42.41 22.43 16378.38 963.43 0.27 4.43 95 33 56.24 1611.77 47.04 3555.83 107.75 1.58 2.88 97 49 120.88 5576.87 63.54 2456.49 50.13 1.75 1.47 98 65 199.17 12328.42 81.27 1977.71 30.43 2.42 1.23 98 81 270.89 20943.99 103.99 1812.03 22.37 3.85 1.44 98 97 315.31 29211.63 121.30...
2015 Apr 24
16
[PATCH v16 00/14] qspinlock: a 4-byte queue spinlock with PV support
...Jobs per Jobs/min/ Std_dev Std_dev JTI Forked Time SysTime UTime Minute Child Time Percent 1 2.15 0.36 1.19 2818.60 2818.60 0.00 0.00 100 17 6.29 42.41 22.43 16378.38 963.43 0.27 4.43 95 33 56.24 1611.77 47.04 3555.83 107.75 1.58 2.88 97 49 120.88 5576.87 63.54 2456.49 50.13 1.75 1.47 98 65 199.17 12328.42 81.27 1977.71 30.43 2.42 1.23 98 81 270.89 20943.99 103.99 1812.03 22.37 3.85 1.44 98 97 315.31 29211.63 121.30...
2015 Apr 24
16
[PATCH v16 00/14] qspinlock: a 4-byte queue spinlock with PV support
...Jobs per Jobs/min/ Std_dev Std_dev JTI Forked Time SysTime UTime Minute Child Time Percent 1 2.15 0.36 1.19 2818.60 2818.60 0.00 0.00 100 17 6.29 42.41 22.43 16378.38 963.43 0.27 4.43 95 33 56.24 1611.77 47.04 3555.83 107.75 1.58 2.88 97 49 120.88 5576.87 63.54 2456.49 50.13 1.75 1.47 98 65 199.17 12328.42 81.27 1977.71 30.43 2.42 1.23 98 81 270.89 20943.99 103.99 1812.03 22.37 3.85 1.44 98 97 315.31 29211.63 121.30...