Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge tag 'staging-5.18-rc2' of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging

Pull staging driver fix from Greg KH:
"Here is a single staging driver fix for 5.18-rc2 that resolves an
endian issue for the r8188eu driver. It has been in linux-next all
this week with no reported problems"

* tag 'staging-5.18-rc2' of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging:
staging: r8188eu: Fix PPPoE tag insertion on little endian systems

+1 -1
+1 -1
drivers/staging/r8188eu/core/rtw_br_ext.c
··· 70 70 struct pppoe_hdr *ph = (struct pppoe_hdr *)(skb->data + ETH_HLEN); 71 71 int data_len; 72 72 73 - data_len = tag->tag_len + TAG_HDR_LEN; 73 + data_len = be16_to_cpu(tag->tag_len) + TAG_HDR_LEN; 74 74 if (skb_tailroom(skb) < data_len) 75 75 return -1; 76 76