2025-10-13 15:06:23 +08:00
|
|
|
// SPDX-FileCopyrightText: 2025 UnionTech Software Technology Co., Ltd
|
|
|
|
|
//
|
2025-10-14 16:35:33 +08:00
|
|
|
// SPDX-License-Identifier: LGPL-2.1
|
2025-10-13 15:06:23 +08:00
|
|
|
|
2025-09-17 16:39:11 +08:00
|
|
|
#ifndef __SWITCH_COUNT_H__
|
|
|
|
|
#define __SWITCH_COUNT_H__
|
|
|
|
|
|
|
|
|
|
#define TASK_COMM_LEN 16
|
|
|
|
|
#define MAX_SLOTS 26
|
|
|
|
|
|
|
|
|
|
struct hkey
|
|
|
|
|
{
|
|
|
|
|
__u32 pid;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
struct hist
|
|
|
|
|
{
|
|
|
|
|
char comm[TASK_COMM_LEN];
|
|
|
|
|
__u64 count;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
#endif
|