Commit e484b1c2 authored by Guillaume Nault's avatar Guillaume Nault Committed by David S. Miller

l2tp: remove l2tp_tunnel_priv()

This function, and the associated .priv field, are unused.
Signed-off-by: default avatarGuillaume Nault <g.nault@alphalink.fr>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent c3612f0e
...@@ -187,8 +187,6 @@ struct l2tp_tunnel { ...@@ -187,8 +187,6 @@ struct l2tp_tunnel {
* was created by userspace */ * was created by userspace */
struct work_struct del_work; struct work_struct del_work;
uint8_t priv[0]; /* private data */
}; };
struct l2tp_nl_cmd_ops { struct l2tp_nl_cmd_ops {
...@@ -198,11 +196,6 @@ struct l2tp_nl_cmd_ops { ...@@ -198,11 +196,6 @@ struct l2tp_nl_cmd_ops {
int (*session_delete)(struct l2tp_session *session); int (*session_delete)(struct l2tp_session *session);
}; };
static inline void *l2tp_tunnel_priv(struct l2tp_tunnel *tunnel)
{
return &tunnel->priv[0];
}
static inline void *l2tp_session_priv(struct l2tp_session *session) static inline void *l2tp_session_priv(struct l2tp_session *session)
{ {
return &session->priv[0]; return &session->priv[0];
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment