The patch titled Subject: udp: remove unlikely() from IS_ERR*() condition has been removed from the -mm tree. Its filename was udp-remove-unlikely-from-is_err-condition.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ From: Denis Efremov <efremov@xxxxxxxxx> Subject: udp: remove unlikely() from IS_ERR*() condition "unlikely(IS_ERR_OR_NULL(x))" is excessive. IS_ERR_OR_NULL() already uses unlikely() internally. Link: http://lkml.kernel.org/r/20190829165025.15750-10-efremov@xxxxxxxxx Signed-off-by: Denis Efremov <efremov@xxxxxxxxx> Cc: "David S. Miller" <davem@xxxxxxxxxxxxx> Cc: Joe Perches <joe@xxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- include/net/udp.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/include/net/udp.h~udp-remove-unlikely-from-is_err-condition +++ a/include/net/udp.h @@ -480,7 +480,7 @@ static inline struct sk_buff *udp_rcv_se * CB fragment */ segs = __skb_gso_segment(skb, features, false); - if (unlikely(IS_ERR_OR_NULL(segs))) { + if (IS_ERR_OR_NULL(segs)) { int segs_nr = skb_shinfo(skb)->gso_segs; atomic_add(segs_nr, &sk->sk_drops); _ Patches currently in -mm which might be from efremov@xxxxxxxxx are checkpatch-check-for-nested-unlikely-calls.patch drm-msm-remove-unlikely-from-warn_on-conditions.patch xen-events-remove-unlikely-from-warn-condition.patch fs-remove-unlikely-from-warn_on-condition.patch wimax-i2400m-remove-unlikely-from-warn-condition.patch xfs-remove-unlikely-from-warn_on-condition.patch ib-hfi1-remove-unlikely-from-is_err-condition.patch ntfs-remove-unlikely-from-is_err-conditions.patch