diff options
author | Bryan O'Sullivan <bos@pathscale.com> | 2006-07-01 07:35:55 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-07-01 12:55:59 -0400 |
commit | 4a45b7d4ece0e6dc425e9f66fa8b501b72d846db (patch) | |
tree | 6e858b3343ffb3670eb6f5a838479d52791e0a30 /drivers/infiniband/hw/ipath/ipath_verbs.c | |
parent | 6665ddee85bfc336d691ea5132a2c20a1d0e8053 (diff) |
[PATCH] IB/ipath: don't allow resources to be created with illegal values
Signed-off-by: Robert Walsh <robert.walsh@qlogic.com>
Signed-off-by: Bryan O'Sullivan <bryan.osullivan@qlogic.com>
Cc: "Michael S. Tsirkin" <mst@mellanox.co.il>
Cc: Roland Dreier <rolandd@cisco.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'drivers/infiniband/hw/ipath/ipath_verbs.c')
-rw-r--r-- | drivers/infiniband/hw/ipath/ipath_verbs.c | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/drivers/infiniband/hw/ipath/ipath_verbs.c b/drivers/infiniband/hw/ipath/ipath_verbs.c index 6af5402fe447..18375e831744 100644 --- a/drivers/infiniband/hw/ipath/ipath_verbs.c +++ b/drivers/infiniband/hw/ipath/ipath_verbs.c | |||
@@ -792,6 +792,17 @@ static struct ib_ah *ipath_create_ah(struct ib_pd *pd, | |||
792 | goto bail; | 792 | goto bail; |
793 | } | 793 | } |
794 | 794 | ||
795 | if (ah_attr->dlid == 0) { | ||
796 | ret = ERR_PTR(-EINVAL); | ||
797 | goto bail; | ||
798 | } | ||
799 | |||
800 | if (ah_attr->port_num != 1 || | ||
801 | ah_attr->port_num > pd->device->phys_port_cnt) { | ||
802 | ret = ERR_PTR(-EINVAL); | ||
803 | goto bail; | ||
804 | } | ||
805 | |||
795 | ah = kmalloc(sizeof *ah, GFP_ATOMIC); | 806 | ah = kmalloc(sizeof *ah, GFP_ATOMIC); |
796 | if (!ah) { | 807 | if (!ah) { |
797 | ret = ERR_PTR(-ENOMEM); | 808 | ret = ERR_PTR(-ENOMEM); |