Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
O
oai-upf-6g
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
OpenXG
oai-upf-6g
Commits
aa0200dd
Commit
aa0200dd
authored
Oct 17, 2025
by
Franck Messaoudi
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove: removing non-used file and code
parent
2b6454b3
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
0 additions
and
29 deletions
+0
-29
src/upf_app/bpf/rules/include/interfaces_map.h
src/upf_app/bpf/rules/include/interfaces_map.h
+0
-28
src/upf_app/bpf/rules/qer/qer_maps.h
src/upf_app/bpf/rules/qer/qer_maps.h
+0
-1
No files found.
src/upf_app/bpf/rules/include/interfaces_map.h
deleted
100644 → 0
View file @
2b6454b3
#ifndef __INTERFACES_MAP_H__
#define __INTERFACES_MAP_H__
#include <bpf_helpers.h>
#include <linux/bpf.h>
#include <types.h>
#include "interfaces.h"
#define INTERFACE_ENTRIES_MAX 12
#define MAX_INTERFACES 10
/*---------------------------------------------------------------------------------------------------------------*/
struct
{
__uint
(
type
,
BPF_MAP_TYPE_DEVMAP
);
__uint
(
max_entries
,
MAX_INTERFACES
);
__type
(
key
,
u32
);
// id
__type
(
value
,
u32
);
// tx port
}
m_redirect_interfaces
SEC
(
".maps"
);
/*---------------------------------------------------------------------------------------------------------------*/
struct
{
__uint
(
type
,
BPF_MAP_TYPE_HASH
);
__uint
(
max_entries
,
INTERFACE_ENTRIES_MAX
);
__type
(
key
,
e_reference_point
);
__type
(
value
,
struct
s_interface
);
}
m_upf_interfaces
SEC
(
".maps"
);
#endif // __INTERFACES_MAP_H__
\ No newline at end of file
src/upf_app/bpf/rules/qer/qer_maps.h
View file @
aa0200dd
...
...
@@ -7,7 +7,6 @@
#include "sdf_filter.h"
#include "qos_flow.h"
#define QOS_FLOWS_MAX_ENTRIES 10000
#define MAX_INTERFACES 10
/*---------------------------------------------------------------------------------------------------------------*/
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment