Commit ff24b50
ppp: enable TX scatter-gather
[ Upstream commit 42fcb21 ]
PPP channels using chan->direct_xmit prepend the PPP header to a skb and
call dev_queue_xmit() directly. In this mode the skb does not need to be
linear, but the PPP netdevice currently does not advertise
scatter-gather features, causing unnecessary linearization and
preventing GSO.
Enable NETIF_F_SG and NETIF_F_FRAGLIST on PPP devices. In case a linear
buffer is required (PPP compression, multilink, and channels without
direct_xmit), call skb_linearize() explicitly.
Signed-off-by: Qingfang Deng <dqfext@gmail.com>
Link: https://patch.msgid.link/20260129012902.941-1-dqfext@gmail.com
Signed-off-by: Paolo Abeni <pabeni@redhat.com>
Stable-dep-of: 543adf0 ("ppp: annotate data races in ppp_generic")
Signed-off-by: Sasha Levin <sashal@kernel.org>1 parent fa4e1da commit ff24b50
1 file changed
Lines changed: 25 additions & 5 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
1636 | 1636 | | |
1637 | 1637 | | |
1638 | 1638 | | |
| 1639 | + | |
| 1640 | + | |
1639 | 1641 | | |
1640 | 1642 | | |
1641 | 1643 | | |
| |||
1700 | 1702 | | |
1701 | 1703 | | |
1702 | 1704 | | |
| 1705 | + | |
| 1706 | + | |
| 1707 | + | |
| 1708 | + | |
1703 | 1709 | | |
1704 | 1710 | | |
1705 | 1711 | | |
| |||
1787 | 1793 | | |
1788 | 1794 | | |
1789 | 1795 | | |
| 1796 | + | |
| 1797 | + | |
| 1798 | + | |
| 1799 | + | |
1790 | 1800 | | |
1791 | 1801 | | |
1792 | 1802 | | |
| |||
1884 | 1894 | | |
1885 | 1895 | | |
1886 | 1896 | | |
| 1897 | + | |
1887 | 1898 | | |
1888 | 1899 | | |
1889 | 1900 | | |
1890 | 1901 | | |
1891 | 1902 | | |
1892 | | - | |
1893 | | - | |
1894 | | - | |
1895 | | - | |
1896 | | - | |
| 1903 | + | |
| 1904 | + | |
| 1905 | + | |
| 1906 | + | |
| 1907 | + | |
1897 | 1908 | | |
1898 | 1909 | | |
| 1910 | + | |
1899 | 1911 | | |
| 1912 | + | |
| 1913 | + | |
| 1914 | + | |
| 1915 | + | |
| 1916 | + | |
1900 | 1917 | | |
1901 | 1918 | | |
1902 | 1919 | | |
| |||
1981 | 1998 | | |
1982 | 1999 | | |
1983 | 2000 | | |
| 2001 | + | |
| 2002 | + | |
1984 | 2003 | | |
1985 | 2004 | | |
1986 | 2005 | | |
| |||
2139 | 2158 | | |
2140 | 2159 | | |
2141 | 2160 | | |
| 2161 | + | |
2142 | 2162 | | |
2143 | 2163 | | |
2144 | 2164 | | |
| |||
0 commit comments