Re: [PATCH 1/3] qf: Add more wiggle helpers.

2018-03-08 Thread Lucas De Marchi
; > v2: Remove -r from rm. (Lucas) > Use -z instead of '== ""' comparison. (Lucas) > Add documentation to the helpers. (Required by make check). > > Cc: Paulo Zanoni > Cc: Michel Thierry > Cc: James Ausmus > Cc: Lucas De Marchi > Sign

Re: [PATCH 2/3] qf: Make qf_pull -f forcibly clean

2018-03-08 Thread Lucas De Marchi
an rebase from anywhere. > > v2: Remove dubious comments and use -f. > > Cc: Paulo Zanoni > Cc: Michel Thierry > Cc: James Ausmus > Cc: Lucas De Marchi > Signed-off-by: Rodrigo Vivi > --- > qf | 23 +-- > 1 file changed, 21 inserti

Re: [PATCH 3/3] qf: Actually allow qf rebase from a clean environment.

2018-03-08 Thread Lucas De Marchi
ase drm-tip/drm-tip > > Always simply work to rebase from anywhere. > > v2: Implement this behavior only on -f is used to avoid losing work in > progress (Daniel). > > Fixes: 663e7293e042 ("qf: Allow rebase function to start from anywhere.") > Cc: Lucas

Re: [PATCH 2/3] qf: Make qf_pull -f forcibly clean

2018-03-08 Thread Lucas De Marchi
On Thu, Mar 08, 2018 at 05:25:44PM -0800, Rodrigo Vivi wrote: > On Thu, Mar 08, 2018 at 07:29:52AM -0800, Lucas De Marchi wrote: > > On Wed, Mar 07, 2018 at 05:42:54PM -0800, Rodrigo Vivi wrote: > > > qf_checkout implies that you need to have that baseline > > > on you

Re: [PATCH] qf: Make qf_pull -f forcibly clean

2018-03-12 Thread Lucas De Marchi
an rebase from anywhere. > > v2: Remove dubious comments and use -f. > v3: Avoid git pull --ff-only breaking force so force with fetch > and hard reset > > Cc: Paulo Zanoni > Cc: Michel Thierry > Cc: James Ausmus > Cc: Lucas De Marchi > Signed-off-by: Rodrigo V

[PATCH] qf: fix internal use of alias

2018-03-28 Thread Lucas De Marchi
maintainer-tools/qf: line 415: qf_co: command not found Signed-off-by: Lucas De Marchi --- qf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qf b/qf index d1499ada1951..4c8a0e9ecc16 100755 --- a/qf +++ b/qf @@ -412,7 +412,7 @@ function qf_pull

[PATCH] qf: silence quilt refresh a little bit

2018-03-28 Thread Lucas De Marchi
From: Lucas De Marchi Since the patches are maintained in a git branch, if we keep refreshing we keep touching all patches with useless diff. Worse, it may change as each developer has a different configuration. Force a unified diff similar to git-diff in order to reduce the noise. Example

Re: [PATCH] qf: silence quilt refresh a little bit

2018-03-30 Thread Lucas De Marchi
On Thu, Mar 29, 2018 at 08:31:07AM +0200, Daniel Vetter wrote: > On Thu, Mar 29, 2018 at 5:53 AM, Lucas De Marchi > wrote: > > From: Lucas De Marchi > > > > Since the patches are maintained in a git branch, if we keep refreshing > > we keep touching all patches wi

[PATCH v2] qf: silence quilt refresh a little bit

2018-03-30 Thread Lucas De Marchi
this the files that need to be updated during a refresh of the entire pile reduces a lot. v2: add unified helper Signed-off-by: Lucas De Marchi --- qf | 8 ++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/qf b/qf index 4c8a0e9ecc16..1d61b2ad7692 100755 --- a/qf +++ b/qf

[PATCH] qf: remove non-existent argument

2018-03-30 Thread Lucas De Marchi
qf_setup expects only one argument and branch_init none. Signed-off-by: Lucas De Marchi --- qf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qf b/qf index 1d61b2ad7692..629f1b349a1f 100755 --- a/qf +++ b/qf @@ -230,7 +230,7 @@ function qf_setup baseline

[PATCH] qf: add diff option to quilt refresh

2018-04-06 Thread Lucas De Marchi
ff-by: Lucas De Marchi --- qf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qf b/qf index 629f1b349a1f..b75e702793d8 100755 --- a/qf +++ b/qf @@ -190,7 +190,7 @@ function quilt_clean_check } function quilt_refresh { - quilt refresh --no-timestamps -u -p ab --no-

Re: [PATCH 2/4] dim: shut up sed broken pipe noise in apply-pull

2018-05-09 Thread Lucas De Marchi
ll_branch=$(sed -e '0,/[gG]it repository at:$/d' $file 2> /dev/null > | head -n 2 | tail -n 1) If this is doing what I think it is doing (get the second line after the match, I think it would be much simpler to do without any pipe: pull_branch=$(sed -ne '/[gG]it repository

Re: [Intel-gfx] [PATCH] dim: replace pipe commands with single sed

2018-05-09 Thread Lucas De Marchi
Now CC the right mailing list. The way dim sets up the repository you can't have individual git configs, e.g. to set a different sendemail.to for dim-tools :( Lucas De Marchi On Wed, May 9, 2018 at 2:28 PM, Lucas De Marchi wrote: > A single sed can do the job of taking the second line

Re: [PATCH 1/2] dim: Workaround Outlook + Patchwork mess.

2018-05-18 Thread Lucas De Marchi
ompany to differentiate contributions from companies that are sponsoring him (hint git log --author="Steven Rostedt" to see one use case). Mangling whatever the person set on *that* specific patch based on what was used for other patches or replies is just wrong IMO. So I don

Re: [PATCH 1/2] dim: Workaround Outlook + Patchwork mess.

2018-05-24 Thread Lucas De Marchi
to the vanilla From: mail header, >> optionally overridden with the vanilla From: tag in the first lines of >> patch email commit message as put there by git. >> >> BR, >> Jani. > > https://github.com/ivyl/patchwork/commit/b9a3691af88f > > I'll deploy that over the weekend. makes total sense! Thanks! Lucas De Marchi ___ dim-tools mailing list dim-tools@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/dim-tools

[PATCH] qf: replace colon when wiggling

2018-07-13 Thread Lucas De Marchi
We are not writing anything after that message. Signed-off-by: Lucas De Marchi --- qf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qf b/qf index bffe9b753fa0..2ac071029992 100755 --- a/qf +++ b/qf @@ -477,7 +477,7 @@ function qf_wiggle_push fi for file

Re: [PATCH] qf: replace colon when wiggling

2018-08-08 Thread Lucas De Marchi
On Fri, Jul 13, 2018 at 11:16:12AM -0700, Rodrigo Vivi wrote: > On Fri, Jul 13, 2018 at 08:02:17AM -0700, Lucas De Marchi wrote: > > We are not writing anything after that message. > > I think I probably aimed to do something else different that > that commented out cat the

Re: [PATCH] Add .gitlab-ci.yml

2018-08-28 Thread Lucas De Marchi
need to be installed on every run? Could we rather default to python3 or is it broken for our docs? "make html" works for me with python3 using sphinx 1.7.5 on Fedora 28. > + > +check: > +stage: build > +script: > + - make check Regardless of the comments

Re: [PATCH] Add .gitlab-ci.yml

2018-08-28 Thread Lucas De Marchi
f under the [list] section) to disable this warning. sphinx-rtd-theme (0.3.1) sphinxcontrib-websupport (1.0.1.dev20180209) $ $ cat $(which sphinx-build)| head -n 1 #!/usr/bin/python3 And make html continues to work for me... > > Reviewed-by: Lucas De Marchi > Signed-off-by: Daniel Ve

[PATCH] build: make it compatible with python3 tools

2018-08-29 Thread Lucas De Marchi
command line in case we have even more creative scenarios. Signed-off-by: Lucas De Marchi --- Daniel, now it's green: https://gitlab.freedesktop.org/demarchi/maintainer-tools I applied v2 of your patch on top and everything worked. Makefile | 7 --- 1 file changed, 4 insertions(+), 3 d

Re: [PATCH] build: make it compatible with python3 tools

2018-08-30 Thread Lucas De Marchi
On Thu, Aug 30, 2018 at 12:01 AM Daniel Vetter wrote: > > On Wed, Aug 29, 2018 at 01:15:17PM -0700, Lucas De Marchi wrote: > > sphinx-build and rst2man binaries on Fedora 28 have a -3 suffix when > > they are installed for python3 in order to be able to be installed in > >

[PATCH] CI: switch to python3 by default

2018-08-31 Thread Lucas De Marchi
Signed-off-by: Lucas De Marchi --- .gitlab-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index a23c324..91cb6a2 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,7 +1,7 @@ image: fedora:latest before_script: - - dnf install

Re: [PATCH] CI: switch to python3 by default

2018-08-31 Thread Lucas De Marchi
On Fri, Aug 31, 2018 at 11:34 AM Daniel Vetter wrote: > > On Fri, Aug 31, 2018 at 08:33:33AM -0700, Lucas De Marchi wrote: > > Signed-off-by: Lucas De Marchi > > Reviewed-by: Daniel Vetter Pushed, thanks. Lucas De Marchi > > > --- > > .gitlab-ci.yml | 2 +-

Re: [PATCH] RFC: CONTRIBUTING: Embrace gitlab

2018-09-12 Thread Lucas De Marchi
direct pushes until those are figured out. Lucas De Marchi To avoid this being an entirely hypothetical discussion, I've gone ahead and created a merge request for this: https://gitlab.freedesktop.org/drm/maintainer-tools/merge_requests/3 For keeping up with activity: Go to the main r

Re: [PATCH] RFC: CONTRIBUTING: Embrace gitlab

2018-09-13 Thread Lucas De Marchi
public git repo? Not sure how crazy that would be. Do you mean the public-inbox? See https://lore.kernel.org/lkml/ and https://lwn.net/Articles/748184/ Lucas De Marchi ___ dim-tools mailing list dim-tools@lists.freedesktop.org https://lists.freed

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

2018-10-05 Thread Lucas De Marchi
I kind of dislike on wrappers is the inability to provide more arguments. One that would be useful here would be a --no-patch if one only wants to see status change, not the change itself. I'm still getting used to the tool so I'm always explicit: I always type both r

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

2018-10-05 Thread Lucas De Marchi
2af4be0 untested crap Submodule a ... (new submodule) And it still isn't, not sure why. But I'm digressing. Reviewed-by: Lucas De Marchi Lucas De Marchi > but I tested this with --no-color and --no-dual-color. Slightly a > hack since detecting

Re: [PATCH] TODO: remove TODO, handle bugs and feature requests on gitlab

2018-12-11 Thread Lucas De Marchi
issues then close https://gitlab.freedesktop.org/drm/maintainer-tools/issues/1 ? > > Signed-off-by: Jani Nikula Reviewed-by: Lucas De Marchi Lucas De Marchi > --- > CONTRIBUTING.rst | 7 --- > TODO.rst | 44 > index.rst

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

2019-01-25 Thread Lucas De Marchi
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. Signed-off-by: Lucas De Marchi --- dim | 2 +- 1 file changed, 1 insertion(+), 1 del

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

2019-01-25 Thread Lucas De Marchi
On Fri, Jan 25, 2019 at 7:32 AM Daniel Vetter wrote: > > 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: > > >> di

[PATCH] dim: clone in the right dir

2019-02-22 Thread Lucas De Marchi
Signed-off-by: Lucas De Marchi --- dim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dim b/dim index 10f8232..b6c88b4 100755 --- a/dim +++ b/dim @@ -2213,7 +2213,7 @@ function dim_setup if [[ ! -d "$DIM_PREFIX/$DIM_REPO" ]]; then if ask

[PATCH 0/4] dim setup improvements

2019-03-04 Thread Lucas De Marchi
hts? Lucas De Marchi (4): dim: clone in the right dir dim: do all setup relative to $DIM_PREFIX dim: update branches after setup dim: automatically clone maintainer-tools repo dim | 32 +++- 1 file changed, 19 insertions(+), 13 deletions(-) -- 2.2

[PATCH 4/4] dim: automatically clone maintainer-tools repo

2019-03-04 Thread Lucas De Marchi
Do like it's done for other repo instead of just complain. Signed-off-by: Lucas De Marchi --- dim | 16 ++-- 1 file changed, 10 insertions(+), 6 deletions(-) diff --git a/dim b/dim index bada79c..1d3854b 100755 --- a/dim +++ b/dim @@ -76,8 +76,6 @@ dim=$(basename $0) dim_

[PATCH 1/4] dim: clone in the right dir

2019-03-04 Thread Lucas De Marchi
Signed-off-by: Lucas De Marchi Acked-by: Jani Nikula --- dim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dim b/dim index 004ec69..8e01c66 100755 --- a/dim +++ b/dim @@ -2236,7 +2236,7 @@ function dim_setup if [[ ! -d "$DIM_PREFIX/$DIM_REPO"

[PATCH 3/4] dim: update branches after setup

2019-03-04 Thread Lucas De Marchi
Otherwise we need to document it better so user doesn't try to find out why he doesn't have the remotes he was supposed to have. Signed-off-by: Lucas De Marchi --- dim | 2 ++ 1 file changed, 2 insertions(+) diff --git a/dim b/dim index b125003..bada79c 100755 --- a/dim +++ b/dim

[PATCH 2/4] dim: do all setup relative to $DIM_PREFIX

2019-03-04 Thread Lucas De Marchi
Signed-off-by: Lucas De Marchi --- dim | 20 ++-- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/dim b/dim index 8e01c66..b125003 100755 --- a/dim +++ b/dim @@ -2234,28 +2234,28 @@ function dim_setup fi fi - if [[ ! -d "$DIM_P

Re: [PATCH 0/4] dim setup improvements

2019-03-04 Thread Lucas De Marchi
On Mon, Mar 04, 2019 at 11:12:21PM +0200, Jani Nikula wrote: On Mon, 04 Mar 2019, Lucas De Marchi wrote: We had some small problems when calling dim setup. This should hopefully fix them all, making it easier to setup a new environment like I was doing. Now setting up the environment from

[PATCH 1/2] doc: move "Getting Started" to be the first page

2019-03-05 Thread Lucas De Marchi
I myself missed that we had this page for a long time since it's not positioned as something to be the first thing to do. Signed-off-by: Lucas De Marchi --- index.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.rst b/index.rst index 14086bb..ecc721a 100644

[PATCH 2/2] doc: restructure Getting Started page

2019-03-05 Thread Lucas De Marchi
reordered and reworded a little bit so it follows the flow "zero -> contributor -> committer -> maintainer". Signed-off-by: Lucas De Marchi --- getting-started.rst | 68 ++--- 1 file changed, 39 insertions(+), 29 deletions(-) d

Re: [PATCH 2/2] doc: restructure Getting Started page

2019-03-08 Thread Lucas De Marchi
On Fri, Mar 08, 2019 at 02:14:03PM -0800, Rodrigo Vivi wrote: On Tue, Mar 05, 2019 at 11:44:00AM -0800, Lucas De Marchi wrote: Restructure this pages so it first gives a minimal set of commands to get the environment setup and then explains the other parts. We tailor the commands so the user

Re: [PATCH 0/4] dim setup improvements

2019-03-11 Thread Lucas De Marchi
On Mon, Mar 11, 2019 at 12:08:42PM +0100, Daniel Vetter wrote: On Mon, Mar 04, 2019 at 03:07:38PM -0800, Lucas De Marchi wrote: On Mon, Mar 04, 2019 at 11:12:21PM +0200, Jani Nikula wrote: > On Mon, 04 Mar 2019, Lucas De Marchi wrote: > > We had some small problems when calling dim se

[PATCH] dim: allow to add link to the current HEAD

2019-11-15 Thread Lucas De Marchi
Add method add-link-head that applies the link to head without any additional check. This is useful either to reduce typing or to add a link while in the middle of an interactive rebase. Signed-off-by: Lucas De Marchi --- dim | 23 +++ 1 file changed, 15 insertions(+), 8

Re: [PATCH] dim: allow to add link to the current HEAD

2019-11-18 Thread Lucas De Marchi
On Mon, Nov 18, 2019 at 04:57:34PM +0200, Jani Nikula wrote: On Fri, 15 Nov 2019, Lucas De Marchi wrote: Add method add-link-head that applies the link to head without any additional check. This is useful either to reduce typing or to add a link while in the middle of an interactive rebase

Re: [PATCH] dim: allow to add link to the current HEAD

2019-11-18 Thread Lucas De Marchi
On Mon, Nov 18, 2019 at 12:16:19PM -0800, Rodrigo Vivi wrote: On Nov 18, 2019, at 12:14 PM, Lucas De Marchi <[1]lucas.demar...@intel.com> wrote: On Mon, Nov 18, 2019 at 04:57:34PM +0200, Jani Nikula wrote: On Fri, 15 Nov 2019, Lucas De Marchi <[2]lucas.demar...@

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

2022-02-22 Thread Lucas De Marchi
.patch | patch -p1 with 064030837c5b being the commit in drm-rerere. Cc'ing Matt Roper Lucas De Marchi We opted to sync the branches via drm-next pulls and backmerges, but I'm afraid that means you'd have to use the fixups when merging. I guess we failed to communicate that. The alternativ

Re: [MAINTAINER TOOLS] docs: updated rules for topic/core-for-CI commit management

2022-11-22 Thread Lucas De Marchi
nly drop the commit on next rebase? This way it doesn't require the force push and it's easier to see what was done in the branch since we don't have to procure the right CI tag in which things got changed. ... I actually came here to ask: wasn't gitlab supposed to be used for patches in maintainer-tools? Lucas De Marchi

Re: [PATCH] nightly.conf: Add the xe repo to drm-tip

2023-12-22 Thread Lucas De Marchi
On Fri, Dec 22, 2023 at 12:36:39PM +0100, Thomas Hellström wrote: Add the xe repo to drm-tip and the dim tools. For now use the sha1 of the first drm-xe-next pull request for drm-tip, since that branch tip is currently adapted for our CI testing. Cc: Rodrigo Vivi Cc: Lucas De Marchi Cc: Oded

Re: [PATCH] nightly.conf: Add the xe repo to drm-tip

2024-01-03 Thread Lucas De Marchi
equest for drm- > tip, > since that branch tip is currently adapted for our CI testing. > > Cc: Rodrigo Vivi > Cc: Lucas De Marchi > Cc: Oded Gabbay > Cc: daniel.vet...@ffwll.ch > Cc: Maarten Lankhorst > Cc: dim-tools@lists.freedesktop.org > Cc: dri-de.

Re: [PATCH] nightly.conf: Add the xe repo to drm-tip

2024-01-08 Thread Lucas De Marchi
On Mon, Jan 08, 2024 at 05:13:51PM -0500, Rodrigo Vivi wrote: On Wed, Jan 03, 2024 at 11:59:16PM -0600, Lucas De Marchi wrote: On Wed, Jan 03, 2024 at 02:50:57PM +0100, Thomas Hellström wrote: > On Tue, 2023-12-26 at 13:30 -0500, Rodrigo Vivi wrote: > > On Fri, Dec 22, 2023 at 12:36:3

[PULL] drm-xe-next

2024-02-25 Thread Lucas De Marchi
ross-drivers Changes: - Make sure intel_wakeref_t is treated as opaque type on i915-display and fix its type on xe Driver Changes: - Drop pre-production workarounds (Matt Roper) - Drop kunit tests for unsuported platforms: PVC and pre-production DG2 (Lucas De Marchi) - Start pumbling SR-IOV suppo

Re: [PULL] drm-xe-next

2024-02-26 Thread Lucas De Marchi
On Mon, Feb 26, 2024 at 10:46:43AM +, Daniel Stone wrote: Hi, On Mon, 26 Feb 2024 at 03:21, Lucas De Marchi wrote: All of this should be fixed by now: dim is used for applying and pushing patches, which has additional checks so that doesn't happen again. Still pending confirmation

[PULL] drm-xe-next-fixes

2024-03-04 Thread Lucas De Marchi
handling page fault on a VM not in fault mode - Drop use of "grouped target" feature in Makefile since that's only available in make >= 4.3 thanks, Lucas De Marchi The following changes since commit c6d6a82d8a9f8f9326b760accaa532b839b80140: Merge tag 'drm-misc-next-fixe

[PULL] drm-xe-next-fixes

2024-03-14 Thread Lucas De Marchi
. Lucas De Marchi drm-xe-next-fixes-2024-03-14: Driver changes: - Invalidate userptr VMA on page pin fault, allowing userspace to free userptr while still having bindings - Fail early on sysfs file creation error - Skip VMA pinning on xe_exec with num_batch_buffer == 0 The following changes

[PULL] drm-xe-fixes

2024-03-26 Thread Lucas De Marchi
) - Fix build on mips - Fix wrong bound checks - Fix use of msec rather than jiffies - Remove dead code Lucas De Marchi (1): drm/xe: Fix END redefinition Matthew Auld (5

[PULL] drm-xe-fixes

2024-04-04 Thread Lucas De Marchi
workqueue changes introduced in v6.9. That shouldn't be the normal use case but was causing CI to abort further tests. Other changes include fixes around rebinding and TLB invalidation. thanks Lucas De Marchi drm-xe-fixes-2024-04-04: - Stop using system_unbound_wq for preempt fences, as thi

[PULL] drm-xe-fixes

2024-04-11 Thread Lucas De Marchi
f any future commit making use of that register. thanks Lucas De Marchi drm-xe-fixes-2024-04-11: - Fix double display mutex initializations - Fix u32 -> u64 implicit conversions - Fix RING_CONTEXT_CONTROL not marked as masked The following changes since commit fec50db7033ea478773b159e0e2efb13

[PULL] drm-xe-fixes

2024-04-18 Thread Lucas De Marchi
Hi Dave and Sima, Please pull the drm-xe-fixes for this week targeting v6.9-rc5. thanks Lucas De Marchi drm-xe-fixes-2024-04-18: - Fix bo leak on error path during fb init - Fix use-after-free due to order vm is put and destroyed The following changes since commit

[PULL] drm-xe-fixes

2024-04-25 Thread Lucas De Marchi
Hi Dave and Sima Please pull the drm-xe-fixes for this week targeting v6.9-rc6. Simple fixes not really visible to end users: 2 around error paths on drm managed allocations and 1 on PF/VF relay messages that are not enabled by default. thanks Lucas De Marchi drm-xe-fixes-2024-04-25: - Fix

[PULL] drm-xe-fixes

2024-05-02 Thread Lucas De Marchi
Hi Dave and Sima, Please pull the drm-xe-fixes for this week targeting v6.9-rc7. Two important fixes: one avoiding a use-after-free in the rebind worker and the other to make display work in ADL-N. thanks Lucas De Marchi drm-xe-fixes-2024-05-02: - Fix UAF on rebind worker - Fix ADL-N display

[PULL] drm-xe-fixes

2024-05-09 Thread Lucas De Marchi
Hi Dave and Sima, Please pull the drm-xe-fixes for this week targeting v6.9. thanks Lucas De Marchi drm-xe-fixes-2024-05-09: - Fix use zero-length element array - Move more from system wq to ordered private wq - Do not ignore return for drmm_mutex_init The following changes since commit

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

2024-07-10 Thread Lucas De Marchi
cepted differences in CPU access speed. but this commit is also going to drm-xe-fixes, so I don't think we should have it in this pull. I'm looking at some changes to dim to avoid this kind of problem in future. Lucas De Marchi Thanks, Rodrigo. drm-xe-next-fixes-2024-07-09: UAPI Ch

[PULL] drm-xe-fixes

2024-07-11 Thread Lucas De Marchi
Hi Dave and Sima, First patch has an important impact to userspace, changing the cahcing mode to write-back for system memory on DGFX. In this case we introduce a limitation in the cache selection uapi that is transparent to UMDs. I mean, no change on their side is needed. Coherence is maintaine

[PULL] drm-xe-next

2024-07-30 Thread Lucas De Marchi
d by the driver. Some bits still influx, so not yet there though. thanks Lucas De Marchi drm-xe-next-2024-07-30: drm-xe-next for 6.12 UAPI Changes: - Rename xe perf layer as xe observation layer, but was also made available via fixes to previous verison (Ashutosh) - Use write-back caching

[PULL] drm-xe-next

2024-08-22 Thread Lucas De Marchi
some commits out since they were too fresh and I didn't have core CI results for them. Plan is to send the final pull request for 6.12 next week with those commits. thanks Lucas De Marchi drm-xe-next-2024-08-22: UAPI Changes: - Fix OA format masks which were breaking build with gcc-5

[PULL] drm-xe-next

2024-08-28 Thread Lucas De Marchi
drm-intel-next pull request later this week. Cheers, Lucas De Marchi drm-xe-next-2024-08-28: UAPI Changes: - Fix OA format masks which were breaking build with gcc-5 Cross-subsystem Changes: Driver Changes: - Use dma_fence_chain_free in chain fence unused as a sync (Matthew Brost) - Refactor hw

[PULL] drm-xe-next

2024-09-05 Thread Lucas De Marchi
that was needed to properly replace a fix we reverted last week. That's being tested for more than a week and proved better than the previous one. thanks Lucas De Marchi drm-xe-next-2024-09-05: Cross-subsystem Changes: - Split dma fence array creation into alloc and arm (Matthew Brost) Dr

[PULL] drm-xe-next-fixes

2024-09-12 Thread Lucas De Marchi
s starting with this release, we are being more careful and adding them when they are really needed. Thanks Lucas De Marchi drm-xe-next-fixes-2024-09-12: Driver Changes: - Fix usefafter-free when provisioning VF (Matthew Auld) - Suppress rpm warning on false positive (Rodrigo) - Fix memleak on i

[PULL] drm-xe-next-fixes

2024-09-19 Thread Lucas De Marchi
Hi Dave and Simona, A few fixes for 6.11-rc1. Thanks Lucas De Marchi drm-xe-next-fixes-2024-09-19: Driver Changes: - Fix macro for checking minimum GuC version (Michal Wajdeczko) - Fix CCS offset calculation for some BMG SKUs (Matthew Auld) - Fix locking on memory usage reporting via fdinfo

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

2024-09-19 Thread Lucas De Marchi
On Thu, Sep 19, 2024 at 09:56:47PM GMT, Lucas De Marchi wrote: Hi Dave and Simona, A few fixes for 6.11-rc1. oops, I meant 6.12-rc1, of course :) Lucas De Marchi