Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=bf2944bd56c7a48cc3962a860dbc4ceee6b1ace8
Commit:     bf2944bd56c7a48cc3962a860dbc4ceee6b1ace8
Parent:     57f01b53398baebd809e7efd49fc10c10174b46d
Author:     Sean Hefty <[EMAIL PROTECTED]>
AuthorDate: Tue Jun 5 09:57:31 2007 -0700
Committer:  Roland Dreier <[EMAIL PROTECTED]>
CommitDate: Thu Jun 7 23:24:38 2007 -0700

    RDMA/cma: Fix initialization of next_port
    
    next_port should be between sysctl_local_port_range[0] and [1].
    However, it is initially set to a random value with get_random_bytes().
    If the value is negative when treated as a signed integer, next_port
    can end up outside the expected range because of the result of the %
    operator being negative.
    
    Signed-off-by: Sean Hefty <[EMAIL PROTECTED]>
    Signed-off-by: Roland Dreier <[EMAIL PROTECTED]>
---
 drivers/infiniband/core/cma.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/infiniband/core/cma.c b/drivers/infiniband/core/cma.c
index 2eb52b7..32a0e66 100644
--- a/drivers/infiniband/core/cma.c
+++ b/drivers/infiniband/core/cma.c
@@ -2773,8 +2773,8 @@ static int cma_init(void)
        int ret;
 
        get_random_bytes(&next_port, sizeof next_port);
-       next_port = (next_port % (sysctl_local_port_range[1] -
-                                 sysctl_local_port_range[0])) +
+       next_port = ((unsigned int) next_port %
+                   (sysctl_local_port_range[1] - sysctl_local_port_range[0])) +
                    sysctl_local_port_range[0];
        cma_wq = create_singlethread_workqueue("rdma_cm");
        if (!cma_wq)
-
To unsubscribe from this list: send the line "unsubscribe git-commits-head" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to