All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] Revert "ALSA: firewire-lib: fix inverted node IDs for amdtp_packet events"
@ 2019-06-23  1:23 Takashi Sakamoto
  2019-06-24  9:00 ` Takashi Iwai
  0 siblings, 1 reply; 3+ messages in thread
From: Takashi Sakamoto @ 2019-06-23  1:23 UTC (permalink / raw)
  To: clemens, tiwai; +Cc: alsa-devel

This reverts commit e703965a129cdd72ff74e248f8fbf0d617844527.

When creating this patch, I compared the value of src field to the
value of first byte of cip_header field (SID) in tracing event.
But in this test I used a device which has a quirk to transfer
isochronous packet with invalid SID.
---
 sound/firewire/amdtp-stream-trace.h | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/sound/firewire/amdtp-stream-trace.h b/sound/firewire/amdtp-stream-trace.h
index 5fe0920f04e5..ab708857979f 100644
--- a/sound/firewire/amdtp-stream-trace.h
+++ b/sound/firewire/amdtp-stream-trace.h
@@ -35,11 +35,11 @@ TRACE_EVENT(amdtp_packet,
 		__entry->cycle = cycles % CYCLES_PER_SECOND;
 		__entry->channel = s->context->channel;
 		if (s->direction == AMDTP_IN_STREAM) {
-			__entry->src = fw_parent_device(s->unit)->card->node_id;
-			__entry->dest = fw_parent_device(s->unit)->node_id;
-		} else {
 			__entry->src = fw_parent_device(s->unit)->node_id;
 			__entry->dest = fw_parent_device(s->unit)->card->node_id;
+		} else {
+			__entry->src = fw_parent_device(s->unit)->card->node_id;
+			__entry->dest = fw_parent_device(s->unit)->node_id;
 		}
 		if (cip_header) {
 			memcpy(__get_dynamic_array(cip_header), cip_header,
-- 
2.20.1

^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PATCH] Revert "ALSA: firewire-lib: fix inverted node IDs for amdtp_packet events"
  2019-06-23  1:23 [PATCH] Revert "ALSA: firewire-lib: fix inverted node IDs for amdtp_packet events" Takashi Sakamoto
@ 2019-06-24  9:00 ` Takashi Iwai
  2019-06-24  9:14   ` Takashi Sakamoto
  0 siblings, 1 reply; 3+ messages in thread
From: Takashi Iwai @ 2019-06-24  9:00 UTC (permalink / raw)
  To: Takashi Sakamoto; +Cc: alsa-devel, clemens

On Sun, 23 Jun 2019 03:23:33 +0200,
Takashi Sakamoto wrote:
> 
> This reverts commit e703965a129cdd72ff74e248f8fbf0d617844527.
> 
> When creating this patch, I compared the value of src field to the
> value of first byte of cip_header field (SID) in tracing event.
> But in this test I used a device which has a quirk to transfer
> isochronous packet with invalid SID.

Could you give your sign-off and fixes tags?


thanks,

Takashi

> ---
>  sound/firewire/amdtp-stream-trace.h | 6 +++---
>  1 file changed, 3 insertions(+), 3 deletions(-)
> 
> diff --git a/sound/firewire/amdtp-stream-trace.h b/sound/firewire/amdtp-stream-trace.h
> index 5fe0920f04e5..ab708857979f 100644
> --- a/sound/firewire/amdtp-stream-trace.h
> +++ b/sound/firewire/amdtp-stream-trace.h
> @@ -35,11 +35,11 @@ TRACE_EVENT(amdtp_packet,
>  		__entry->cycle = cycles % CYCLES_PER_SECOND;
>  		__entry->channel = s->context->channel;
>  		if (s->direction == AMDTP_IN_STREAM) {
> -			__entry->src = fw_parent_device(s->unit)->card->node_id;
> -			__entry->dest = fw_parent_device(s->unit)->node_id;
> -		} else {
>  			__entry->src = fw_parent_device(s->unit)->node_id;
>  			__entry->dest = fw_parent_device(s->unit)->card->node_id;
> +		} else {
> +			__entry->src = fw_parent_device(s->unit)->card->node_id;
> +			__entry->dest = fw_parent_device(s->unit)->node_id;
>  		}
>  		if (cip_header) {
>  			memcpy(__get_dynamic_array(cip_header), cip_header,
> -- 
> 2.20.1
> 

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH] Revert "ALSA: firewire-lib: fix inverted node IDs for amdtp_packet events"
  2019-06-24  9:00 ` Takashi Iwai
@ 2019-06-24  9:14   ` Takashi Sakamoto
  0 siblings, 0 replies; 3+ messages in thread
From: Takashi Sakamoto @ 2019-06-24  9:14 UTC (permalink / raw)
  To: Takashi Iwai; +Cc: alsa-devel, clemens

On Mon, Jun 24, 2019 at 11:00:54AM +0200, Takashi Iwai wrote:
> On Sun, 23 Jun 2019 03:23:33 +0200,
> Takashi Sakamoto wrote:
> > 
> > This reverts commit e703965a129cdd72ff74e248f8fbf0d617844527.
> > 
> > When creating this patch, I compared the value of src field to the
> > value of first byte of cip_header field (SID) in tracing event.
> > But in this test I used a device which has a quirk to transfer
> > isochronous packet with invalid SID.
> 
> Could you give your sign-off and fixes tags?

I'll resubmit with them...


Thanks

Takashi Sakamoto

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2019-06-24  9:14 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-06-23  1:23 [PATCH] Revert "ALSA: firewire-lib: fix inverted node IDs for amdtp_packet events" Takashi Sakamoto
2019-06-24  9:00 ` Takashi Iwai
2019-06-24  9:14   ` Takashi Sakamoto

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.