Files
s390-tools/zdump/dfi_s390mv_ext.c
Mikhail Zaslonko 4a223c70f2 zgetdump: Update zgetdump to process the new dump format
Update zgetdump tool to process dumps of the new s390 extended format.

Signed-off-by: Mikhail Zaslonko <zaslonko@linux.ibm.com>
Signed-off-by: Jan Höppner <hoeppner@linux.ibm.com>
2018-05-07 13:42:03 +02:00

31 lines
684 B
C

/*
* zgetdump - Tool for copying and converting System z dumps
*
* S390x multi-volume dump input format
*
* Copyright IBM Corp. 2001, 2018
*
* s390-tools is free software; you can redistribute it and/or modify
* it under the terms of the MIT license. See LICENSE for details.
*/
#include "zgetdump.h"
/*
* Initialize s390 multi-volume input dump format (extedend)
*/
static int dfi_s390mv_ext_init(void)
{
return dfi_s390mv_init_gen(DUMP_EXTENDED);
}
/*
* s390 multi-volume DFI (extedned) operations
*/
struct dfi dfi_s390mv_ext = {
.name = "s390mv_ext",
.init = dfi_s390mv_ext_init,
.info_dump = dfi_s390mv_info,
.feat_bits = DFI_FEAT_COPY | DFI_FEAT_SEEK,
};