[PKT_SCHED]: deinline functions in meta match
A couple of functions in meta match don't need to be inline. Signed-off-by: Stephen Hemminger <shemminger@vyatta.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
8ff65b4603
commit
ed7af3b350
1 changed files with 3 additions and 3 deletions
|
@ -687,8 +687,8 @@ static inline struct meta_type_ops * meta_type_ops(struct meta_value *v)
|
|||
* Core
|
||||
**************************************************************************/
|
||||
|
||||
static inline int meta_get(struct sk_buff *skb, struct tcf_pkt_info *info,
|
||||
struct meta_value *v, struct meta_obj *dst)
|
||||
static int meta_get(struct sk_buff *skb, struct tcf_pkt_info *info,
|
||||
struct meta_value *v, struct meta_obj *dst)
|
||||
{
|
||||
int err = 0;
|
||||
|
||||
|
@ -733,7 +733,7 @@ static int em_meta_match(struct sk_buff *skb, struct tcf_ematch *m,
|
|||
return 0;
|
||||
}
|
||||
|
||||
static inline void meta_delete(struct meta_match *meta)
|
||||
static void meta_delete(struct meta_match *meta)
|
||||
{
|
||||
if (meta) {
|
||||
struct meta_type_ops *ops = meta_type_ops(&meta->lvalue);
|
||||
|
|
Loading…
Reference in a new issue