]> git.openfabrics.org - ~shefty/libmlx4.git/log
~shefty/libmlx4.git
15 years agoSet ownership bit correctly when copying over CQEs during CQ resize
Jack Morgenstein [Sun, 14 Dec 2008 16:14:20 +0000 (18:14 +0200)]
Set ownership bit correctly when copying over CQEs during CQ resize

When resizing a CQ, when copying over unpolled CQEs from the old CQE
buffer to the new buffer, the ownership bit must be set appropriately
for the new buffer, or the ownership bit in the new buffer gets
corrupted.

Signed-off-by: Jack Morgenstein <jackm@dev.mellanox.co.il>
Signed-off-by: Roland Dreier <rolandd@cisco.com>
15 years agoFix race between create QP and destroy QP
Jack Morgenstein [Tue, 25 Nov 2008 06:40:07 +0000 (08:40 +0200)]
Fix race between create QP and destroy QP

There is a race in libmlx4 because mlx4_create_qp() and
mlx4_destroy_qp() are not atomic WRT each other.  If one thread is
destroying a QP while another is creating a QP, the following can
happen: the destroying thread can be scheduled out after it has
deleted the QP from kernel space, but before it has cleared it from
userspace store (mlx4_clear_qp()).  If the other thread creates a QP
during this break, it gets the same QP base number and overwrites the
destroyed QP's entry with mlx4_store_qp().  When the destroying thread
resumes, it clears the new entry from the userspace store via
mlx4_clear_qp.

Fix this by expanding where qp_table_mutex is held to serialize the
full create and destroy operations against each other.

Signed-off-by: Roland Dreier <rolandd@cisco.com>
16 years agoOptimize QP stamping
Eli Cohen [Mon, 16 Jun 2008 08:09:18 +0000 (11:09 +0300)]
Optimize QP stamping

Optimize samping by reading the value of the DS field just before we
stamp, which would give the effective size of the descriptor as used
in the previous post and. Then we stamp only that area, since the rest
of the descriptor is already stamped.

Signed-off-by: Eli Cohen <eli@mellanox.co.il>
Signed-off-by: Roland Dreier <rolandd@cisco.com>
16 years agoImplement resize CQ
Vladimir Sokolovsky [Mon, 31 Mar 2008 08:51:18 +0000 (11:51 +0300)]
Implement resize CQ

Signed-off-by: Vladimir Sokolovsky <vlad@mellanox.co.il>
Signed-off-by: Roland Dreier <rolandd@cisco.com>
16 years agoFix CQ cleanup when QP is destroyed
Roland Dreier [Fri, 4 Apr 2008 19:14:57 +0000 (12:14 -0700)]
Fix CQ cleanup when QP is destroyed

The current code is mlx4_destroy_qp() cleans completions from the QP
being destroyed out of CQs before calling into the kernel to actually
destroy the QP.  This leaves a window where new completions could be
added and left in the CQ, which leads to problems when that completion
is polled.  Fix this by cleaning the CQ and removing the QP from the
QP table after the QP is really gone.

Signed-off-by: Roland Dreier <rolandd@cisco.com>
16 years agoChange openib.org URLs to openfabrics.org URLs
Roland Dreier [Mon, 31 Mar 2008 01:31:31 +0000 (18:31 -0700)]
Change openib.org URLs to openfabrics.org URLs

Signed-off-by: Roland Dreier <rolandd@cisco.com>
16 years agoAdd debian/watch file
Roland Dreier [Wed, 12 Mar 2008 17:35:53 +0000 (10:35 -0700)]
Add debian/watch file

Signed-off-by: Roland Dreier <rolandd@cisco.com>
16 years agoUpdate RPM spec changelog to avoid a macro
Roland Dreier [Mon, 28 Jan 2008 21:33:39 +0000 (13:33 -0800)]
Update RPM spec changelog to avoid a macro

Don't risk confusion by using the "%config" macro in the spec file
changelog section.  This fixes an rpmlint warning.

Signed-off-by: Roland Dreier <rolandd@cisco.com>
16 years agoSpec file cleanups based on Fedora review
Roland Dreier [Mon, 28 Jan 2008 04:30:03 +0000 (20:30 -0800)]
Spec file cleanups based on Fedora review

 - Don't mark libmlx4.driver as a %config, since it is not user modifiable.
 - Change the name of the -devel-static package to plain -devel, since
   it would be empty without the static library.

Signed-off-by: Roland Dreier <rolandd@cisco.com>
16 years agoDon't use memcpy() to write blueflame sends
Jack Morgenstein [Thu, 24 Jan 2008 23:53:26 +0000 (15:53 -0800)]
Don't use memcpy() to write blueflame sends

Some memcpy() implementations may use move-string-buffer assembly
instructions, which do not guarantee copy order into the blueflame
buffer.  This causes problems when writing into a blueflame buffer, so
use our own copy function instead.

Signed-off-by: Jack Morgenstein <jackm@mellanox.co.il>
Signed-off-by: Roland Dreier <rolandd@cisco.com>
16 years agoFix value of pkey_index in QP1 completions
Dotan Barak [Fri, 11 Jan 2008 19:04:22 +0000 (11:04 -0800)]
Fix value of pkey_index in QP1 completions

Fix the value of pkey_index in completions.  Since userspace can't
create QP1, this doesn't matter, but we might as well have correct code.

Signed-off-by: Dotan Barak <dotanb@dev.mellanox.co.il>
Signed-off-by: Roland Dreier <rolandd@cisco.com>
16 years agoRevert "Don't add an extra entry to CQs"
Roland Dreier [Thu, 10 Jan 2008 17:52:14 +0000 (09:52 -0800)]
Revert "Don't add an extra entry to CQs"

This reverts commit 216b90eac10cc8e11b9abaa710385986e26fbf85.

The extra CQ entry will be required to implement resize CQ.

Reported-by: Jack Morgenstein <jackm@dev.mellanox.co.il>
Signed-off-by: Roland Dreier <rolandd@cisco.com>y
16 years agoMicro-optimize mlx4_poll_one()
Roland Dreier [Fri, 4 Jan 2008 03:59:05 +0000 (19:59 -0800)]
Micro-optimize mlx4_poll_one()

Rather than byte-swapping cqe->g_mlpath_rqpn each time we extract a
field from it, byte-swap it once into a temporary variable.  This
results in smaller, better code.

Signed-off-by: Roland Dreier <rolandd@cisco.com>
16 years agoFix test for GRH presence in mlx4_poll_one()
Jack Morgenstein [Mon, 24 Dec 2007 11:54:01 +0000 (13:54 +0200)]
Fix test for GRH presence in mlx4_poll_one()

The CQE member g_mlpath_rqpn is 32 bits, so we need to use ntohl().

Found by Reuven Amitai of Mellanox.

Signed-off-by: Jack Morgenstein <jackm@dev.mellanox.co.il>
Signed-off-by: Roland Dreier <rolandd@cisco.com>
16 years agoClear context struct at allocation time
Jack Morgenstein [Mon, 17 Dec 2007 08:19:21 +0000 (10:19 +0200)]
Clear context struct at allocation time

Future versions of libibverbs will add additional ops to the end of
struct ibv_context.  This means that driver libraries should zero the
entire struct ibv_context at allocation time, so that any new ops will
be NULL by default.

Signed-off-by: Jack Morgenstein <jackm@dev.mellanox.co.il>
Signed-off-by: Roland Dreier <rolandd@cisco.com>
16 years agoUse real Homepage: tag instead of pseudo-header inside description
Roland Dreier [Sat, 15 Dec 2007 06:15:11 +0000 (22:15 -0800)]
Use real Homepage: tag instead of pseudo-header inside description

New dpkg can actually parse Header: fields in debian/control.

Signed-off-by: Roland Dreier <rolandd@cisco.com>
16 years agoAdd Closes: tag for Debian ITP bug
Roland Dreier [Fri, 14 Dec 2007 21:29:20 +0000 (13:29 -0800)]
Add Closes: tag for Debian ITP bug

Signed-off-by: Roland Dreier <rolandd@cisco.com>
16 years agoMove to using cdbs to generate Debian/control for better Build-depends
Roland Dreier [Fri, 14 Dec 2007 18:02:11 +0000 (10:02 -0800)]
Move to using cdbs to generate Debian/control for better Build-depends

Signed-off-by: Roland Dreier <rolandd@cisco.com>
16 years agoUpdate Debian version to 1.0-1
Roland Dreier [Fri, 14 Dec 2007 17:51:59 +0000 (09:51 -0800)]
Update Debian version to 1.0-1

Signed-off-by: Roland Dreier <rolandd@cisco.com>
16 years agoRoll libmlx4 1.0 release
Roland Dreier [Sun, 9 Dec 2007 19:07:55 +0000 (11:07 -0800)]
Roll libmlx4 1.0 release

Signed-off-by: Roland Dreier <rolandd@cisco.com>
16 years agoUpdate summary line to mention "ConnectX" in Fedora RPM spec file
Roland Dreier [Mon, 3 Dec 2007 22:05:58 +0000 (14:05 -0800)]
Update summary line to mention "ConnectX" in Fedora RPM spec file

Signed-off-by: Roland Dreier <rolandd@cisco.com>
16 years agoUpdate Debian policy version to 3.7.3
Roland Dreier [Mon, 3 Dec 2007 22:05:39 +0000 (14:05 -0800)]
Update Debian policy version to 3.7.3

None of the changes 3.7.2 -> 3.7.3 affect us.

Signed-off-by: Roland Dreier <rolandd@cisco.com>
16 years agoRoll libmlx4-1.0-rc1 release
Roland Dreier [Fri, 30 Nov 2007 21:54:03 +0000 (13:54 -0800)]
Roll libmlx4-1.0-rc1 release

Signed-off-by: Roland Dreier <rolandd@cisco.com>
16 years agoUse DEB_AUTO_UPDATE_LIBTOOL to avoid setting RPATH
Roland Dreier [Sat, 1 Dec 2007 00:06:30 +0000 (16:06 -0800)]
Use DEB_AUTO_UPDATE_LIBTOOL to avoid setting RPATH

Signed-off-by: Roland Dreier <rolandd@cisco.com>
16 years agoMark "driver" file in sysconfdir with %config
Roland Dreier [Fri, 30 Nov 2007 23:31:10 +0000 (15:31 -0800)]
Mark "driver" file in sysconfdir with %config

Signed-off-by: Roland Dreier <rolandd@cisco.com>
16 years agoDon't add an extra entry to CQs
Roland Dreier [Thu, 29 Nov 2007 22:52:36 +0000 (14:52 -0800)]
Don't add an extra entry to CQs

With mlx4 hardware, there is no need to add an extra entry when
creating a CQ.  This potentially saves a lot of memory if a consumer
asks for an exact power of 2 entries.

This change works without changing the kernel mlx4_ib driver's ABI by
subtracting 1 from the number of CQ entries before passing the value
to the kernel; the kernel will add 1 and end up with the same value
actually used by libmlx4.

Based on work from  Jack Morgenstein <jackm@dev.mellanox.co.il>.

Signed-off-by: Roland Dreier <rolandd@cisco.com>
16 years agoUpdate download URL
Roland Dreier [Thu, 29 Nov 2007 22:44:45 +0000 (14:44 -0800)]
Update download URL

Downloads directory on openfabrics.org is downloads/mlx4/ now.

Signed-off-by: Roland Dreier <rolandd@cisco.com>
16 years agoSlightly improve wording in README
Roland Dreier [Thu, 29 Nov 2007 22:42:31 +0000 (14:42 -0800)]
Slightly improve wording in README

Signed-off-by: Roland Dreier <rolandd@cisco.com>
16 years agomax_recv_wr must be > 0 for non-SRQ QPs
Jack Morgenstein [Wed, 28 Nov 2007 10:44:20 +0000 (12:44 +0200)]
max_recv_wr must be > 0 for non-SRQ QPs

max_recv_wr must also be non-zero for QPs which are not associated
with an SRQ.

Without this patch, if the userspace caller specifies max_recv_wr == 0
for a non-srq QP, the creation will be rejected in kernel space in
file infiniband/hw/mlx4/qp.c, function set_rq_size():

} else {
/* HW requires >= 1 RQ entry with >= 1 gather entry */
==> NOTE: if (is_user && (!cap->max_recv_wr || !cap->max_recv_sge))
return -EINVAL;

We make sure max_recv_sge is at least 1, but not max_recv_wr.

Signed-off-by: Jack Morgenstein <jackm@dev.mellanox.co.il>
Signed-off-by: Roland Dreier <rolandd@cisco.com>
16 years agoReturn ENOSYS instead of -ENOSYS
Gleb Natapov [Wed, 28 Nov 2007 15:15:07 +0000 (17:15 +0200)]
Return ENOSYS instead of -ENOSYS

Return ENOSYS instead of -ENOSYS from mlx4_resize_cq(), since we are
in userspace, not the kernel.

Signed-off-by: Roland Dreier <rolandd@cisco.com>
16 years agoFix spec file License: tag
Roland Dreier [Fri, 26 Oct 2007 20:11:21 +0000 (13:11 -0700)]
Fix spec file License: tag

Our license information is properly described as "GPLv2 or BSD".

Signed-off-by: Roland Dreier <rolandd@cisco.com>
16 years agoChange __always_inline to inline
Roland Dreier [Tue, 23 Oct 2007 18:44:24 +0000 (11:44 -0700)]
Change __always_inline to inline

__always_inline is a kernel macro, so we can't use it in userspace code.
The inline keyword seems to work just as well in the one place libmlx4
uses it, so just change __always_inline to inline.

Signed-off-by: Roland Dreier <rolandd@cisco.com>
16 years agoFix thinko in headroom marking order commit
Jack Morgenstein [Mon, 22 Oct 2007 13:30:39 +0000 (15:30 +0200)]
Fix thinko in headroom marking order commit

Fix a thinko bug in commit c45efd89 ("Fix data corruption triggered by
wrong headroom marking order"), which leaves s/g entries being written
in forward (rather than reverse) order.

Signed-off-by: Jack Morgenstein <jackm@dev.mellanox.co.il>
Signed-off-by: Roland Dreier <rolandd@cisco.com>
16 years agoFix data corruption triggered by wrong headroom marking order
Jack Morgenstein [Thu, 20 Sep 2007 18:22:37 +0000 (11:22 -0700)]
Fix data corruption triggered by wrong headroom marking order

This is an addendum to commit 561da8d1 ("Handle new FW requirement for
send request prefetching").  We also need to handle prefetch marking
properly for S/G segments, or else the HCA may end up processing S/G
segments that are not fully written and end up sending the wrong data.

We write S/G segments in reverse order into the WQE, in order to
guarantee that the first dword of all cachelines containing S/G
segments is written last (overwriting the headroom invalidation
pattern).  The entire cacheline will thus contain valid data when the
invalidation pattern is overwritten.

Signed-off-by: Jack Morgenstein <jackm@dev.mellanox.co.il>
Signed-off-by: Roland Dreier <rolandd@cisco.com>
16 years agoFactor out setting WQE segment entries
Roland Dreier [Wed, 19 Sep 2007 03:41:11 +0000 (20:41 -0700)]
Factor out setting WQE segment entries

Clean up setting WQE segment entries by moving code out of the main
work request posting functions into inline functions.  This also lets
the compiler do a better job of optimizing.

Signed-off-by: Roland Dreier <rolandd@cisco.com>
16 years agoReset RQ doorbell counter to 0 when QP is reset
Michael S. Tsirkin [Sun, 9 Sep 2007 09:01:21 +0000 (12:01 +0300)]
Reset RQ doorbell counter to 0 when QP is reset

Signed-off-by: Michael S. Tsirkin <mst@dev.mellanox.co.il>
Signed-off-by: Roland Dreier <rolandd@cisco.com>
16 years agolibmlx4 has no ChangeLog, so remove mention from spec file
Roland Dreier [Tue, 21 Aug 2007 14:29:46 +0000 (07:29 -0700)]
libmlx4 has no ChangeLog, so remove mention from spec file

Signed-off-by: Roland Dreier <rolandd@cisco.com>
16 years agoKernel module is called mlx4_ib, not ib_mlx4
Roland Dreier [Tue, 21 Aug 2007 14:28:58 +0000 (07:28 -0700)]
Kernel module is called mlx4_ib, not ib_mlx4

Signed-off-by: Roland Dreier <rolandd@cisco.com>
17 years agoRemove ibv_driver_init from linker version script
Roland Dreier [Wed, 8 Aug 2007 20:10:05 +0000 (13:10 -0700)]
Remove ibv_driver_init from linker version script

ibv_driver_init isn't defined anywhere, and the name is just an
obsolete leftover in the linker version script, so delete it.

Signed-off-by: Roland Dreier <rolandd@cisco.com>
17 years agoFix inline sends with num_sge > 1
Gleb Natapov [Tue, 24 Jul 2007 12:14:40 +0000 (15:14 +0300)]
Fix inline sends with num_sge > 1

A work request with IBV_SEND_INLINE set and more than one gather entry
does not have its data copied into the WQE correctly, because the
offset is not updated properly.  Add the missing update of off when a
gather entry does not fill an inline segment exactly.

Signed-off-by: Gleb Natapov <glebn@voltaire.com>
Signed-off-by: Roland Dreier <rolandd@cisco.com>
17 years agoFill in send queue sizes in userspace query QP function
Jack Morgenstein [Wed, 18 Jul 2007 04:07:44 +0000 (21:07 -0700)]
Fill in send queue sizes in userspace query QP function

The kernel doesn't know the real size of the send queue so we have to
fill in the info in userspace.

Signed-off-by: Jack Morgenstein <jackm@dev.mellanox.co.il>
Signed-off-by: Roland Dreier <rolandd@cisco.com>
17 years agoUse BlueFlame for RDMA_READ work requests too
Jack Morgenstein [Thu, 21 Jun 2007 09:01:58 +0000 (12:01 +0300)]
Use BlueFlame for RDMA_READ work requests too

Use BlueFlame for RDMA READ requests too.  This improves latency.

Signed-off-by: Jack Morgenstein <jackm@dev.mellanox.co.il>
Signed-off-by: Roland Dreier <rolandd@cisco.com>
17 years agoFix Valgrind annotations so they can actually be built
Roland Dreier [Tue, 3 Jul 2007 18:55:03 +0000 (11:55 -0700)]
Fix Valgrind annotations so they can actually be built

The AC_CHECK_HEADER() test for <valgrind/memcheck.h> will never result
in HAVE_VALGRIND_MEMCHECK_H being defined, so ibverbs.h will never
include <valgrind/memcheck.h> and Valgrind annotations will never actually
get built.  Fix this by adding an AC_DEFINE() of HAVE_VALGRIND_MEMCHECK_H
if the header is found.

Pointed out by Jeff Squyres <jsquyres@cisco.com>.

Signed-off-by: Roland Dreier <rolandd@cisco.com>
17 years agoClean up NVALGRIND comment in config.h.in
Roland Dreier [Tue, 3 Jul 2007 18:48:14 +0000 (11:48 -0700)]
Clean up NVALGRIND comment in config.h.in

Update configure.in so that the comment generated by autoheader for
NVALGRIND in config.h.in is a complete sentence to match the style of
the rest of the file.

Signed-off-by: Roland Dreier <rolandd@cisco.com>
17 years agoAdd new device IDs for PCIe gen2 HCAs
Roland Dreier [Tue, 3 Jul 2007 03:45:40 +0000 (20:45 -0700)]
Add new device IDs for PCIe gen2 HCAs

Also just use hex device IDs plus comments instead of creating defines
that are only used once.

Signed-off-by: Roland Dreier <rolandd@cisco.com>
17 years agoRemove deprecated ${Source-Version} from debian/control
Roland Dreier [Thu, 21 Jun 2007 19:00:47 +0000 (12:00 -0700)]
Remove deprecated ${Source-Version} from debian/control

Replace ${Source-Version} with the more-correct ${binary:Version}.

Signed-off-by: Roland Dreier <rolandd@cisco.com>
17 years agoRemove private implementation of ibv_read_sysfs_file()
Roland Dreier [Tue, 19 Jun 2007 02:17:54 +0000 (19:17 -0700)]
Remove private implementation of ibv_read_sysfs_file()

The release of libibverbs 1.0.3 (which introduced
ibv_read_sysfs_file()) was more than a year ago, so it seems safe for
libmlx4 to depend on it.  In fact libmlx4 relies on the recent fix to
libibverbs to set the state of newly created QPs, so libmlx4 wouldn't
have a chance at working with libibverbs 1.0.2 or older anyway.  So
remove libmlx4's private implementation of ibv_read_sysfs_file() and
just fail the build if libibverbs doesn't supply the function.

Signed-off-by: Roland Dreier <rolandd@cisco.com>
17 years agoAdd a memory barrier before setting an inline data segment's byte count
Jack Morgenstein [Mon, 18 Jun 2007 16:27:45 +0000 (09:27 -0700)]
Add a memory barrier before setting an inline data segment's byte count

We need a memory barrier before setting an inline segment byte count
to make sure that all the inline data for a cacheline has been written
before changing the cacheline's byte-count from 0xffffffff to
something valid.

Signed-off-by: Ishai Rabinovitz <ishai@mellanox.co.il>
Signed-off-by: Jack Morgenstein <jackm@dev.mellanox.co.il>
Signed-off-by: Roland Dreier <rolandd@cisco.com>
17 years agoFix returned max_inline_data QP cap
Roland Dreier [Sat, 16 Jun 2007 21:27:38 +0000 (14:27 -0700)]
Fix returned max_inline_data QP cap

Set the value of max_inline_data that is returned in the QP caps from
mlx4_create_qp() after we calculate the real value, rather than just
returning whatever uninitialized junk is in qp->max_inline_data before
it is set.

Signed-off-by: Roland Dreier <rolandd@cisco.com>
17 years agoMake sure inline segments in send WQEs don't cross 64 byte boundaries
Roland Dreier [Thu, 14 Jun 2007 20:23:33 +0000 (13:23 -0700)]
Make sure inline segments in send WQEs don't cross 64 byte boundaries

Hardware requires that inline data segments do not cross a 64 byte
boundary.  Make sure that send work requests satisfy this by using
multiple inline data segments when needed.

Based on a patch from Jack Morgenstein <jackm@dev.mellanox.co.il>.

Signed-off-by: Roland Dreier <rolandd@cisco.com>
17 years agoHandle buffer wraparound in mlx4_cq_clean()
Jack Morgenstein [Wed, 13 Jun 2007 20:34:30 +0000 (13:34 -0700)]
Handle buffer wraparound in mlx4_cq_clean()

When compacting CQ entries, we need to set the correct value of the
ownership bit in case the value is different between the index we copy
the CQE from and the index we copy it to.

Also correct wrong placement of () when checking QP number: the
"& 0xffffff" should be outside of the parameter to ntohl().

Found by Ronni Zimmerman of Mellanox.

Signed-off-by: Jack Morgenstein <jackm@dev.mellanox.co.il>
Signed-off-by: Roland Dreier <rolandd@cisco.com>
17 years agoHandle new FW requirement for send request prefetching
Roland Dreier [Wed, 13 Jun 2007 17:31:16 +0000 (10:31 -0700)]
Handle new FW requirement for send request prefetching

New ConnectX firmware introduces FW command interface revision 2,
which requires that for each QP, a chunk of send queue entries (the
"headroom") is kept marked as invalid, so that the HCA doesn't get
confused if it prefetches entries that haven't been posted yet.  Add
code to libmlx4 to do this.

Also, handle the new kernel ABI that adds the sq_no_prefetch parameter
to the create QP operation.  We just hard-code sq_no_prefetch to 0 and
always provide the full SQ headroom for now.

Based on a patch from Jack Morgenstein <jackm@dev.mellanox.co.il>.

Signed-off-by: Roland Dreier <rolandd@cisco.com>
17 years agoMake sure RQs have max_recv_sge >= 1
Roland Dreier [Mon, 11 Jun 2007 21:55:23 +0000 (14:55 -0700)]
Make sure RQs have max_recv_sge >= 1

When creating a QP that does have a receive queue, make sure that
max_recv_sge is >= 1.

Signed-off-by: Roland Dreier <rolandd@cisco.com>
17 years agoFix problem with inline WQE in post_send error flow
Jack Morgenstein [Mon, 11 Jun 2007 15:09:50 +0000 (18:09 +0300)]
Fix problem with inline WQE in post_send error flow

Suppose a consumer posts a list of two WQEs, with the second wqe in
the list being an INLINE which is too long.  In this case, post_send
jumps to "out" with: nreq = 1, inl positive, and size in the range
allowing blueflame. All the blueflame test conditions are met.
However, the cntl pointer now points to the invalid wqe, and this will
be "blueflamed".

Fix this by setting inl to 0 before jumping out of the loop.

Signed-off-by: Jack Morgenstein <jackm@dev.mellanox.co.il>
Signed-off-by: Roland Dreier <rolandd@cisco.com>
17 years agoFix handling of wq->tail for send completions
Eli Cohen [Mon, 11 Jun 2007 21:43:26 +0000 (14:43 -0700)]
Fix handling of wq->tail for send completions

Cast the increment added to wq->tail when send completions are
processed to uint16_t to avoid using wrong values caused by standard
integer promotions.

Signed-off-by: Eli Cohen <eli@mellanox.co.il>
Signed-off-by: Roland Dreier <rolandd@cisco.com>
17 years agoMake sure RQ allocation is always valid
Roland Dreier [Thu, 7 Jun 2007 21:11:02 +0000 (14:11 -0700)]
Make sure RQ allocation is always valid

QPs attached to an SRQ must never have their own RQ, and QPs not
attached to SRQs must have an RQ with at least 1 entry.  Enforce all
of this in set_rq_size().

Also simplify how we round up queue sizes.  There's no need to pass the
context into align_queue_size(), since that parameter is completely
unused, and we don't really need two functions for rounding up to the
next power of two.

Signed-off-by: Roland Dreier <rolandd@cisco.com>
17 years agoFix word size in doorbell allocator bitmaps
Eli Cohen [Mon, 4 Jun 2007 14:16:35 +0000 (17:16 +0300)]
Fix word size in doorbell allocator bitmaps

Use an explicitly long constant 1UL identical to the type of the
variable holding the bit mask.  This avoids using the same bit twice,
because on 64 bit architectures, 1 << 32 == 0.

Found by Dotan Barak at Mellanox.

Signed-off-by: Eli Cohen <eli@mellanox.co.il>
Signed-off-by: Roland Dreier <rolandd@cisco.com>
17 years agoFix max_send_sge and max_inline_data returned from create QP
Roland Dreier [Tue, 29 May 2007 18:31:04 +0000 (11:31 -0700)]
Fix max_send_sge and max_inline_data returned from create QP

Fix the calulation of max_inline_data and max_send_sge returned to the
user.  Without this fix, the size of the SQ WQEs may increase every
time create QP is called using values returned from a previous call.

For example, here is a quote from the output of the test showing the
problem with a UD QP:

request: cap.max_send_sge = 1,   cap.max_inline_data = 0
got:     cap.max_send_sge = 5,   cap.max_inline_data = 76

request: cap.max_send_sge  = 5,  cap.max_inline_data = 76
got:     cap. max_send_sge = 13, cap.max_inline_data = 204

The problem is that we forgot to subtract the size of the control
segment in mlx4_set_sq_sizes().

Pointed out by Eli Cohen <eli@mellanox.co.il>.

Signed-off-by: Roland Dreier <rolandd@cisco.com>
17 years agoInitialize send queue entry ownership bits
Roland Dreier [Thu, 24 May 2007 20:58:20 +0000 (13:58 -0700)]
Initialize send queue entry ownership bits

We need to initialize the owner bit of send queue WQEs to hardware
ownership whenever the QP is modified from reset to init, not just
when the QP is first allocated.  This avoids having the hardware
process stale WQEs when the QP is moved to reset but not destroyed and
then modified to init again.

This is the same bug fixed in the kernel by Eli Cohen <eli@mellanox.co.il>.

Signed-off-by: Roland Dreier <rolandd@cisco.com>
17 years agoDon't allocate RQ doorbell if using SRQ
Roland Dreier [Wed, 23 May 2007 22:25:06 +0000 (15:25 -0700)]
Don't allocate RQ doorbell if using SRQ

If a QP is attached to a shared receive queue (SRQ), then it doesn't
have a receive queue (RQ).  So don't allocate an RQ doorbell.

Signed-off-by: Roland Dreier <rolandd@cisco.com>
17 years agoHandle freeing doorbell records
Roland Dreier [Tue, 22 May 2007 21:13:15 +0000 (14:13 -0700)]
Handle freeing doorbell records

Actually implement mlx4_free_db() that just naively searches through
all doorbell pages.  Also add a doorbell type parameter to the
function to avoid searching through all CQ doorbell pages when we
really want to find an RQ doorbell.

Signed-off-by: Roland Dreier <rolandd@cisco.com>
17 years agodebian/rules: Remove DEB_DH_STRIP_ARGS
Roland Dreier [Mon, 21 May 2007 03:25:25 +0000 (20:25 -0700)]
debian/rules: Remove DEB_DH_STRIP_ARGS

We use debhelper compat level 5, so cdbs will handle this automatically.

Signed-off-by: Roland Dreier <rolandd@cisco.com>
17 years agoCheck if SRQ is full when posting receive
Roland Dreier [Mon, 21 May 2007 03:15:11 +0000 (20:15 -0700)]
Check if SRQ is full when posting receive

Make mlx4_post_srq_recv() fail if the SRQ is full (head == tail).

Signed-off-by: Roland Dreier <rolandd@cisco.com>
17 years agoPass send queue sizes from userspace to kernel
Roland Dreier [Mon, 21 May 2007 03:12:15 +0000 (20:12 -0700)]
Pass send queue sizes from userspace to kernel

Update to handle kernel mlx4 ABI version 2: pass log_2 of send queue
WQE basic block size and log_2 of number of send queue basic blocks to
the kernel to avoid bugs caused by the kernel calculating a different
send queue WQE size.  This will also allow us to use multiple BBs per
WQE if we want to someday.

Signed-off-by: Roland Dreier <rolandd@cisco.com>
17 years agoUse wc_wmb() when posting BlueFlame send WQEs
Roland Dreier [Sun, 20 May 2007 18:06:44 +0000 (11:06 -0700)]
Use wc_wmb() when posting BlueFlame send WQEs

Use wc_wmb() after copying WQE to BlueFlame register to avoid having
WQEs reach the device out of order if the BlueFlame page is mapped with
write combining.

Signed-off-by: Roland Dreier <rolandd@cisco.com>
17 years agoFix inline send posting when posting more than one request
Jack Morgenstein [Wed, 2 May 2007 14:12:24 +0000 (17:12 +0300)]
Fix inline send posting when posting more than one request

Need to set inl parameter to zero for each request when posting a list
of requests, so that the value of inl is correct for each work
request, and is not cumulative.

Signed-off-by: Jack Morgenstein <jackm@dev.mellanox.co.il>
Signed-off-by: Roland Dreier <rolandd@cisco.com>
17 years agoUse BlueFlame for inline sends
Roland Dreier [Mon, 23 Apr 2007 22:07:49 +0000 (15:07 -0700)]
Use BlueFlame for inline sends

If BlueFlame is available, map the BlueFlame page when creating a
context and use BlueFlame for inline sends.

Signed-off-by: Roland Dreier <rolandd@cisco.com>
17 years agoHandle IBV_SEND_INLINE for send work requests
Roland Dreier [Sat, 21 Apr 2007 05:14:14 +0000 (22:14 -0700)]
Handle IBV_SEND_INLINE for send work requests

If IBV_SEND_INLINE is set for a send work request, copy the data to be
sent into an inline segment in the WQE.

Signed-off-by: Roland Dreier <rolandd@cisco.com>
17 years agoRemove inline keyword from wq_overflow()
Roland Dreier [Sat, 21 Apr 2007 05:08:27 +0000 (22:08 -0700)]
Remove inline keyword from wq_overflow()

Let the compiler decide whether it should be inlined.

Signed-off-by: Roland Dreier <rolandd@cisco.com>
17 years agoImplement mlx4_cq_clean()
Roland Dreier [Thu, 19 Apr 2007 20:10:36 +0000 (13:10 -0700)]
Implement mlx4_cq_clean()

Fill in the implementation of mlx4_cq_clean(), so we sweep CQ entries
from CQs when a QP is destroyed or moved to the RESET state.

Signed-off-by: Roland Dreier <rolandd@cisco.com>
17 years agoFix paths in Debian install files for libibverbs 1.1
Roland Dreier [Thu, 19 Apr 2007 20:08:36 +0000 (13:08 -0700)]
Fix paths in Debian install files for libibverbs 1.1

Signed-off-by: Roland Dreier <rolandd@cisco.com>
17 years agoTrivial whitespace fixes
Roland Dreier [Thu, 19 Apr 2007 18:36:38 +0000 (11:36 -0700)]
Trivial whitespace fixes

Signed-off-by: Roland Dreier <rolandd@cisco.com>
17 years agoFix implicit declaration of memset() and memcpy() warnings
Jack Morgenstein [Thu, 19 Apr 2007 09:02:20 +0000 (12:02 +0300)]
Fix implicit declaration of memset() and memcpy() warnings

Fix a typo -- the include should be <string.h>, not <strings.h>.

Signed-off-by: Jack Morgenstein <jackm@dev.mellanox.co.il>
Signed-off-by: Roland Dreier <rolandd@cisco.com>
17 years agoFix CQ size sanity check
Jack Morgenstein [Thu, 19 Apr 2007 08:53:16 +0000 (11:53 +0300)]
Fix CQ size sanity check

The maximum permissible number of CQEs per CQ for Hermon is 0x3fffff,
so we need to fix the sanity check in mlx4_create_cq() accordingly.

Signed-off-by: Jack Morgenstein <jackm@dev.mellanox.co.il>
Signed-off-by: Roland Dreier <rolandd@cisco.com>
17 years agoImplement posting of RDMA and atomic operations
Roland Dreier [Fri, 13 Apr 2007 04:23:59 +0000 (21:23 -0700)]
Implement posting of RDMA and atomic operations

Clean up the definitions of remote address and atomic operations WQE
segments.  Fill in the missing code that fills in these segments when
posting RDMA or atomic operations to a send queue.

Signed-off-by: Roland Dreier <rolandd@cisco.com>
17 years agoSet correct byte_len in completions for atomic operations
Roland Dreier [Thu, 12 Apr 2007 22:20:28 +0000 (15:20 -0700)]
Set correct byte_len in completions for atomic operations

Signed-off-by: Roland Dreier <rolandd@cisco.com>
17 years agoMultiple SRQ fixes
Roland Dreier [Wed, 11 Apr 2007 06:16:59 +0000 (23:16 -0700)]
Multiple SRQ fixes

Several one-liner fixes to SRQ support:
 - Scatter entry address is 64 bits, so use htonll() instead of
   htonl() when filling in WQE.
 - Minimum SRQ WQE size is 32 bytes, so use 5 as a minimum value of
   wqe_shift.
 - When initializing next_wqe_index values, use htons() to put indices
   into big-endian byte order.

Signed-off-by: Roland Dreier <rolandd@cisco.com>
17 years agoTrivial whitespace change to line up '='s
Roland Dreier [Wed, 11 Apr 2007 06:14:25 +0000 (23:14 -0700)]
Trivial whitespace change to line up '='s

Signed-off-by: Roland Dreier <rolandd@cisco.com>
17 years agoAdd all PCI ids
Roland Dreier [Wed, 11 Apr 2007 03:14:56 +0000 (20:14 -0700)]
Add all PCI ids

SDR, DDR and QDR IB versions of ConnectX have different PCI device ids
(0x6340, 0x634a and 0x6354).  Add all of them to the table of
supported devices.

Signed-off-by: Roland Dreier <rolandd@cisco.com>
17 years agoTrivial whitespace cleanups
Roland Dreier [Tue, 10 Apr 2007 18:24:36 +0000 (11:24 -0700)]
Trivial whitespace cleanups

Signed-off-by: Roland Dreier <rolandd@cisco.com>
17 years agoDon't set last byte of GID for non-global address vectors
Roland Dreier [Tue, 10 Apr 2007 17:33:48 +0000 (10:33 -0700)]
Don't set last byte of GID for non-global address vectors

Previous generation HCAs needed the last byte of the GID set to 2 for
non-global address vectors, but ConnectX just ignores the remote GID
field for non-global AVs, so remove the unnecessary code that sets it.

Signed-off-by: Roland Dreier <rolandd@cisco.com>
17 years agoRemove unused source file ah.c
Roland Dreier [Tue, 10 Apr 2007 17:31:03 +0000 (10:31 -0700)]
Remove unused source file ah.c

Signed-off-by: Roland Dreier <rolandd@cisco.com>
17 years agoImplement handling for completions with error
Roland Dreier [Tue, 10 Apr 2007 03:36:47 +0000 (20:36 -0700)]
Implement handling for completions with error

Convert status from HCA's hardware values to libibverbs enum for
completions with error in mlx4_handle_error_cqe().  Also, there's no
way mlx4_handle_error_cqe() can fail, so there's no reason for it to
return a value.

Signed-off-by: Roland Dreier <rolandd@cisco.com>
17 years agoSimplify completion with error handling
Roland Dreier [Tue, 10 Apr 2007 03:20:44 +0000 (20:20 -0700)]
Simplify completion with error handling

The out-of-line function to handle error CQEs doesn't need as many
parameters as the libmthca version did, so get rid of everything
except the CQE pointer and the WC pointer.

Signed-off-by: Roland Dreier <rolandd@cisco.com>
17 years agoInitial import of libmlx4 repository
Roland Dreier [Mon, 9 Apr 2007 07:49:42 +0000 (00:49 -0700)]
Initial import of libmlx4 repository

Signed-off-by: Roland Dreier <rolandd@cisco.com>