Displaying 20 results from an estimated 1000 matches similar to: "[PATCH v3 0/2] add btrfs_balance_status and btrfs_scrub_status"
2015 Feb 03
2
[PATCH v2 0/2] add btrfs_balance_status and btrfs_scrub_status
changes in v2:
  - add check for the length of lines[]
  - the code parsing 'btrfs scrub -R status' output is changed into a loop 
Hu Tao (2):
  New API: btrfs_balance_status
  New API: btfs_scrub_status.
 daemon/btrfs.c                           | 263 +++++++++++++++++++++++++++++++
 generator/actions.ml                     |  26 +++
 generator/structs.ml                     |  34 ++++
2015 Feb 13
3
[PATCH v4 0/2] add btrfs_balance_status and btrfs_scrub_status
v4:
  - add reply_with_error when nlines < 1
  - remove `i == X' tests.
v3:
  - rebase on upstream
  - fix some comments
v2:
  - add check for the length of lines[]
  - the code parsing 'btrfs scrub -R status' output is changed into a loop
Hu Tao (2):
  New API: btrfs_balance_status
  New API: btfs_scrub_status
 daemon/btrfs.c                           | 268
2015 Feb 15
4
[PATCH v5 0/2] add btrfs_balance_status and btrfs_scrub_status
v5:
  - fix tests failure
v4:
  - add reply_with_error when nlines < 1
  - remove `i == X' tests.
v3:
  - rebase on upstream
  - fix some comments
v2:
  - add check for the length of lines[]
  - the code parsing 'btrfs scrub -R status' output is changed into a loop
Hu Tao (2):
  New API: btrfs_balance_status
  New API: btfs_scrub_status
 daemon/btrfs.c                         
2015 Feb 02
5
[PATCH 1/2] New API: btrfs_balance_status
Signed-off-by: Hu Tao <hutao at cn.fujitsu.com>
---
These two patches are refactored to parse the output info structures.
 daemon/btrfs.c                           | 109 +++++++++++++++++++++++++++++++
 generator/actions.ml                     |  10 +++
 generator/structs.ml                     |  12 ++++
 gobject/Makefile.inc                     |   2 +
 java/Makefile.inc                 
2014 Dec 02
21
[PATCH 0/8] btrfs support part2: qgroup commands
Hi,
This series adds support to btrfs qgroup related commands, inclduing
quota commands, and two leftover of subvolume commands.
Regards,
Hu
Hu Tao (8):
  New API: btrfs_subvolume_get_default
  New API: btrfs_subvolume_show
  New API: btrfs_quota_enable
  New API: btrfs_quota_disable
  New API: btrfs_quota_rescan
  New API: btrfs_qgroup_limit
  New API: btrfs_qgroup_create
  New API:
2014 Dec 12
15
[PATCH v3 00/11] btrfs support part2: qgroup/quota commands
Hi,
This is v3 series to add support to btrfs qgroup related commands, inclduing
quota commands, and two leftover of subvolume commands.
Regards,
Hu
changes:
v3:
  - don't intialize fs_buf (patch 1)
  - check the return value of sysroot_path (patch 1)
  - check fs_buf rather than fs (patch 1)
  - fprintf (stderr,...)  ->  reply_with_error()
v2:
  - add tests for new APIs
  - combine
2014 Dec 11
14
[PATCH v2 00/11] btrfs support part2: qgroup/quota commands
Hi,
This is v2 series to add support to btrfs qgroup related commands, inclduing
quota commands, and two leftover of subvolume commands.
Regards,
Hu
changes:
v2:
  - add tests for new APIs
  - combine btrfs_quota_enable and btrfs_quota_disable
  - following APIs changed to operate on Mountable_or_Path:
    btrfs_subvolume_get_default, btrfs_quota_enable, btrfs_quota_rescan.
Hu Tao (11):
 
2015 Feb 02
0
[PATCH 2/2] New API: btfs_scrub_status.
Signed-off-by: Hu Tao <hutao at cn.fujitsu.com>
---
 daemon/btrfs.c                           | 142 +++++++++++++++++++++++++++++++
 generator/actions.ml                     |  16 ++++
 generator/structs.ml                     |  22 +++++
 gobject/Makefile.inc                     |   2 +
 java/Makefile.inc                        |   1 +
 java/com/redhat/et/libguestfs/.gitignore |   1 +
2015 Feb 11
0
[PATCH v3 2/2] New API: btfs_scrub_status
From: Hu Tao <hutao@cn.fujitsu.com>
Signed-off-by: Hu Tao <hutao@cn.fujitsu.com>
Signed-off-by: Chen Hanxiao <chenhanxiao@cn.fujitsu.com>
---
 daemon/btrfs.c                           | 140 +++++++++++++++++++++++++++++++
 generator/actions.ml                     |  16 ++++
 generator/structs.ml                     |  22 +++++
 gobject/Makefile.inc                     |   2 +
2015 Feb 11
0
[PATCH v3 1/2] New API: btrfs_balance_status
From: Hu Tao <hutao@cn.fujitsu.com>
Signed-off-by: Hu Tao <hutao@cn.fujitsu.com>
Signed-off-by: Chen Hanxiao <chenhanxiao@cn.fujitsu.com>
---
 daemon/btrfs.c                           | 123 +++++++++++++++++++++++++++++++
 generator/actions.ml                     |  10 +++
 generator/structs.ml                     |  12 +++
 gobject/Makefile.inc                     |   2 +
2015 Feb 13
0
[PATCH v4 1/2] New API: btrfs_balance_status
From: Hu Tao <hutao@cn.fujitsu.com>
Signed-off-by: Hu Tao <hutao@cn.fujitsu.com>
Signed-off-by: Chen Hanxiao <chenhanxiao@cn.fujitsu.com>
---
 daemon/btrfs.c                           | 126 +++++++++++++++++++++++++++++++
 generator/actions.ml                     |  10 +++
 generator/structs.ml                     |  12 +++
 gobject/Makefile.inc                     |   2 +
2015 Feb 13
1
Re: [PATCH v4 1/2] New API: btrfs_balance_status
On Fri, Feb 13, 2015 at 06:06:54PM +0800, Chen Hanxiao wrote:
> From: Hu Tao <hutao@cn.fujitsu.com>
> 
> Signed-off-by: Hu Tao <hutao@cn.fujitsu.com>
> Signed-off-by: Chen Hanxiao <chenhanxiao@cn.fujitsu.com>
> ---
>  daemon/btrfs.c                           | 126 +++++++++++++++++++++++++++++++
>  generator/actions.ml                     |  10 +++
> 
2012 Jul 16
2
[PATCH V4] NEW API: add new api xfs_info
Add xfs_info to show the geometry of the xfs filesystem.
Signed-off-by: Wanlong Gao <gaowanlong at cn.fujitsu.com>
---
Hi Rich,
I got an odd error, can you help me with this error
or give me a debug method?
Thanks,
Wanlong Gao
 daemon/Makefile.am                       |   1 +
 daemon/xfs.c                             | 278 +++++++++++++++++++++++++++++++
 generator/generator_actions.ml 
2014 Dec 05
0
[PATCH 09/11] New API: btrfs_qgroup_show
btrfs_qgroup_show shows all qgroups on a btrfs filesystem.
Signed-off-by: Hu Tao <hutao@cn.fujitsu.com>
---
 daemon/btrfs.c                           | 88 ++++++++++++++++++++++++++++++++
 generator/actions.ml                     | 10 ++++
 generator/structs.ml                     | 10 ++++
 gobject/Makefile.inc                     |  2 +
 java/Makefile.inc                        |  1 +
2012 Nov 01
2
[PATCH 0/2] New inspect_list_applications2 API
Here's the new API method and update to virt-inspector.  I still need
to implement app_arch for debian and windows (if applicable), for now
they just return empty strings.
2012 Nov 01
4
[PATCH v2 0/3] New inspect_list_applications2 API
Here's the new API method and update to virt-inspector.  I still need
to implement app_arch for debian and windows (if applicable), for now
they just return empty strings.
New in v2: incorporated feedback from v1, also added patch #3 which
updates the documentation where it references the deprecated API.
Take it or leave it.
2012 Oct 30
7
[PATCH v2 0/7] Add symbol versioning (now working).
This rather more complex patch series adds symbol versioning (7/7
shows it in action).  This works for me, tested by running old and new
virt-inspector binaries against the new library.
Rich.
2016 Apr 05
1
Re: [PATCH v3 1/5] generator: Added tsk_dirent struct
On Tuesday 05 April 2016 18:47:28 Matteo Cafasso wrote:
> The tsk_dirent struct contains the information gathered via TSK APIs.
> 
> The struct contains the following fields:
>  * tsk_inode: inode of a file
>  * tsk_type: type of file such as for dirwalk command
>  * tsk_size: file size in bytes
>  * tsk_name: path relative to its disk partition
>  * tsk_allocated: whether
2012 Oct 30
5
[PATCH v3 0/5] Add symbol versioning.
This is a simpler patch series to add symbol versioning.
I have pushed patches 1-3 upstream.
Rich.
2015 Jun 17
6
[PATCH v4 0/3] btrfs: use CLEANUP_FREE_STRING_LIST for list free
As Pino's comment, we should take advantage of
macro CLEANUP_FREE_STRING_LIST
v4: remove some redundant strdup
v3: fix test case failure
v2: properly initialize lines
Chen Hanxiao (3):
  do_btrfs_qgroup_show: fix a bad return value
  do_btrfs_subvolume_list: fix a bad return value
  btrfs: use CLEANUP_FREE_STRING_LIST for list free
 daemon/btrfs.c | 70