* [PATCH] opensm/complib use portable macro syntax
@ 2010-05-21 16:45 Smith, Stan
[not found] ` <3F6F638B8D880340AB536D29CD4C1E192562EBBAE9-osO9UTpF0USkrb+BlOpmy7fspsVTdybXVpNB7YpNyf8@public.gmane.org>
0 siblings, 1 reply; 3+ messages in thread
From: Smith, Stan @ 2010-05-21 16:45 UTC (permalink / raw)
To: Sasha Khapyorsky
Cc: ofw-ZwoEplunGu1OwGhvXhtEPSCwEArCW2h5@public.gmane.org,
linux-rdma-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
Use portable macro argument syntax.
signed-of-by: stan smith <stan.smith-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>
diff --git a/opensm/complib/cl_event_wheel.c b/opensm/complib/cl_event_wheel.c
index ef6d598..eb894a6 100644
--- a/opensm/complib/cl_event_wheel.c
+++ b/opensm/complib/cl_event_wheel.c
@@ -42,7 +42,7 @@
#include <complib/cl_event_wheel.h>
#include <complib/cl_debug.h>
-#define CL_DBG(fmt, arg...)
+#define CL_DBG(fmt, ...)
static cl_status_t __event_will_age_before(IN const cl_list_item_t *
const p_list_item, IN void *context)
--
To unsubscribe from this list: send the line "unsubscribe linux-rdma" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH] opensm/complib use portable macro syntax
[not found] ` <3F6F638B8D880340AB536D29CD4C1E192562EBBAE9-osO9UTpF0USkrb+BlOpmy7fspsVTdybXVpNB7YpNyf8@public.gmane.org>
@ 2010-05-25 10:54 ` Sasha Khapyorsky
2010-05-25 15:18 ` Smith, Stan
0 siblings, 1 reply; 3+ messages in thread
From: Sasha Khapyorsky @ 2010-05-25 10:54 UTC (permalink / raw)
To: Smith, Stan
Cc: ofw-ZwoEplunGu1OwGhvXhtEPSCwEArCW2h5@public.gmane.org,
linux-rdma-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
Hi Stan,
On 09:45 Fri 21 May , Smith, Stan wrote:
>
> Use portable macro argument syntax.
>
> signed-of-by: stan smith <stan.smith-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>
^^^^^^^^^^^^
Signed-off-by:
>
The patch below is malformed - whitespaces are mangled (please check
your mailer).
Applied by hands. Thanks.
Sasha
> diff --git a/opensm/complib/cl_event_wheel.c b/opensm/complib/cl_event_wheel.c
> index ef6d598..eb894a6 100644
> --- a/opensm/complib/cl_event_wheel.c
> +++ b/opensm/complib/cl_event_wheel.c
> @@ -42,7 +42,7 @@
> #include <complib/cl_event_wheel.h>
> #include <complib/cl_debug.h>
>
> -#define CL_DBG(fmt, arg...)
> +#define CL_DBG(fmt, ...)
>
> static cl_status_t __event_will_age_before(IN const cl_list_item_t *
> const p_list_item, IN void *context)
>
--
To unsubscribe from this list: send the line "unsubscribe linux-rdma" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
^ permalink raw reply [flat|nested] 3+ messages in thread
* RE: [PATCH] opensm/complib use portable macro syntax
2010-05-25 10:54 ` Sasha Khapyorsky
@ 2010-05-25 15:18 ` Smith, Stan
0 siblings, 0 replies; 3+ messages in thread
From: Smith, Stan @ 2010-05-25 15:18 UTC (permalink / raw)
To: Sasha Khapyorsky
Cc: ofw-ZwoEplunGu1OwGhvXhtEPSCwEArCW2h5@public.gmane.org,
linux-rdma-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
Sasha Khapyorsky wrote:
> Hi Stan,
>
> On 09:45 Fri 21 May , Smith, Stan wrote:
>>
>> Use portable macro argument syntax.
>>
>> signed-of-by: stan smith <stan.smith-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>
> ^^^^^^^^^^^^
> Signed-off-by:
oops.
>
>>
>
> The patch below is malformed - whitespaces are mangled (please check
> your mailer).
>
> Applied by hands. Thanks.
Sorry, will investigate.
Perhaps I should resend once I've figured out the story.
>
> Sasha
>
>> diff --git a/opensm/complib/cl_event_wheel.c
>> b/opensm/complib/cl_event_wheel.c index ef6d598..eb894a6 100644 ---
>> a/opensm/complib/cl_event_wheel.c +++
>> b/opensm/complib/cl_event_wheel.c @@ -42,7 +42,7 @@
>> #include <complib/cl_event_wheel.h>
>> #include <complib/cl_debug.h>
>>
>> -#define CL_DBG(fmt, arg...)
>> +#define CL_DBG(fmt, ...)
>>
>> static cl_status_t __event_will_age_before(IN const cl_list_item_t *
>> const p_list_item, IN
>> void *context)
--
To unsubscribe from this list: send the line "unsubscribe linux-rdma" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2010-05-25 15:18 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-05-21 16:45 [PATCH] opensm/complib use portable macro syntax Smith, Stan
[not found] ` <3F6F638B8D880340AB536D29CD4C1E192562EBBAE9-osO9UTpF0USkrb+BlOpmy7fspsVTdybXVpNB7YpNyf8@public.gmane.org>
2010-05-25 10:54 ` Sasha Khapyorsky
2010-05-25 15:18 ` Smith, Stan
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox