Christoph Hellwig wrote:
+/* iser_dto_add_regd_buff - increments the reference count for * + * the registered buffer & adds it to the DTO object */ +static void iser_dto_add_regd_buff(struct iser_dto *p_dto, + struct iser_regd_buf *p_regd_buf, + unsigned long use_offset, + unsigned long use_size) +{ + int add_idx; + + atomic_inc(&p_regd_buf->ref_count);Please kill the p_ prefix for pointer types all over the code.
done, accompanied by another cosmetic change of removing the iser_ pref Or. ------------------------------------------------------------------------ r5503 | ogerlitz | 2006-02-27 11:12:24 +0200 (Mon, 27 Feb 2006) | 4 lines removed the iser_ prefix from struct fields and variable names Signed-off-by: Or Gerlitz <[EMAIL PROTECTED]> ------------------------------------------------------------------------ r5502 | ogerlitz | 2006-02-27 11:09:38 +0200 (Mon, 27 Feb 2006) | 4 lines removed the p_ prefix from struct fields and variable names Signed-off-by: Or Gerlitz <[EMAIL PROTECTED]> ------------------------------------------------------------------------ _______________________________________________ openib-general mailing list [email protected] http://openib.org/mailman/listinfo/openib-general To unsubscribe, please visit http://openib.org/mailman/listinfo/openib-general
