intel-gfx.lists.freedesktop.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 0/3] implement multiple ring buffer V1
@ 2010-05-19  9:33 Zou Nan hai
  2010-05-19 17:26 ` Daniel Vetter
  0 siblings, 1 reply; 4+ messages in thread
From: Zou Nan hai @ 2010-05-19  9:33 UTC (permalink / raw)
  To: intel-gfx, Anholt Eric, Xiang Hai hao

 The patch series try to abstruct ring buffer
 structure, implement BSD (bit stream decoder) ring
 buffer for H.264/VC1 VLD decoding.

 I mark this as V1 for review.

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

* Re: [PATCH 0/3] implement multiple ring buffer V1
  2010-05-19  9:33 [PATCH 0/3] implement multiple ring buffer V1 Zou Nan hai
@ 2010-05-19 17:26 ` Daniel Vetter
  2010-05-20  7:38   ` Zou, Nanhai
  0 siblings, 1 reply; 4+ messages in thread
From: Daniel Vetter @ 2010-05-19 17:26 UTC (permalink / raw)
  To: Zou Nan hai; +Cc: intel-gfx, Anholt Eric

On Wed, May 19, 2010 at 05:33:28PM +0800, Zou Nan hai wrote:
>  The patch series try to abstruct ring buffer
>  structure, implement BSD (bit stream decoder) ring
>  buffer for H.264/VC1 VLD decoding.
> 
>  I mark this as V1 for review.

Woot, we're (slowly) getting there. I'll do an in-depth review some when
later this week (running short on free time, atm). On a quick look, the
series has definitely improved.

One nitpick up-front: You haven't sent the individual patches as follow-ups
to the introduction email. Just use git format-patch and git send-email,
they'll take care of all the boring details for you. Quick primer, if
you're totally lazy:

$ git format-patch --cover-letter -o output_directory revision_range

creates a bunch of .patch files including introduction letter with the
commits int the given range. You only have to change the subject & text of
the cover letter. Then

$ git send-email --to 'bla@bla.com' --cc 'foo@bar.com' *.patch [--dry-run]

sends them away. Use --dry-run to check first that git does the right
thing with your patches.

Yours, Daniel
-- 
Daniel Vetter
Mail: daniel@ffwll.ch
Mobile: +41 (0)79 365 57 48

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

* Re: [PATCH 0/3] implement multiple ring buffer V1
  2010-05-19 17:26 ` Daniel Vetter
@ 2010-05-20  7:38   ` Zou, Nanhai
  2010-05-20 15:32     ` Daniel Vetter
  0 siblings, 1 reply; 4+ messages in thread
From: Zou, Nanhai @ 2010-05-20  7:38 UTC (permalink / raw)
  To: Daniel Vetter; +Cc: intel-gfx, Anholt, Eric


>>-----Original Message-----
>>From: Daniel Vetter [mailto:daniel@ffwll.ch]
>>Sent: 2010年5月20日 1:26
>>To: Zou, Nanhai
>>Cc: intel-gfx; Anholt, Eric; Xiang, Haihao
>>Subject: Re: [Intel-gfx] [PATCH 0/3] implement multiple ring buffer V1
>>
>>On Wed, May 19, 2010 at 05:33:28PM +0800, Zou Nan hai wrote:
>>>  The patch series try to abstruct ring buffer
>>>  structure, implement BSD (bit stream decoder) ring
>>>  buffer for H.264/VC1 VLD decoding.
>>>
>>>  I mark this as V1 for review.
>>
>>Woot, we're (slowly) getting there. I'll do an in-depth review some when
>>later this week (running short on free time, atm). On a quick look, the
>>series has definitely improved.
>>
>>One nitpick up-front: You haven't sent the individual patches as follow-ups
>>to the introduction email. Just use git format-patch and git send-email,
>>they'll take care of all the boring details for you. Quick primer, if
>>you're totally lazy:
>>
>>$ git format-patch --cover-letter -o output_directory revision_range
>>
>>creates a bunch of .patch files including introduction letter with the
>>commits int the given range. You only have to change the subject & text of
>>the cover letter. Then
>>
>>$ git send-email --to 'bla@bla.com' --cc 'foo@bar.com' *.patch [--dry-run]
>>
>>sends them away. Use --dry-run to check first that git does the right
>>thing with your patches.

Thanks for the hints,
	I was using git format-patch and git-send-email to send out those patches.
However later I found regression on non-ironlake platform with this series of patch. I have fixed that and doing regression and duration tests over the patch. I will sent out V2 tomorrow.

Thanks
Zou Nan hai
>>
>>Yours, Daniel
>>--
>>Daniel Vetter
>>Mail: daniel@ffwll.ch
>>Mobile: +41 (0)79 365 57 48
_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/intel-gfx

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

* Re: [PATCH 0/3] implement multiple ring buffer V1
  2010-05-20  7:38   ` Zou, Nanhai
@ 2010-05-20 15:32     ` Daniel Vetter
  0 siblings, 0 replies; 4+ messages in thread
From: Daniel Vetter @ 2010-05-20 15:32 UTC (permalink / raw)
  To: Zou, Nanhai; +Cc: intel-gfx, Anholt, Eric

On Thu, May 20, 2010 at 03:38:13PM +0800, Zou, Nanhai wrote:
> Thanks for the hints,
> 	I was using git format-patch and git-send-email to send out those patches.

Hmm, that's strange. I've checked my ~/.gitconfig and there is nothing in
there to enable automagic threading - it Just Works (tm). And git help
send-email also says that threaded is the default. Maybe check your git
configuration?

[I have sendemail.chainreplyto = no in my .gitconfig, though, to please
Jesse Barnes]

> However later I found regression on non-ironlake platform with this
> series of patch. I have fixed that and doing regression and duration
> tests over the patch. I will sent out V2 tomorrow.

Ok, I'll wait till v2 arrives on intel-gfx with reviewing your patches.

> Thanks
> Zou Nan hai

Cheers, Daniel
-- 
Daniel Vetter
Mail: daniel@ffwll.ch
Mobile: +41 (0)79 365 57 48

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

end of thread, other threads:[~2010-05-20 15:31 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2010-05-19  9:33 [PATCH 0/3] implement multiple ring buffer V1 Zou Nan hai
2010-05-19 17:26 ` Daniel Vetter
2010-05-20  7:38   ` Zou, Nanhai
2010-05-20 15:32     ` Daniel Vetter

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).