mirror of
https://github.com/ibm-s390-linux/s390-tools.git
synced 2026-08-05 02:14:52 +00:00
Update 'zgetdump -d' to process the new DASD dump tool installed (single volume or multi-volume). Signed-off-by: Mikhail Zaslonko <zaslonko@linux.ibm.com> Signed-off-by: Jan Höppner <hoeppner@linux.ibm.com>
30 lines
645 B
C
30 lines
645 B
C
/*
|
|
* zgetdump - Tool for copying and converting System z dumps
|
|
*
|
|
* S390x multi-volume DASD dump tool
|
|
*
|
|
* 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 dump tool (extedend) for -d option
|
|
*/
|
|
static int dt_s390mv_ext_init(void)
|
|
{
|
|
return dt_s390mv_init_gen(DUMP_EXTENDED);
|
|
}
|
|
|
|
/*
|
|
* Dump Tool (extedned) operations
|
|
*/
|
|
struct dt dt_s390mv_ext = {
|
|
.desc = "Multi-volume DASD dump tool (extended)",
|
|
.init = dt_s390mv_ext_init,
|
|
.info = dt_s390mv_info,
|
|
};
|