On 01/07/2014 02:12 AM, Laszlo Ersek wrote:
@@ -726,6 +726,34 @@ static int write_end_flat_header(int fd)
>return 0;
>}
>
> +static int write_buffer(int fd, bool flag_flatten, off_t offset, void *buf,
> +size_t size)
> +{
You might have wanted to const-qual
On 01/05/14 08:27, Qiao Nuohan wrote:
> Function is used to write vmcore. If flag_flatten is specified, flatten format
> will be used. In flatten format, data is written block by block in vmcore.
> struct MakedumpfileDataHeader is used to indicate the offset and size of a
> data
> block.
>
> stru