Message ID | 1442410986-28232-33-git-send-email-kamalh@mellanox.com (mailing list archive) |
---|---|
State | Superseded |
Headers | show |
On 9/16/2015 4:43 PM, Kamal Heib wrote: > From: Amir Vadai <amirv@mellanox.com> > > Things todo in order to get out of staging subtree. > > Signed-off-by: Amir Vadai <amirv@mellanox.com> > Signed-off-by: Kamal Heib <kamalh@mellanox.com> > --- > drivers/staging/rxe/TODO | 15 +++++++++++++++ > 1 file changed, 15 insertions(+) > create mode 100644 drivers/staging/rxe/TODO > > diff --git a/drivers/staging/rxe/TODO b/drivers/staging/rxe/TODO > new file mode 100644 > index 0000000..a621b27 > --- /dev/null > +++ b/drivers/staging/rxe/TODO > @@ -0,0 +1,15 @@ > +Aug, 2015 > + > +- Remove software processing of IB protocol and place in library for use > + by qib, ipath (if still present), hfi1, and soft-roce > +- Do not use tasklet in completion flow > +- Need to free resources if user space didn't. > +- Share structures from ib_user_verbs.h instead of copying in ib_rxe.h > +- Move IBA header types and methods from rxe_hdr.h into IB core > +- Cleanup members of rxe_pkt_info that already exists in packet header > +- Refactor post_send_one function to get better performance. > +- Refactor rxe_mem struct to be clear what is type of memory that it's holding. > +- Use single reference count from the pool to the device, instead of having a single > + reference on the device kept by each element in the pool. > +- Calculate ICRC for incoming packets. > +- Use hash table to hold net_info instead of fixed size array used now. > Lets add: - Support work request interface memory registration (I'll look into that). -- To unsubscribe from this list: send the line "unsubscribe linux-rdma" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
diff --git a/drivers/staging/rxe/TODO b/drivers/staging/rxe/TODO new file mode 100644 index 0000000..a621b27 --- /dev/null +++ b/drivers/staging/rxe/TODO @@ -0,0 +1,15 @@ +Aug, 2015 + +- Remove software processing of IB protocol and place in library for use + by qib, ipath (if still present), hfi1, and soft-roce +- Do not use tasklet in completion flow +- Need to free resources if user space didn't. +- Share structures from ib_user_verbs.h instead of copying in ib_rxe.h +- Move IBA header types and methods from rxe_hdr.h into IB core +- Cleanup members of rxe_pkt_info that already exists in packet header +- Refactor post_send_one function to get better performance. +- Refactor rxe_mem struct to be clear what is type of memory that it's holding. +- Use single reference count from the pool to the device, instead of having a single + reference on the device kept by each element in the pool. +- Calculate ICRC for incoming packets. +- Use hash table to hold net_info instead of fixed size array used now.