Commit 7f600f14 authored by Cong Wang's avatar Cong Wang Committed by David S. Miller
Browse files

net: remove unused skb_send_sock()

parent a21ff3c8
Loading
Loading
Loading
Loading
+0 −1
Original line number Original line Diff line number Diff line
@@ -3335,7 +3335,6 @@ int skb_splice_bits(struct sk_buff *skb, struct sock *sk, unsigned int offset,
		    unsigned int flags);
		    unsigned int flags);
int skb_send_sock_locked(struct sock *sk, struct sk_buff *skb, int offset,
int skb_send_sock_locked(struct sock *sk, struct sk_buff *skb, int offset,
			 int len);
			 int len);
int skb_send_sock(struct sock *sk, struct sk_buff *skb, int offset, int len);
void skb_copy_and_csum_dev(const struct sk_buff *skb, u8 *to);
void skb_copy_and_csum_dev(const struct sk_buff *skb, u8 *to);
unsigned int skb_zerocopy_headlen(const struct sk_buff *from);
unsigned int skb_zerocopy_headlen(const struct sk_buff *from);
int skb_zerocopy(struct sk_buff *to, struct sk_buff *from,
int skb_zerocopy(struct sk_buff *to, struct sk_buff *from,
+0 −13
Original line number Original line Diff line number Diff line
@@ -2364,19 +2364,6 @@ error:
}
}
EXPORT_SYMBOL_GPL(skb_send_sock_locked);
EXPORT_SYMBOL_GPL(skb_send_sock_locked);


/* Send skb data on a socket. */
int skb_send_sock(struct sock *sk, struct sk_buff *skb, int offset, int len)
{
	int ret = 0;

	lock_sock(sk);
	ret = skb_send_sock_locked(sk, skb, offset, len);
	release_sock(sk);

	return ret;
}
EXPORT_SYMBOL_GPL(skb_send_sock);

/**
/**
 *	skb_store_bits - store bits from kernel buffer to skb
 *	skb_store_bits - store bits from kernel buffer to skb
 *	@skb: destination buffer
 *	@skb: destination buffer