Re: [PATCH RFC net-next] pppoe: remove unused kernel-mode relay support
"Arnd Bergmann" <[email protected]> Wed, 11 Feb 2026 09:32:28 +0100
| Newsgroups | org.kernel.vger.linux-ppp,org.kernel.vger.linux-kernel,org.kernel.vger.netdev |
|---|---|
| Message-ID | <[email protected]> |
On Wed, Feb 11, 2026, at 08:55, Qingfang Deng wrote:
> -#ifdef CONFIG_COMPAT
> -int pppox_compat_ioctl(struct socket *sock, unsigned int cmd, unsigned
> long arg)
> -{
> - if (cmd == PPPOEIOCSFWD32)
> - cmd = PPPOEIOCSFWD;
> -
> - return pppox_ioctl(sock, cmd, (unsigned long)compat_ptr(arg));
> -}
> -
> -EXPORT_SYMBOL(pppox_compat_ioctl);
> -#endif
This will lose all compat ioctl support, not just the emulation for
PPPOEIOCSFWD.
Arnd