The patch titled Subject: ipc/sem: ensure we left shift a ULL rather than a 32 bit integer has been added to the -mm tree. Its filename is ipc-sem-optimize-perform_atomic_semop-fix.patch This patch should soon appear at http://ozlabs.org/~akpm/mmots/broken-out/ipc-sem-optimize-perform_atomic_semop-fix.patch and later at http://ozlabs.org/~akpm/mmotm/broken-out/ipc-sem-optimize-perform_atomic_semop-fix.patch Before you just go and hit "reply", please: a) Consider who else should be cc'ed b) Prefer to cc a suitable mailing list as well c) Ideally: find the original patch on the mailing list and do a reply-to-all to that, adding suitable additional cc's *** Remember to use Documentation/SubmitChecklist when testing your code *** The -mm tree is included into linux-next and is updated there every 3-4 working days ------------------------------------------------------ From: Colin Ian King <colin.king@xxxxxxxxxxxxx> Subject: ipc/sem: ensure we left shift a ULL rather than a 32 bit integer The left shift amount is sop->sem_num % 64, which is up to 63, so ensure we are shifting a ULL rather than a 32 bit value. CoverityScan CID#1372862 "Bad bit shift operation" Fixes: 7c24530cb4e3c0ae ("ipc/sem: optimize perform_atomic_semop()") Link: http://lkml.kernel.org/r/20161028181129.7311-1-colin.king@xxxxxxxxxxxxx Signed-off-by: Colin Ian King <colin.king@xxxxxxxxxxxxx> Cc: Davidlohr Bueso <dbueso@xxxxxxx> Cc: Manfred Spraul <manfred@xxxxxxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- ipc/sem.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN ipc/sem.c~ipc-sem-optimize-perform_atomic_semop-fix ipc/sem.c --- a/ipc/sem.c~ipc-sem-optimize-perform_atomic_semop-fix +++ a/ipc/sem.c @@ -1850,7 +1850,7 @@ SYSCALL_DEFINE4(semtimedop, int, semid, max = 0; for (sop = sops; sop < sops + nsops; sop++) { - unsigned long mask = 1 << ((sop->sem_num) % BITS_PER_LONG); + unsigned long mask = 1ULL << ((sop->sem_num) % BITS_PER_LONG); if (sop->sem_num >= max) max = sop->sem_num; _ Patches currently in -mm which might be from colin.king@xxxxxxxxxxxxx are ipc-sem-optimize-perform_atomic_semop-fix.patch -- To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html