The patch titled synclink_gt: use DIV_ROUND_UP() has been added to the -mm tree. Its filename is synclink_gt-dropped-transmit-data-bugfix-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 *** See http://userweb.kernel.org/~akpm/stuff/added-to-mm.txt to find out what to do about this The current -mm tree may be found at http://userweb.kernel.org/~akpm/mmotm/ ------------------------------------------------------ Subject: synclink_gt: use DIV_ROUND_UP() From: Paul Fulghum <paulkf@xxxxxxxxxxxxx> Use DIV_ROUND_UP macro to simplify code. Signed-off-by: Paul Fulghum <paulkf@xxxxxxxxxxxxx> Cc: Alan Cox <alan@xxxxxxxxxxxxxxxxxxx> Cc: Greg KH <greg@xxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- drivers/char/synclink_gt.c | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff -puN drivers/char/synclink_gt.c~synclink_gt-dropped-transmit-data-bugfix-fix drivers/char/synclink_gt.c --- a/drivers/char/synclink_gt.c~synclink_gt-dropped-transmit-data-bugfix-fix +++ a/drivers/char/synclink_gt.c @@ -4779,13 +4779,9 @@ static bool tx_load(struct slgt_info *in unsigned short count; unsigned int i; struct slgt_desc *d; - unsigned int bufs_needed; /* check required buffer space */ - bufs_needed = (size/DMABUFSIZE); - if (size % DMABUFSIZE) - ++bufs_needed; - if (bufs_needed > free_tbuf_count(info)) + if (DIV_ROUND_UP(size, DMABUFSIZE) > free_tbuf_count(info)) return false; DBGDATA(info, buf, size, "tx"); _ Patches currently in -mm which might be from paulkf@xxxxxxxxxxxxx are synclink_gt-dropped-transmit-data-bugfix.patch synclink_gt-dropped-transmit-data-bugfix-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