Commit c16ee04c authored by Daniel Borkmann's avatar Daniel Borkmann Committed by Alexei Starovoitov
Browse files

ulp: remove uid and user_visible members



They are not used anymore and therefore should be removed.

Signed-off-by: default avatarDaniel Borkmann <daniel@iogearbox.net>
Signed-off-by: default avatarAlexei Starovoitov <ast@kernel.org>
parent 2576b967
Loading
Loading
Loading
Loading
+0 −7
Original line number Diff line number Diff line
@@ -2051,11 +2051,6 @@ enum hrtimer_restart tcp_pace_kick(struct hrtimer *timer);
#define TCP_ULP_MAX		128
#define TCP_ULP_BUF_MAX		(TCP_ULP_NAME_MAX*TCP_ULP_MAX)

enum {
	TCP_ULP_TLS,
	TCP_ULP_BPF,
};

struct tcp_ulp_ops {
	struct list_head	list;

@@ -2064,9 +2059,7 @@ struct tcp_ulp_ops {
	/* cleanup ulp */
	void (*release)(struct sock *sk);

	int		uid;
	char		name[TCP_ULP_NAME_MAX];
	bool		user_visible;
	struct module	*owner;
};
int tcp_register_ulp(struct tcp_ulp_ops *type);
+0 −2
Original line number Diff line number Diff line
@@ -715,8 +715,6 @@ EXPORT_SYMBOL(tls_unregister_device);

static struct tcp_ulp_ops tcp_tls_ulp_ops __read_mostly = {
	.name			= "tls",
	.uid			= TCP_ULP_TLS,
	.user_visible		= true,
	.owner			= THIS_MODULE,
	.init			= tls_init,
};