Displaying 1 result from an estimated 1 matches for "cpy_err_mesg".
2006 Sep 18
1
Re: dumpcore changes -- [Xen-changelog] [xen-unstable] In this patch, the xc_domain_dumpcore_via_callback() in xc_core.c of
...7,6 +43,12 @@ xc_domain_dumpcore_via_callback(int xc_h
>      char dummy[PAGE_SIZE];
>      int dummy_len;
>      int sts;
> +    unsigned int cpy_err_cnt = 0;
> +    struct dump_args *da = args;
> +    int fd = da->fd;
> +    int incomp_fd = da->incomp_fd;
> +    char cpy_err_mesg[64];
> +    int mesg_bytes;
>
>      if ( (dump_mem_start = malloc(DUMP_INCREMENT*PAGE_SIZE)) == NULL )
>      {
> @@ -73,11 +85,11 @@ xc_domain_dumpcore_via_callback(int xc_h
>                   (nr_pages * sizeof(xen_pfn_t)));
>      header.xch_pages_offset = round_pgup(dummy...