bc2a13136a
BCMSAI 4.3.0.10, 6.5.21 SDK release with enhancements and fixes for vxlan, TD3 MMU, TD4-X9 EA support, etc.
48 lines
1.2 KiB
C
48 lines
1.2 KiB
C
/*! \file ngknet_procfs.h
|
|
*
|
|
* Procfs-related definitions and APIs for NGKNET module.
|
|
*
|
|
*/
|
|
/*
|
|
* $Copyright: Copyright 2018-2020 Broadcom. All rights reserved.
|
|
* The term 'Broadcom' refers to Broadcom Inc. and/or its subsidiaries.
|
|
*
|
|
* This program is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU General Public License
|
|
* version 2 as published by the Free Software Foundation.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* A copy of the GNU General Public License version 2 (GPLv2) can
|
|
* be found in the LICENSES folder.$
|
|
*/
|
|
|
|
#ifndef NGKNET_PROCFS_H
|
|
#define NGKNET_PROCFS_H
|
|
|
|
/*!
|
|
* \brief Initialize procfs for KNET driver.
|
|
*
|
|
* Create procfs read/write interfaces.
|
|
*
|
|
* \return 0 if no errors, otherwise -1.
|
|
*/
|
|
extern int
|
|
ngknet_procfs_init(void);
|
|
|
|
/*!
|
|
* \brief Clean up procfs for KNET driver.
|
|
*
|
|
* Clean up resources allocated by \ref ngknet_procfs_init.
|
|
*
|
|
* \return 0 if no errors, otherwise -1.
|
|
*/
|
|
extern int
|
|
ngknet_procfs_cleanup(void);
|
|
|
|
#endif /* NGKNET_PROCFS_H */
|
|
|