https://github.com/torvalds/linux
Revision 399ea0f6bcd318af94ec8e4ffe96703ed674f22e authored by Pavel Fedin on 06 October 2015, 08:14:35 UTC, committed by Christoffer Dall on 20 October 2015, 16:04:48 UTC
Jump to correct label and free kvm_host_cpu_state

Reviewed-by: Wei Huang <wei@redhat.com>
Signed-off-by: Pavel Fedin <p.fedin@samsung.com>
Signed-off-by: Christoffer Dall <christoffer.dall@linaro.org>
1 parent 437f996
Raw File
Tip revision: 399ea0f6bcd318af94ec8e4ffe96703ed674f22e authored by Pavel Fedin on 06 October 2015, 08:14:35 UTC
KVM: arm/arm64: Fix memory leak if timer initialization fails
Tip revision: 399ea0f
fou.h
#ifndef __NET_FOU_H
#define __NET_FOU_H

#include <linux/skbuff.h>

#include <net/flow.h>
#include <net/gue.h>
#include <net/ip_tunnels.h>
#include <net/udp.h>

size_t fou_encap_hlen(struct ip_tunnel_encap *e);
static size_t gue_encap_hlen(struct ip_tunnel_encap *e);

int fou_build_header(struct sk_buff *skb, struct ip_tunnel_encap *e,
		     u8 *protocol, struct flowi4 *fl4);
int gue_build_header(struct sk_buff *skb, struct ip_tunnel_encap *e,
		     u8 *protocol, struct flowi4 *fl4);

#endif
back to top