mirror of
https://git.proxmox.com/git/mirror_iproute2
synced 2025-10-04 19:29:30 +00:00
tc/pedit: make functions static
The parse and pack functions are only used by the pedit routines. Signed-off-by: Stephen Hemminger <stephen@networkplumber.org>
This commit is contained in:
parent
3f7bd0fd90
commit
7527b221d6
27
tc/m_pedit.c
27
tc/m_pedit.c
@ -118,7 +118,7 @@ noexist:
|
||||
return p;
|
||||
}
|
||||
|
||||
int pack_key(struct m_pedit_sel *_sel, struct m_pedit_key *tkey)
|
||||
static int pack_key(struct m_pedit_sel *_sel, struct m_pedit_key *tkey)
|
||||
{
|
||||
struct tc_pedit_sel *sel = &_sel->sel;
|
||||
struct m_pedit_key_ex *keys_ex = _sel->keys_ex;
|
||||
@ -155,7 +155,7 @@ int pack_key(struct m_pedit_sel *_sel, struct m_pedit_key *tkey)
|
||||
return 0;
|
||||
}
|
||||
|
||||
int pack_key32(__u32 retain, struct m_pedit_sel *sel,
|
||||
static int pack_key32(__u32 retain, struct m_pedit_sel *sel,
|
||||
struct m_pedit_key *tkey)
|
||||
{
|
||||
if (tkey->off > (tkey->off & ~3)) {
|
||||
@ -169,7 +169,7 @@ int pack_key32(__u32 retain, struct m_pedit_sel *sel,
|
||||
return pack_key(sel, tkey);
|
||||
}
|
||||
|
||||
int pack_key16(__u32 retain, struct m_pedit_sel *sel,
|
||||
static int pack_key16(__u32 retain, struct m_pedit_sel *sel,
|
||||
struct m_pedit_key *tkey)
|
||||
{
|
||||
int ind, stride;
|
||||
@ -197,10 +197,10 @@ int pack_key16(__u32 retain, struct m_pedit_sel *sel,
|
||||
printf("pack_key16: Final val %08x mask %08x\n",
|
||||
tkey->val, tkey->mask);
|
||||
return pack_key(sel, tkey);
|
||||
|
||||
}
|
||||
|
||||
int pack_key8(__u32 retain, struct m_pedit_sel *sel, struct m_pedit_key *tkey)
|
||||
static int pack_key8(__u32 retain, struct m_pedit_sel *sel,
|
||||
struct m_pedit_key *tkey)
|
||||
{
|
||||
int ind, stride;
|
||||
__u32 m[4] = { 0x00FFFFFF, 0xFF00FFFF, 0xFFFF00FF, 0xFFFFFF00 };
|
||||
@ -283,7 +283,7 @@ static int pack_ipv6(struct m_pedit_sel *sel, struct m_pedit_key *tkey,
|
||||
return 0;
|
||||
}
|
||||
|
||||
int parse_val(int *argc_p, char ***argv_p, __u32 *val, int type)
|
||||
static int parse_val(int *argc_p, char ***argv_p, __u32 *val, int type)
|
||||
{
|
||||
int argc = *argc_p;
|
||||
char **argv = *argv_p;
|
||||
@ -433,7 +433,7 @@ done:
|
||||
|
||||
}
|
||||
|
||||
int parse_offset(int *argc_p, char ***argv_p, struct m_pedit_sel *sel,
|
||||
static int parse_offset(int *argc_p, char ***argv_p, struct m_pedit_sel *sel,
|
||||
struct m_pedit_key *tkey)
|
||||
{
|
||||
int off;
|
||||
@ -612,8 +612,8 @@ static int pedit_keys_ex_addattr(struct m_pedit_sel *sel, struct nlmsghdr *n)
|
||||
return 0;
|
||||
}
|
||||
|
||||
int parse_pedit(struct action_util *a, int *argc_p, char ***argv_p, int tca_id,
|
||||
struct nlmsghdr *n)
|
||||
static int parse_pedit(struct action_util *a, int *argc_p, char ***argv_p,
|
||||
int tca_id, struct nlmsghdr *n)
|
||||
{
|
||||
struct m_pedit_sel sel = {};
|
||||
|
||||
@ -705,7 +705,7 @@ int parse_pedit(struct action_util *a, int *argc_p, char ***argv_p, int tca_id,
|
||||
return 0;
|
||||
}
|
||||
|
||||
const char *pedit_htype_str[] = {
|
||||
static const char * const pedit_htype_str[] = {
|
||||
[TCA_PEDIT_KEY_EX_HDR_TYPE_NETWORK] = "",
|
||||
[TCA_PEDIT_KEY_EX_HDR_TYPE_ETH] = "eth",
|
||||
[TCA_PEDIT_KEY_EX_HDR_TYPE_IP4] = "ipv4",
|
||||
@ -730,7 +730,7 @@ static void print_pedit_location(FILE *f,
|
||||
fprintf(f, "%c%d", (int)off >= 0 ? '+' : '-', abs((int)off));
|
||||
}
|
||||
|
||||
int print_pedit(struct action_util *au, FILE *f, struct rtattr *arg)
|
||||
static int print_pedit(struct action_util *au, FILE *f, struct rtattr *arg)
|
||||
{
|
||||
struct tc_pedit_sel *sel;
|
||||
struct rtattr *tb[TCA_PEDIT_MAX + 1];
|
||||
@ -826,11 +826,6 @@ int print_pedit(struct action_util *au, FILE *f, struct rtattr *arg)
|
||||
return 0;
|
||||
}
|
||||
|
||||
int pedit_print_xstats(struct action_util *au, FILE *f, struct rtattr *xstats)
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
|
||||
struct action_util pedit_action_util = {
|
||||
.id = "pedit",
|
||||
.parse_aopt = parse_pedit,
|
||||
|
15
tc/m_pedit.h
15
tc/m_pedit.h
@ -71,22 +71,7 @@ struct m_pedit_util {
|
||||
struct m_pedit_key *tkey);
|
||||
};
|
||||
|
||||
int pack_key(struct m_pedit_sel *sel, struct m_pedit_key *tkey);
|
||||
int pack_key32(__u32 retain, struct m_pedit_sel *sel,
|
||||
struct m_pedit_key *tkey);
|
||||
int pack_key16(__u32 retain, struct m_pedit_sel *sel,
|
||||
struct m_pedit_key *tkey);
|
||||
int pack_key8(__u32 retain, struct m_pedit_sel *sel,
|
||||
struct m_pedit_key *tkey);
|
||||
int parse_val(int *argc_p, char ***argv_p, __u32 *val, int type);
|
||||
int parse_cmd(int *argc_p, char ***argv_p, __u32 len, int type,
|
||||
__u32 retain,
|
||||
struct m_pedit_sel *sel, struct m_pedit_key *tkey);
|
||||
int parse_offset(int *argc_p, char ***argv_p,
|
||||
struct m_pedit_sel *sel, struct m_pedit_key *tkey);
|
||||
int parse_pedit(struct action_util *a, int *argc_p, char ***argv_p,
|
||||
int tca_id, struct nlmsghdr *n);
|
||||
int print_pedit(struct action_util *au, FILE *f, struct rtattr *arg);
|
||||
int pedit_print_xstats(struct action_util *au, FILE *f,
|
||||
struct rtattr *xstats);
|
||||
#endif
|
||||
|
Loading…
Reference in New Issue
Block a user