blob: d64da18c194dc72da2f5fde2a4cd75e2f73bdff5 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001/* SPDX-License-Identifier: GPL-2.0 */
Ralf Hoppe8f933b12013-04-08 09:52:57 +02002/*
3 * SCLP Event Type (ET) 7 - Diagnostic Test FTP Services, useable on LPAR
4 *
5 * Notice that all functions exported here are not reentrant.
6 * So usage should be exclusive, ensured by the caller (e.g. using a
7 * mutex).
8 *
9 * Copyright IBM Corp. 2013
10 * Author(s): Ralf Hoppe (rhoppe@de.ibm.com)
11 */
12
13#ifndef __SCLP_FTP_H__
14#define __SCLP_FTP_H__
15
16#include "hmcdrv_ftp.h"
17
18int sclp_ftp_startup(void);
19void sclp_ftp_shutdown(void);
20ssize_t sclp_ftp_cmd(const struct hmcdrv_ftp_cmdspec *ftp, size_t *fsize);
21
22#endif /* __SCLP_FTP_H__ */