diff options
Diffstat (limited to 'net/core')
-rw-r--r-- | net/core/dst.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/net/core/dst.c b/net/core/dst.c index 43d94cedbf7c..a6e19a23a745 100644 --- a/net/core/dst.c +++ b/net/core/dst.c | |||
@@ -152,7 +152,7 @@ EXPORT_SYMBOL(dst_discard); | |||
152 | const u32 dst_default_metrics[RTAX_MAX]; | 152 | const u32 dst_default_metrics[RTAX_MAX]; |
153 | 153 | ||
154 | void *dst_alloc(struct dst_ops *ops, struct net_device *dev, | 154 | void *dst_alloc(struct dst_ops *ops, struct net_device *dev, |
155 | int initial_ref, int initial_obsolete, int flags) | 155 | int initial_ref, int initial_obsolete, unsigned short flags) |
156 | { | 156 | { |
157 | struct dst_entry *dst; | 157 | struct dst_entry *dst; |
158 | 158 | ||
@@ -188,6 +188,7 @@ void *dst_alloc(struct dst_ops *ops, struct net_device *dev, | |||
188 | dst->__use = 0; | 188 | dst->__use = 0; |
189 | dst->lastuse = jiffies; | 189 | dst->lastuse = jiffies; |
190 | dst->flags = flags; | 190 | dst->flags = flags; |
191 | dst->pending_confirm = 0; | ||
191 | dst->next = NULL; | 192 | dst->next = NULL; |
192 | if (!(flags & DST_NOCOUNT)) | 193 | if (!(flags & DST_NOCOUNT)) |
193 | dst_entries_add(ops, 1); | 194 | dst_entries_add(ops, 1); |