diff options
author | Tiwei Bie <tiwei.btw@antgroup.com> | 2025-05-03 13:17:08 +0800 |
---|---|---|
committer | Johannes Berg <johannes.berg@intel.com> | 2025-05-05 10:26:59 +0200 |
commit | 65eaac591b752042006d3a79c0cfba47e2a9aaac (patch) | |
tree | 6494353519ffa292543fdde24b0fd89d6f99174c /arch/um/drivers/umcast.h | |
parent | 304c9f7f8f439083c56846c4433fbab7467eb01e (diff) |
um: Remove obsolete legacy network transports
These legacy network transports were marked as obsolete in commit
40814b98a570 ("um: Mark non-vector net transports as obsolete").
More than five years have passed since then. Remove these network
transports to reduce the maintenance burden.
Suggested-by: Anton Ivanov <anton.ivanov@cambridgegreys.com>
Signed-off-by: Tiwei Bie <tiwei.btw@antgroup.com>
Acked-By: Anton Ivanov <anton.ivanov@cambridgegreys.com>
Link: https://patch.msgid.link/20250503051710.3286595-2-tiwei.btw@antgroup.com
Signed-off-by: Johannes Berg <johannes.berg@intel.com>
Diffstat (limited to 'arch/um/drivers/umcast.h')
-rw-r--r-- | arch/um/drivers/umcast.h | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/arch/um/drivers/umcast.h b/arch/um/drivers/umcast.h deleted file mode 100644 index fe39bee1e3bd..000000000000 --- a/arch/um/drivers/umcast.h +++ /dev/null @@ -1,27 +0,0 @@ -/* SPDX-License-Identifier: GPL-2.0 */ -/* - * Copyright (C) 2001 - 2007 Jeff Dike (jdike@{addtoit,linux.intel}.com) - */ - -#ifndef __DRIVERS_UMCAST_H -#define __DRIVERS_UMCAST_H - -#include <net_user.h> - -struct umcast_data { - char *addr; - unsigned short lport; - unsigned short rport; - void *listen_addr; - void *remote_addr; - int ttl; - int unicast; - void *dev; -}; - -extern const struct net_user_info umcast_user_info; - -extern int umcast_user_write(int fd, void *buf, int len, - struct umcast_data *pri); - -#endif |