Merge branch 'net-remove-compat-alloc-user-space'
authorDavid S. Miller <davem@davemloft.net>
Fri, 23 Jul 2021 13:20:46 +0000 (14:20 +0100)
committerDavid S. Miller <davem@davemloft.net>
Fri, 23 Jul 2021 13:20:46 +0000 (14:20 +0100)
commit090597b4a9c1b81b03fd7cfb4ba458a0e7a78b31
treef3aaf3d42f8c6fa2000784a79b62a13c38e39516
parent4431531c482a2c05126caaa9fcc5053a4a5c495b
parent29c4964822aad42c960d9edf67fb8209f1886baa
Merge branch 'net-remove-compat-alloc-user-space'

Arnd Bergmann says:

====================
remove compat_alloc_user_space()

This is the fifth version of my series, now spanning four patches
instead of two, with a new approach for handling struct ifreq
compatibility after I realized that my earlier approach introduces
additional problems.

The idea here is to always push down the compat conversion
deeper into the call stack: rather than pretending to be
native mode with a modified copy of the original data on
the user space stack, have the code that actually works on
the data understand the difference between native and compat
versions.

I have spent a long time looking at all drivers that implement
an ndo_do_ioctl callback to verify that my assumptions are
correct. This has led to a series of ~30 additional patches
that I am not including here but will post separately, fixing
a number of bugs in SIOCDEVPRIVATE ioctls, removing dead
code, and splitting ndo_do_ioctl into multiple new ndo callbacks
for private and ethernet specific commands.

      Arnd

Link: https://lore.kernel.org/netdev/20201124151828.169152-1-arnd@kernel.org/
Changes in v6:
 - Split out and expand linux/compat.h rework
 - Split ifconf change into two patches
 - Rebase on latest net-next/master

Changes in v5:
 - Rebase to v5.14-rc2
 - Fix a few build issues

Changes in v4:
 - build fix without CONFIG_INET
 - build fix without CONFIG_COMPAT
 - style fixes pointed out by hch

Changes in v3:
 - complete rewrite of the series
====================

Signed-off-by: David S. Miller <davem@davemloft.net>