[PATCH 2/2] dim: Catch mailman mangling

2019-02-12 Thread Daniel Vetter
fd.o had to switch to mangling From: addresses for a lot of domains. Catch them. Cc: Daniel Stone Signed-off-by: Daniel Vetter --- dim | 7 +++ 1 file changed, 7 insertions(+) diff --git a/dim b/dim index 9592851cdca8..cb9c0671a501 100755 --- a/dim +++ b/dim @@ -858,6 +858,13 @@ function

Re: [PULL] topic/component-typed

2019-02-11 Thread Daniel Vetter
On Mon, Feb 11, 2019 at 7:57 PM Takashi Iwai wrote: > > On Mon, 11 Feb 2019 19:25:12 +0100, > Sam Ravnborg wrote: > > > > Hi Daniel. > > > > On Mon, Feb 11, 2019 at 06:15:20PM +0100, Daniel Vetter wrote: > > > Hi all, > > > > > > He

Re: [PULL] topic/component-typed

2019-02-11 Thread Daniel Vetter
On Mon, Feb 11, 2019 at 7:25 PM Sam Ravnborg wrote: > > Hi Daniel. > > On Mon, Feb 11, 2019 at 06:15:20PM +0100, Daniel Vetter wrote: > > Hi all, > > > > Here's the typed component topic branch. > > > > drm-intel maintainers: Please pull,

[PULL] topic/component-typed

2019-02-11 Thread Daniel Vetter
-misc trees at least. -------- Daniel Vetter (3): component: Add documentation components: multiple components for a device i915/snd_hdac: I915 subcomponent for the snd_hdac Documentation/driver-api/component.rst | 17 +++

[PATCH] dim: basic Fixes: check

2019-02-08 Thread Daniel Vetter
Somewhat inspired by Stephen Rotwell's code, but because random unfriendly encounters with bash it ended up looking quite a bit different. Also only really checks sha1 for now, but that should be good enough. Cc: Dave Airlie Signed-off-by: Daniel Vetter --- dim

Re: [PULL] drm-intel-next

2019-02-04 Thread Daniel Vetter
++- > > > drivers/gpu/drm/i915/selftests/i915_vma.c | 4 +- > > > drivers/gpu/drm/i915/selftests/igt_live_test.c | 7 - > > > drivers/gpu/drm/i915/selftests/igt_spinner.c | 5 - > > > drivers/gpu/drm/i915/selftests/intel_breadcrumbs.c | 470 -

Re: [PATCH] dim: do not run hooks when rebuilding tip

2019-01-25 Thread Daniel Vetter
On Fri, Jan 25, 2019 at 2:32 PM Jani Nikula wrote: > > On Fri, 25 Jan 2019, Daniel Vetter wrote: > > On Fri, Jan 25, 2019 at 02:27:17AM -0800, Lucas De Marchi wrote: > >> dim rebuild-tip was failing for me and after investigation with Daniel > >> Vetter, the culpr

Re: [PATCH] dim: do not run hooks when rebuilding tip

2019-01-25 Thread Daniel Vetter
On Fri, Jan 25, 2019 at 02:27:17AM -0800, Lucas De Marchi wrote: > dim rebuild-tip was failing for me and after investigation with Daniel > Vetter, the culprit was having a pre-commit git hook enabled. Let's pass > --no-verify to avoid the same mistake for other people. > >

Re: [PATCH] drm.rst: Some notes

2019-01-17 Thread Daniel Vetter
On Thu, Jan 17, 2019 at 8:21 AM Jani Nikula wrote: > > On Fri, 11 Jan 2019, Daniel Vetter wrote: > > Some early notes from my first few pull requests. Lots of things that > > need to be discussed/clarified/agreed upon, but should be good for a > > starting point at lea

Re: [PATCH] dim: fix shellcheck warning in ask_user

2019-01-16 Thread Daniel Vetter
On Wed, Jan 16, 2019 at 01:34:56PM +0200, Jani Nikula wrote: > Fix: > > local prompt="$@ (y/N) " >^-- SC2124: Assigning an array to a string! Assign as >array, or use * instead of @ to concatenate. > > Reported-by: Daniel Vetter &

Re: [PATCH] Revert "dim: Only check our own commits"

2019-01-16 Thread Daniel Vetter
On Tue, Jan 15, 2019 at 11:37 AM Jani Nikula wrote: > > On Tue, 15 Jan 2019, Daniel Vetter wrote: > > This reverts commit 6ce0305a8b99bc51a285c0f96cb226378c7834ae. > > Calling it a revert is a bit funny because you combine both the old and > the new things. Update while

Re: [PULL] drm-misc-next

2019-01-16 Thread Daniel Vetter
- a bunch of fixes for virtio > - a bunch of fixes for dp_mst and drivers using it, and introduction of a >new refcounting scheme > - Convertion of bochs to atomic and generic fbdev emulation > - Allow meson to remove the firmware framebuffers > > ---

[PATCH] Revert "dim: Only check our own commits"

2019-01-15 Thread Daniel Vetter
This reverts commit 6ce0305a8b99bc51a285c0f96cb226378c7834ae. We need to filter both using --first-parent (for proper backmerges) and --committer (for fast-forward merges). Cc: Sean Paul Cc: Maxime Ripard Cc: Jani Nikula Reported-by: Jani Nikula Signed-off-by: Daniel Vetter --- dim | 6

Re: [PATCH] dim: Only check our own commits

2019-01-15 Thread Daniel Vetter
On Mon, Jan 14, 2019 at 12:43:07PM +0200, Jani Nikula wrote: > On Fri, 11 Jan 2019, Daniel Vetter wrote: > > Originally we used the committer to filter for this, but --first-parent > > is better. > > > > Reviewed-and-tested-by: Sean Paul > > Cc: Sean Paul >

[PATCH] dim: Only check our own commits

2019-01-11 Thread Daniel Vetter
Originally we used the committer to filter for this, but --first-parent is better. Reviewed-and-tested-by: Sean Paul Cc: Sean Paul Cc: Maxime Ripard Signed-off-by: Daniel Vetter --- dim | 6 ++ 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/dim b/dim index dafbf946e0b7

[PATCH] drm.rst: Some notes

2019-01-11 Thread Daniel Vetter
Some early notes from my first few pull requests. Lots of things that need to be discussed/clarified/agreed upon, but should be good for a starting point at least. Not entirely sure how we should split this all up, so all in one file for now. v2: Fix typo Cc: Dave Airlie Signed-off-by: Daniel

Re: [PATCH 5/6] dim: support master branch usage for maintainer-tools update

2019-01-11 Thread Daniel Vetter
On Fri, Jan 11, 2019 at 05:06:02PM +0200, Jani Nikula wrote: > The default repository is master nowadays. > > Signed-off-by: Jani Nikula On 5&6: Reviewed-by: Daniel Vetter > --- > dim | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > > diff --git a/di

Re: [PATCH 6/6] doc: getting started revamp

2019-01-11 Thread Daniel Vetter
x/kernel/git/torvalds/linux.git $DIM_REPO > + > +Finish the setup, and have dim create drm-tip and drm-rerere, as well as > +``DIM_REPO``:: > + > + $ dim setup > + > +If you like, you can also set up bash completion for dim by adding something > +like this to your ``.bashrc``::

Re: [PATCH 3/6] dim: ask the user to create DIM_PREFIX and clone DIM_REPO

2019-01-11 Thread Daniel Vetter
On Fri, Jan 11, 2019 at 05:06:00PM +0200, Jani Nikula wrote: > Help the users if they so desire. > > Signed-off-by: Jani Nikula Yeah this is nice! Reviewed-by: Daniel Vetter > --- > dim | 41 +++-- > 1 file changed, 31 insertion

Re: [PATCH 2/6] dim: simplify rebuild-tip output

2019-01-11 Thread Daniel Vetter
On Fri, Jan 11, 2019 at 05:05:59PM +0200, Jani Nikula wrote: > If the dim repo name matches the git remote, only print the repo name. > > Signed-off-by: Jani Nikula On 1&2: Reviewed-by: Daniel Vetter > --- > dim | 6 +- > 1 file changed, 5 insertions(+), 1 deletio

Re: [PATCH] dim: move Daniel from pull request mail Cc: to To:

2019-01-11 Thread Daniel Vetter
On Fri, Jan 11, 2019 at 3:16 PM Jani Nikula wrote: > > On Fri, 11 Jan 2019, Daniel Vetter wrote: > > On Fri, Jan 11, 2019 at 12:50:38PM +0200, Jani Nikula wrote: > >> On Fri, 11 Jan 2019, Daniel Vetter wrote: > >> > On Fri, Jan 11, 2019 at 11:26:11AM +0200, Ja

Re: [PATCH] dim: move Daniel from pull request mail Cc: to To:

2019-01-11 Thread Daniel Vetter
On Fri, Jan 11, 2019 at 12:50:38PM +0200, Jani Nikula wrote: > On Fri, 11 Jan 2019, Daniel Vetter wrote: > > On Fri, Jan 11, 2019 at 11:26:11AM +0200, Jani Nikula wrote: > >> The pull requests are more than just FYI for Daniel nowadays. > >> > >> Cc: Dan

[PATCH] drm.rst: Some notes

2019-01-11 Thread Daniel Vetter
Some early notes from my first few pull requests. Lots of things that need to be discussed/clarified/agreed upon, but should be good for a starting point at least. Not entirely sure how we should split this all up, so all in one file for now. Cc: Dave Airlie Signed-off-by: Daniel Vetter

Re: [PATCH] dim: move Daniel from pull request mail Cc: to To:

2019-01-11 Thread Daniel Vetter
On Fri, Jan 11, 2019 at 11:26:11AM +0200, Jani Nikula wrote: > The pull requests are more than just FYI for Daniel nowadays. > > Cc: Daniel Vetter > Signed-off-by: Jani Nikula Reviewed-by: Daniel Vetter Still wondering whether we could look up the corresponding MAINTAINERS e

Re: [PULL v2] drm-misc-fixes

2019-01-11 Thread Daniel Vetter
rivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm.c | 37 -- > drivers/gpu/drm/bridge/tc358767.c | 48 ++-- > drivers/gpu/drm/drm_atomic_uapi.c | 3 +- > drivers/gpu/drm/drm_fb_helper.c | 133 > +++++----- > drivers/gpu/drm/

Re: [PULL] drm-intel-fixes

2019-01-11 Thread Daniel Vetter
3 +- > drivers/gpu/drm/i915/intel_psr.c | 6 > include/drm/drm_dp_helper.h | 7 > 10 files changed, 98 insertions(+), 39 deletions(-) > > -- > Jani Nikula, Intel Open Source Graphics Center -- Daniel Vetter Software Engineer, Intel Corporation http://blog.ffwll.ch ___ dim-tools mailing list dim-tools@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/dim-tools

Re: [PATCH] dim: remove special casing for drm-intel-next

2019-01-10 Thread Daniel Vetter
branches" > --- Reviewed-by: Daniel Vetter Only thing I've found that could cause a hiccup for the smooth transition is the dim_push_branch logic. Since we need a flag day anyway that shouldn't be too hard really (or we could type a special version which picks the later of dinq

Re: [PATCH] nightly.conf: add drm-intel-next to drm-tip branches

2019-01-10 Thread Daniel Vetter
uld never be conflicts here. > > Signed-off-by: Jani Nikula Acked-by: Daniel Vetter > --- > nightly.conf | 1 + > 1 file changed, 1 insertion(+) > > diff --git a/nightly.conf b/nightly.conf > index 464ccde31afd..222103eb0441 100644 > --- a/nightly.con

Re: [PATCH] dim: ignore checkpatch BOOL_MEMBER warning for drm-intel

2019-01-10 Thread Daniel Vetter
k to our own threads about why this isn't quite so much black&white. > > For most of our use cases having the compiler DTRT without explicit !! > is preferrable, even at the cost of the relatively small space waste. > > Signed-off-by: Jani Nikula Reviewed-by: Daniel Vetter &

drm-misc-next vs. drm-misc-next-fixes

2018-12-24 Thread Daniel Vetter
s the drm-misc-next-fixes maintainers should occasionally check for misplaced patches, should probably add this here: https://drm.pages.freedesktop.org/maintainer-tools/maintainer-drm-misc.html#maintainer-s-duties Cheers, Daniel -- Daniel Vetter Software Engineer, Intel Corporation +4

[PULL] drm-fixes

2018-12-21 Thread Daniel Vetter
tch, cc: stable -------- Daniel Vetter (1): Merge tag 'drm-misc-fixes-2018-12-20' of git://anongit.freedesktop.org/drm/drm-misc into drm-fixes Gustavo A. R. Silva (1): drm/ioctl: Fix Spectre v1 vulnerabilities drivers

Re: [PULL] drm-misc-fixes

2018-12-20 Thread Daniel Vetter
> Gustavo A. R. Silva (1): > drm/ioctl: Fix Spectre v1 vulnerabilities > > drivers/gpu/drm/drm_ioctl.c | 10 -- > 1 file changed, 8 insertions(+), 2 deletions(-) > > -- > Sean Paul, Software Engin

Re: [PATCH] dim: Dumbest base64 parser ever for apply-pull

2018-12-19 Thread Daniel Vetter
On Wed, Dec 19, 2018 at 9:47 AM Jani Nikula wrote: > > On Fri, 14 Dec 2018, Daniel Vetter wrote: > > Avoids me having to ask patchwork to decode them for me. Worked on the > > 2 pulls from Dave and Inki I tried it on. > > > > v2: Use message_print_body (Jani). &

Re: [maintainer-tools PATCH v2 0/4] dim: fix git directory evaluation

2018-12-18 Thread Daniel Vetter
> dim-tools mailing list > dim-tools@lists.freedesktop.org > https://lists.freedesktop.org/mailman/listinfo/dim-tools -- Daniel Vetter Software Engineer, Intel Corporation http://blog.ffwll.ch ___ dim-tools mailing list dim-tools@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/dim-tools

Re: [maintainer-tools PATCH RFC 3/3] dim: fix rr_cache_dir discovery

2018-12-17 Thread Daniel Vetter
On Tue, Dec 18, 2018 at 8:15 AM Andrzej Hajda wrote: > > On 17.12.2018 15:46, Daniel Vetter wrote: > > On Mon, Dec 17, 2018 at 10:54:48AM +0100, Andrzej Hajda wrote: > >> Hi Daniel, > >> > >> Thanks for reviewing other two patches. > >> > >>

Re: [maintainer-tools PATCH RFC 3/3] dim: fix rr_cache_dir discovery

2018-12-17 Thread Daniel Vetter
On Mon, Dec 17, 2018 at 10:54:48AM +0100, Andrzej Hajda wrote: > Hi Daniel, > > Thanks for reviewing other two patches. > > > On 14.12.2018 17:29, Daniel Vetter wrote: > > On Fri, Dec 14, 2018 at 02:38:52PM +0100, Andrzej Hajda wrote: > >> rr_cache_dir func

Re: [maintainer-tools PATCH RFC 3/3] dim: fix rr_cache_dir discovery

2018-12-14 Thread Daniel Vetter
cd $DIM_PREFIX/drm-rerere/ > -- > 2.17.1 > > ___ > dim-tools mailing list > dim-tools@lists.freedesktop.org > https://lists.freedesktop.org/mailman/listinfo/dim-tools -- Daniel Vetter Software Engineer, Intel Corporation http://blog.ffwll.ch ___ dim-tools mailing list dim-tools@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/dim-tools

Re: [maintainer-tools PATCH RFC 2/3] dim: fix git directory handling

2018-12-14 Thread Daniel Vetter
ff-by: Andrzej Hajda Patch 1&2 are Reviewed-by: Daniel Vetter > --- > dim | 13 - > 1 file changed, 4 insertions(+), 9 deletions(-) > > diff --git a/dim b/dim > index df66c58..3afa8b6 100755 > --- a/dim > +++ b/dim > @@ -1088,12 +1088,7 @@ function dim_

[PATCH] dim: Dumbest base64 parser ever for apply-pull

2018-12-14 Thread Daniel Vetter
Avoids me having to ask patchwork to decode them for me. Worked on the 2 pulls from Dave and Inki I tried it on. v2: Use message_print_body (Jani). Cc: Jani Nikula Cc: Dave Airlie Signed-off-by: Daniel Vetter --- dim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dim b

[PATCH] dim: Dumbest base64 parser ever for apply-pull

2018-12-14 Thread Daniel Vetter
Avoids me having to ask patchwork to decode them for me. Worked on the 2 pulls from Dave and Inki I tried it on. Cc: Dave Airlie Signed-off-by: Daniel Vetter --- dim | 10 -- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/dim b/dim index 70939ff9abee..0bd9b6c692f0 100755

Re: [PATCH 1/2] drm-tip: Remove misplaced hunk

2018-12-13 Thread Daniel Vetter
On Thu, Dec 13, 2018 at 1:17 PM Joonas Lahtinen wrote: > > Quoting Daniel Vetter (2018-12-13 10:36:10) > > Somehow I screwed up and broke make check while at it :-/ > > > > Signed-off-by: Daniel Vetter > > Reviewed-by: Joonas Lahtinen Thanks for review, pus

[PATCH 2/2] dim: Fix SC2231

2018-12-13 Thread Daniel Vetter
In dim line 976: for patch in $dir/*; do ^-- SC2231: Quote expansions in this for loop glob to prevent wordsplitting, e.g. "$dir"/*.txt . Apparently the shellcheck I have is newer than the one we use for build testing on gitlab. Signed-off-by: Dan

[PATCH 1/2] drm-tip: Remove misplaced hunk

2018-12-13 Thread Daniel Vetter
Somehow I screwed up and broke make check while at it :-/ Signed-off-by: Daniel Vetter --- drm-tip.rst | 4 1 file changed, 4 deletions(-) diff --git a/drm-tip.rst b/drm-tip.rst index b09a108da32d..80089f078bb4 100644 --- a/drm-tip.rst +++ b/drm-tip.rst @@ -128,10 +128,6 @@ best way to go

Re: [PATCH] drm-tip: Docs for handling silent conflicts

2018-12-13 Thread Daniel Vetter
On Thu, Dec 13, 2018 at 7:56 AM Rodrigo Vivi wrote: > > On Thu, Dec 13, 2018 at 12:22:38AM +0100, Daniel Vetter wrote: > > Boris needs this. > > > > v2: Improve the text for all cases that need manual fixups. > > > > v3: Actually git add the additional changes

[PATCH] drm-tip: Docs for handling silent conflicts

2018-12-12 Thread Daniel Vetter
Boris needs this. v2: Improve the text for all cases that need manual fixups. v3: Actually git add the additional changes Cc: Rob Clark Cc: Boris Brezillon Reviewed-by: Boris Brezillon (v2) Tested-by: Boris Brezillon (v2) Signed-off-by: Daniel Vetter --- drm-tip.rst | 46

Re: [PATCH] drm-tip: Docs for handling silent conflicts

2018-12-12 Thread Daniel Vetter
Add the right m-l ... -Daniel On Wed, Dec 12, 2018 at 3:33 PM Boris Brezillon wrote: > > On Wed, 12 Dec 2018 15:08:28 +0100 > Daniel Vetter wrote: > > > Boris needs this. > > > > v2: Improve the text for all cases that need manual fixups. > > > &

Re: [dim PATCH 6/7] dim: include all unmerged tags in the pull request mail

2018-12-12 Thread Daniel Vetter
On Tue, Dec 11, 2018 at 01:52:59PM +0200, Jani Nikula wrote: > On Thu, 06 Dec 2018, Daniel Vetter wrote: > > On Wed, Dec 05, 2018 at 05:02:58PM +0200, Jani Nikula wrote: > >> Until now, only drm-intel-next pull requests included all previous > >> annotated tag texts i

Re: [PATCH v2] dim: Add dim rebase command

2018-12-07 Thread Daniel Vetter
tream and > > adds SoB for the committer. > > > > Changes in v2: > > - s/validate_upstream_branch/validate_upstream_baseline/ (Daniel) > > - Use check_conflicts instead of hand rolling (Daniel) > > > > Cc: Boris Brezillon > &

Re: [dim PATCH 4/7] dim: abstract helper for listing unmerged tags

2018-12-07 Thread Daniel Vetter
On Fri, Dec 7, 2018 at 11:00 AM Jani Nikula wrote: > > On Thu, 06 Dec 2018, Daniel Vetter wrote: > > On Wed, Dec 05, 2018 at 05:02:56PM +0200, Jani Nikula wrote: > >> Make the pull request code a bit easier to grasp. Use git log pretty > >> format for

[PATCH] doc: Document how to clean up bad merge resolutions

2018-12-06 Thread Daniel Vetter
Happened again so I unlazied and typed this up finally. v2: - better formatting - git pull, to avoid conflicts when you don't have latest drm-rerere. Cc: Dave Airlie Cc: Tvrtko Ursulin Signed-off-by: Daniel Vetter --- drm-tip.rst | 21 + 1 file changed, 21 inser

[PATCH] doc: Document how to clean up bad merge resolutions

2018-12-06 Thread Daniel Vetter
Happened again so I unlazied and typed this up finally. Cc: Dave Airlie Cc: Tvrtko Ursulin Signed-off-by: Daniel Vetter --- drm-tip.rst | 20 1 file changed, 20 insertions(+) diff --git a/drm-tip.rst b/drm-tip.rst index 133ef1699b92..de268a677685 100644 --- a/drm-tip.rst

Re: [dim PATCH 7/7] dim: replace drm-intel-next usage with drm-intel-next-queued

2018-12-06 Thread Daniel Vetter
- > Pushes a new tag for the specified branch after checking that the remote is > @@ -385,11 +378,7 @@ If upstream is provided, launch gitk to show the changes > to be tagged. > > tag-next > > -**tag-branch** shorthand for drm-intel-next.

Re: [dim PATCH 6/7] dim: include all unmerged tags in the pull request mail

2018-12-06 Thread Daniel Vetter
;${tags%% *}" > + > url_list=${drm_tip_repos[$repo]} > git_url=$(pick_protocol_url git $url_list) > > -- > 2.11.0 > > ___ > dim-tools mailing list > dim-tools@lists.freedesktop.org > https://lists.freedesktop.org/mailman/listinfo/dim-tools -- Daniel Vetter Software Engineer, Intel Corporation http://blog.ffwll.ch ___ dim-tools mailing list dim-tools@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/dim-tools

Re: [dim PATCH 5/7] dim: optionally launch gitk with changelog on dim tag-branch

2018-12-06 Thread Daniel Vetter
xes), drm-next for everything else. This should only get topic branch pulls wrong I think. Anyway, just an idea, patch looks good to me. Reviewed-by: Daniel Vetter > + # If there are unmerged tags, show changes since last > + unmerged_tags=$(git_unmer

Re: [dim PATCH 4/7] dim: abstract helper for listing unmerged tags

2018-12-06 Thread Daniel Vetter
t; prep_pull_mail $req_file $drm_intel_next_tags > tag=$(git describe --all --exact "$branch@{upstream}") > > -- > 2.11.0 > > ___ > dim-tools mailing list > dim-tools@lists.freedesktop.org > https://lists.freedesktop.org/mailman/listinfo/dim-tools -- Daniel Vetter Software Engineer, Intel Corporation http://blog.ffwll.ch ___ dim-tools mailing list dim-tools@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/dim-tools

Re: [dim PATCH 2/7] dim: stop generating drm-intel-testing requests

2018-12-06 Thread Daniel Vetter
g $tag_testing $intel_remote/drm-intel-testing > - $DRY git push $intel_remote $tag_testing > - > - req_file=$(mktemp) > - cat > $req_file <<-HERE > - Hi all, > - > - The following changes tagged $tag_testing: > - > -

Re: [dim PATCH 3/7] dim: return early on tag-branch fail

2018-12-06 Thread Daniel Vetter
On Wed, Dec 05, 2018 at 05:02:55PM +0200, Jani Nikula wrote: > Reduce indent on the happy day scenario. Update error logging while at > it. > > Signed-off-by: Jani Nikula Reviewed-by: Daniel Vetter > --- > dim | 18 +- > 1 file changed, 9 inser

Re: [dim PATCH 1/7] dim: abstract driver date update to a subcommand

2018-12-06 Thread Daniel Vetter
On Wed, Dec 05, 2018 at 05:02:53PM +0200, Jani Nikula wrote: > Abstract the driver date update to a function of its own. Make it useful > for other drivers as well in case they ever need it. > > Signed-off-by: Jani Nikula Reviewed-by: Daniel Vetter > ---

Re: [RFC] dim: Stop committer from casually pushing uAPI changes

2018-11-17 Thread Daniel Vetter
//www.kernel.org/doc/html/latest/gpu/drm-uapi.html#open-source-userspace-requirements"; > + rv=1 > + fi > fi > > return $rv > -- > 2.17.2 > > ___ > dim-tools mai

Re: dim setup suggestion

2018-11-11 Thread Daniel Vetter
odrigo warned me about the new repository. Just a quick comment on this here: Even if you start out with the old dim, it should update the next time you run dim update-branches. So should be all fine. Once we're pretty sure that all existing dim installations have -Daniel -- Daniel Vetter S

Re: [PATCH] dim: Specify maintainer-tools branch name

2018-11-11 Thread Daniel Vetter
On Sat, Nov 10, 2018 at 12:04 AM Daniele Ceraolo Spurio wrote: > > > > On 09/11/2018 00:38, Daniel Vetter wrote: > > On Fri, Nov 9, 2018 at 2:28 AM Daniele Ceraolo Spurio > > wrote: > >> > >> When using worktree, the src repo might already have a mast

Re: [PATCH] dim: Specify maintainer-tools branch name

2018-11-09 Thread Daniel Vetter
setup_aux_checkout master $maintainer_tools_https maintainer-tools > + setup_aux_checkout master $maintainer_tools_https maintainer-tools > maintainer-tools > > setup_aux_checkout rerere-cache $drm_tip_ssh drm-rerere > > -- > 2.19.1 > > _

Re: [PULL] drm-misc-next

2018-11-08 Thread Daniel Vetter
On Thu, Nov 8, 2018 at 8:56 AM Christian König wrote: > > Am 07.11.18 um 21:48 schrieb Sean Paul: > > On Wed, Nov 07, 2018 at 09:31:51PM +0100, Daniel Vetter wrote: > >> On Wed, Nov 7, 2018 at 9:29 PM Sean Paul wrote: > >>> On Wed, Nov 07, 2018 at 09:18:16PM +010

Re: [PULL] drm-misc-next

2018-11-07 Thread Daniel Vetter
a-buf: remove shared fence staging in reservation object > dma-buf: allow reserving more than one shared fence slot > dma-buf: test shared slot allocation when mutex debugging is active > > Christoph Hellwig (1): > drm: sti: don't pass GFP_DMA32 to dma_alloc_wc &

Re: [PULL] drm-misc-next

2018-11-07 Thread Daniel Vetter
On Wed, Nov 7, 2018 at 9:29 PM Sean Paul wrote: > > On Wed, Nov 07, 2018 at 09:18:16PM +0100, Daniel Vetter wrote: > > On Wed, Nov 07, 2018 at 12:58:56PM +0100, Maarten Lankhorst wrote: > > > Hey Dave, > > > > > > First pull for drm-next this cycle. There&#

Re: [PATCH v2] doc: move drm-misc committer guidelines

2018-11-01 Thread Daniel Vetter
On Thu, Nov 01, 2018 at 11:48:14AM +0100, Daniel Vetter wrote: > On Wed, Oct 31, 2018 at 03:42:02PM -0400, Sean Paul wrote: > > On Wed, Oct 31, 2018 at 09:52:27AM +0200, Jani Nikula wrote: > > > Move drm-misc under the common committer guidelines. > > > > >

Re: [PATCH v2] doc: move drm-misc committer guidelines

2018-11-01 Thread Daniel Vetter
; > contributor, > > - but obviously then only focuses on best practices for the interaction > > with drm > > - core and helpers. Plus a bit looking for common patterns in dealing with > > the > > - hardware, since display IP all has to handle the same issues i

Re: [PATCH] gitlab-ci: Use docker images

2018-10-31 Thread Daniel Vetter
On Wed, Oct 31, 2018 at 07:35:13PM +0200, Arkadiusz Hiler wrote: > On Wed, Oct 31, 2018 at 02:36:12PM +0100, Daniel Vetter wrote: > > Shrinks the usual pipeline considerably, since we don't first waste a > > few minutes installing stuff. > > > &

[PATCH] gitlab-ci: Use docker images

2018-10-31 Thread Daniel Vetter
Shrinks the usual pipeline considerably, since we don't first waste a few minutes installing stuff. Signed-off-by: Daniel Vetter --- .gitlab-ci.yml| 25 ++--- Dockerfile.fedora | 4 2 files changed, 26 insertions(+), 3 deletions(-) create mode 1

Re: [PATCH 02/11] doc: update CONTRIBUTING and add MAINTAINERS file

2018-10-25 Thread Daniel Vetter
gt; > > >> +Push the patches once you have an ack from :ref:`maintainers`. > > > >> + > > > >> +.. _dim-to...@lists.freedesktop.org: > > > >> https://lists.freedesktop.org/mailman/listinfo/dim-tools > > > >> + > > > >> +.. _issues

[PATCH] dim: Fix url_to_remote

2018-10-24 Thread Daniel Vetter
The regex in Author: Emil Velikov Date: Wed Oct 24 15:22:08 2018 +0100 dim: handle repo URLs ending with forward slash didn't actually work. Fix it. Cc: Emil Velikov Reviewed-by: Lyude Paul Signed-off-by: Daniel Vetter --- dim | 2 +- 1 file changed, 1 insertion(+), 1 del

Re: [PATCH] dim: be explicit when iterating over $*

2018-10-24 Thread Daniel Vetter
gt; # Find the URL that has given protocol > - for url; do > + for url in $*; do > case $url in > ${protocol}://*) > protocol_url=$url > -- > 2.19.1 > > _

Re: [PATCH v2] dim: handle repo URLs ending with forward slash

2018-10-24 Thread Daniel Vetter
| grep -m 1 "$url/? (" | cut -f 1) > if [[ -n "$remote" ]]; then > echo "$remote" > return 0 > -- > 2.19.1 > > ___ > dim-tools mailing list >

Re: [PATCH] dim: handle repo URLs ending with forward slash

2018-10-24 Thread Daniel Vetter
t;$remote" ]]; then > echo "$remote" > return 0 > -- > 2.19.1 > > ___ > dim-tools mailing list > dim-tools@lists.freedesktop.org >

Re: dim: implicit passing/handling of url variable

2018-10-24 Thread Daniel Vetter
at's unmaintainable. -Daniel > > Any input will be appreciated. > > Thanks > Emil > ___ > dim-tools mailing list > dim-tools@lists.freedesktop.org > https://lists.freedesktop.org/mailman

Re: [PATCH] WIP: dim: introduce XDG_CONFIG_HOME support

2018-10-24 Thread Daniel Vetter
$HOME/.dimrc} > +XDG_DIM_CONFIG=${XDG_CONFIG_HOME:+$XDG_CONFIG_HOME/dim/config} > +DIM_CONFIG=${DIM_CONFIG:-${XDG_DIM_CONFIG:-$HOME/.dimrc}} > if [ -r $DIM_CONFIG ]; then > # shellcheck source=/dev/null > . $DIM_CONFIG > -- > 2.19.1 > > ___

Re: [PATCH] dim: don't opencode fetch_all in dim_update_branches

2018-10-24 Thread Daniel Vetter
.19.1 > > ___ > dim-tools mailing list > dim-tools@lists.freedesktop.org > https://lists.freedesktop.org/mailman/listinfo/dim-tools -- Daniel Vetter Software Engineer, Intel Corporation http://blog.ffwll.ch ___ dim-tools mailing list dim-tools@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/dim-tools

Re: [PULL] drm-intel-next-fixes

2018-10-19 Thread Daniel Vetter
eau/dispnv50/disp.c | 14 ++- > include/drm/drm_connector.h | 71 > - > 5 files changed, 103 insertions(+), 22 deletions(-) -- Daniel Vetter Software Engineer, Intel Corporation +41 (0) 79 365 57 48 - http://blog.ffwll.ch ___ dim-tools mailing list dim-tools@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/dim-tools

Re: [PULL] drm-intel-next-fixes

2018-10-19 Thread Daniel Vetter
On Fri, Oct 19, 2018 at 8:59 AM Joonas Lahtinen wrote: > > Quoting Daniel Vetter (2018-10-18 22:32:00) > > On Thu, Oct 18, 2018 at 6:57 PM Joonas Lahtinen > > wrote: > > > > > > Hi Dave, > > > > > > Here comes the final set of fixes under

Re: [PULL] drm-intel-next-fixes

2018-10-18 Thread Daniel Vetter
el_dp_link_training.c| 26 ++-- > drivers/gpu/drm/i915/intel_dp_mst.c | 41 +++--- > drivers/gpu/drm/i915/intel_drv.h | 2 + > drivers/gpu/drm/i915/intel_sprite.c | 22 > drivers/gpu/drm/i915/selftests/i915_gem_object.c | 3 + > 12 files changed, 227 insertions(+), 104 deletions(-) -- Daniel Vetter Software Engineer, Intel Corporation +41 (0) 79 365 57 48 - http://blog.ffwll.ch ___ dim-tools mailing list dim-tools@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/dim-tools

[PATCH] dim: make apply-patch fail again

2018-10-17 Thread Daniel Vetter
x this. v2: It wasn't git am, it was us, wrapping the apply_patch function in an if, which defeats set -e. Add explicit error handling. Thanks to Jani for figuring this one out. Cc: Jani Nikula Signed-off-by: Daniel Vetter --- dim | 5 - 1 file changed, 4 insertions(+), 1 deletion(-) di

Re: [PATCH] dim: make apply-patch fail again

2018-10-17 Thread Daniel Vetter
On Wed, Oct 17, 2018 at 11:43 AM Jani Nikula wrote: > > On Wed, 17 Oct 2018, Daniel Vetter wrote: > > Somewhere since I originally typed this and today git apply-mbox lost > > the error status for "this patch didn't apply cleanly". So instead of > > exiti

[PATCH] dim: make apply-patch fail again

2018-10-16 Thread Daniel Vetter
is. Signed-off-by: Daniel Vetter --- dim | 4 1 file changed, 4 insertions(+) diff --git a/dim b/dim index af092e50bb08..915de89d48b7 100755 --- a/dim +++ b/dim @@ -926,6 +926,10 @@ function apply_patch #patch_file git am --scissors -3 $sob "$@" $patch + if [ -d

Re: [PATCH 2/2] dim: Fix seanpaul's email

2018-10-10 Thread Daniel Vetter
" > -c "Maxime Ripard " > -c "dri-de...@lists.freedesktop.org" > -- > Sean Paul, Software Engineer, Google / Chromium OS > > _______ > dim-tools mailing list > dim-tools@lists

Re: [PATCH] dim: Add range-diff convenience wrapper

2018-10-05 Thread Daniel Vetter
On Fri, Oct 05, 2018 at 01:39:23PM -0700, Lucas De Marchi wrote: > On Fri, Oct 5, 2018 at 12:11 PM Daniel Vetter wrote: > > > > range-diff is awesome, but the interface is a bit silly. Add a bunch > > of shortcuts, inspired by what git diff does. > > > > v2: Add i

[PATCH] dim: Add range-diff convenience wrapper

2018-10-05 Thread Daniel Vetter
. v4: Update docs. Cc: Lucas De Marchi Signed-off-by: Daniel Vetter --- dim | 19 +++ dim.rst | 10 ++ 2 files changed, 29 insertions(+) diff --git a/dim b/dim index 72c86db560a7..aeaea05dac4b 100755 --- a/dim +++ b/dim @@ -475,6 +475,24 @@ function dim_r

[PATCH] dim: Add range-diff convenience wrapper

2018-10-05 Thread Daniel Vetter
. Cc: Lucas De Marchi Signed-off-by: Daniel Vetter --- dim | 19 +++ dim.rst | 8 2 files changed, 27 insertions(+) diff --git a/dim b/dim index 72c86db560a7..aeaea05dac4b 100755 --- a/dim +++ b/dim @@ -475,6 +475,24 @@ function dim_retip git rebase --onto $

Re: [Intel-gfx] [PATCH] dim: Add range-diff convenience wrapper

2018-10-05 Thread Daniel Vetter
On Fri, Oct 05, 2018 at 11:43:58AM -0700, Lucas De Marchi wrote: > On Thu, Oct 4, 2018 at 4:00 AM Daniel Vetter wrote: > > > > range-diff is awesome, but the interface is a bit silly. Add a bunch > > of shortcuts, inspired by what git diff does. > > > > v2: Add i

Re: [PATCH] dim: Add "commit" to end user using dim cite directly

2018-10-05 Thread Daniel Vetter
> git cherry-pick --abort > > fi > > done > > @@ -2253,10 +2261,7 @@ function dim_cite > > > > sha1=${1:?$usage} > > > > - cd $DIM_PREFIX/$DIM_REPO > > - > > - git log -1 $sha1 "--pretty=format:%H (\"%s\&q

Re: [PATCH] dim: Show the sparse version used

2018-10-04 Thread Daniel Vetter
it > > # make the initial reference build > -- > 2.17.1 > > ___ > dim-tools mailing list > dim-tools@lists.freedesktop.org > https://lists.freedesktop.org/mailman/listinfo/dim-tools -- Daniel Vetter Software Engineer, Intel Corporation http://blo

[PATCH] dim: Add range-diff convenience wrapper

2018-10-04 Thread Daniel Vetter
range-diff is awesome, but the interface is a bit silly. Add a bunch of shortcuts, inspired by what git diff does. v2: Add it to the developer commmands list. With this dim range-diff is useable on any git repo, not just a dim managed one. Signed-off-by: Daniel Vetter --- dim | 14

[PATCH] dim: Add range-diff convenience wrapper

2018-10-04 Thread Daniel Vetter
range-diff is awesome, but the interface is a bit silly. Add a bunch of shortcuts, inspired by what git diff does. Signed-off-by: Daniel Vetter --- dim | 13 + dim.rst | 8 2 files changed, 21 insertions(+) diff --git a/dim b/dim index 12c80e2051b6..c4663aca6b5c

Re: [PATCH] dim: Fix maintainer-tools remote

2018-09-21 Thread Daniel Vetter
On Fri, Sep 21, 2018 at 1:20 AM, Rodrigo Vivi wrote: > On Thu, Sep 20, 2018 at 10:24:41AM +0200, Daniel Vetter wrote: >> The migration broke dim setup :-/ >> >> Reported-by: Shawn Guo >> Cc: Shawn Guo >> Signed-off-by: Daniel Vetter > > Reviewed-by: Rodri

[PATCH] dim: Fix maintainer-tools remote

2018-09-20 Thread Daniel Vetter
The migration broke dim setup :-/ Reported-by: Shawn Guo Cc: Shawn Guo Signed-off-by: Daniel Vetter --- dim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dim b/dim index f5deae8dc4dd..12c80e2051b6 100755 --- a/dim +++ b/dim @@ -2128,7 +2128,7 @@ function dim_setup

Re: dim tool problem?

2018-09-20 Thread Daniel Vetter
> Shawn > > [1] > https://01.org/linuxgraphics/gfx-docs/maintainer-tools/getting-started.html > [2] https://gitlab.freedesktop.org/drm/maintainer-tools.git -- Daniel Vetter Software Engineer, Intel Corporation +41 (0) 79 365 57 48 - http://blog.ffwll.ch ___ dim-tools mailing list dim-tools@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/dim-tools

Re: [PATCH] doc: Fix link to drm repository

2018-09-18 Thread Daniel Vetter
On Tue, Sep 18, 2018 at 11:23:33AM -0400, Sean Paul wrote: > From: Sean Paul > > Still pointed at ~airlied/linux. > > Reported-by: Eric Engestrom > Signed-off-by: Sean Paul Reviewed-by: Daniel Vetter > --- > repositories.rst | 2 +- > 1 file changed,

Re: [PATCH] RFC: CONTRIBUTING: Embrace gitlab

2018-09-13 Thread Daniel Vetter
t enough that you keep the data around better than fd.o admins. There's still the problem that all the links are effectively dead (even if you can easily find the right pulls again with your local dump). Anyway, I think if fd.o goes down/gets taken over by Oracle, then we're screwed no matter which tooling we're using. > As to git notes, I don't have experience with sharing them on a larger > scale myself, but I've been told they are not as convenient to > distribute as the repository itself. Yeah iirc git notes have special branches and merging them is a pain. So technically they work as well as git push/pull, practically, not so much. Especially once the behind-the-scenes magic starts breaking down, and you need to resolve conflicts and stuff. -Daniel -- Daniel Vetter Software Engineer, Intel Corporation http://blog.ffwll.ch ___ dim-tools mailing list dim-tools@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/dim-tools

Re: [PATCH] RFC: CONTRIBUTING: Embrace gitlab

2018-09-13 Thread Daniel Vetter
On Thu, Sep 13, 2018 at 12:31 PM, Daniel Stone wrote: > Hi, > > On Thu, 13 Sep 2018 at 09:54, Jani Nikula wrote: >> On Wed, 12 Sep 2018, Daniel Vetter wrote: >> > On Wed, Sep 12, 2018 at 7:50 PM, Sean Paul wrote: >> >> Given the size of this repo and

Re: [PATCH] RFC: CONTRIBUTING: Embrace gitlab

2018-09-13 Thread Daniel Vetter
On Thu, Sep 13, 2018 at 11:35 AM, Jani Nikula wrote: > On Thu, 13 Sep 2018, Daniel Vetter wrote: >> On Thu, Sep 13, 2018 at 10:54 AM, Jani Nikula wrote: >>> On Wed, 12 Sep 2018, Daniel Vetter wrote: >>>> On Wed, Sep 12, 2018 at 7:50 PM, Sean Paul wrote: >>

Re: [PATCH] RFC: CONTRIBUTING: Embrace gitlab

2018-09-13 Thread Daniel Vetter
On Thu, Sep 13, 2018 at 10:54 AM, Jani Nikula wrote: > On Wed, 12 Sep 2018, Daniel Vetter wrote: >> On Wed, Sep 12, 2018 at 7:50 PM, Sean Paul wrote: >>> On Wed, Sep 12, 2018 at 1:34 PM Lucas De Marchi >>> wrote: >>>> - What should we do regarding the

<    1   2   3   4   5   >