Re: KASAN: slab-out-of-bounds Write in record_print_text

2021-01-26 Thread John Ogness
ttps://syzkaller.appspot.com/x/repro.c?x=17aea4e8d0 > > The issue was bisected to: > > commit f0e386ee0c0b71ea6f7238506a4d0965a2dbef11 > Author: John Ogness > Date: Thu Jan 14 17:04:12 2021 + > > printk: fix buffer overflow potential for print_text() Thank you

[PATCH] af_packet: TPACKET_V3: fix fill status rwlock imbalance

2020-08-13 Thread John Ogness
: 632ca50f2cbd ("af_packet: TPACKET_V3: replace busy-wait loop") Signed-off-by: John Ogness Reported-by: kernel test robot --- net/packet/af_packet.c | 9 +++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/net/packet/af_packet.c b/net/packet/af_packet.c index 0b8160d1a6e0..47

[PATCH] af_packet: TPACKET_V3: replace busy-wait loop

2020-07-07 Thread John Ogness
with an rwlock_t. This provides lockdep coverage and makes the code RT ready. Signed-off-by: John Ogness --- patch against v5.8-rc4 net/packet/af_packet.c | 20 ++-- net/packet/internal.h | 2 +- 2 files changed, 11 insertions(+), 11 deletions(-) diff --git a/net/packet