aboutsummaryrefslogtreecommitdiffstats
path: root/net/sched/act_api.c
diff options
context:
space:
mode:
Diffstat (limited to 'net/sched/act_api.c')
-rw-r--r--net/sched/act_api.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/net/sched/act_api.c b/net/sched/act_api.c
index 69cb848e8345..4adbce8f8314 100644
--- a/net/sched/act_api.c
+++ b/net/sched/act_api.c
@@ -191,7 +191,8 @@ u32 tcf_hash_new_index(u32 *idx_gen, struct tcf_hashinfo *hinfo)
191 val = 1; 191 val = 1;
192 } while (tcf_hash_lookup(val, hinfo)); 192 } while (tcf_hash_lookup(val, hinfo));
193 193
194 return (*idx_gen = val); 194 *idx_gen = val;
195 return val;
195} 196}
196EXPORT_SYMBOL(tcf_hash_new_index); 197EXPORT_SYMBOL(tcf_hash_new_index);
197 198