All of lore.kernel.org
 help / color / mirror / Atom feed
From: Ramalingam C <ramalingam.c@intel.com>
To: "Christian König" <christian.koenig@amd.com>
Cc: intel-gfx <intel-gfx@lists.freedesktop.org>,
	dri-devel <dri-devel@lists.freedesktop.org>,
	rodrigo.vivi@intel.com
Subject: Re: [PATCH v7 7/9] drm/ttm: Add a parameter to add extra pages into ttm_tt
Date: Sat, 2 Apr 2022 08:32:38 +0530	[thread overview]
Message-ID: <20220402030237.GA29661@intel.com> (raw)
In-Reply-To: <7517726e-c828-ace8-9968-e542e23d97f1@amd.com>

On 2022-04-01 at 16:31:19 +0200, Christian König wrote:
> I would be nicer to push this through drm-misc-next, but the intel branch
> works for me as well.
Hi Christian

I have pushed this patch into drm-misc-next.

Regards,
Ram.
> 
> Regards,
> Christian.
> 
> Am 01.04.22 um 16:28 schrieb Ramalingam C:
> > Christian, Joonas and vivi
> > 
> > Once the premerge results are greeen, if this patch can be merged into
> > drm-intel-gt-next along with other patches could you please ack the
> > request to merge into drm-intel-gt-next?
> > 
> > Thanks
> > Ram
> > 
> > On 2022-04-01 at 18:07:49 +0530, Ramalingam C wrote:
> > > Add a parameter called "extra_pages" for ttm_tt_init, to indicate that
> > > driver needs extra pages in ttm_tt.
> > > 
> > > v2:
> > >    Used imperative wording [Thomas and Christian]
> > > 
> > > Signed-off-by: Ramalingam C <ramalingam.c@intel.com>
> > > cc: Christian Koenig <christian.koenig@amd.com>
> > > cc: Hellstrom Thomas <thomas.hellstrom@intel.com>
> > > Reviewed-by: Thomas Hellstrom <thomas.hellstrom@linux.intel.com>
> > > Reviewed-by: Christian Konig <christian.koenig@amd.com>
> > > Reviewed-by: Nirmoy Das <nirmoy.das@intel.com>
> > > ---
> > >   drivers/gpu/drm/drm_gem_vram_helper.c      |  2 +-
> > >   drivers/gpu/drm/i915/gem/i915_gem_ttm.c    |  2 +-
> > >   drivers/gpu/drm/qxl/qxl_ttm.c              |  2 +-
> > >   drivers/gpu/drm/ttm/ttm_agp_backend.c      |  2 +-
> > >   drivers/gpu/drm/ttm/ttm_tt.c               | 12 +++++++-----
> > >   drivers/gpu/drm/vmwgfx/vmwgfx_ttm_buffer.c |  2 +-
> > >   include/drm/ttm/ttm_tt.h                   |  4 +++-
> > >   7 files changed, 15 insertions(+), 11 deletions(-)
> > > 
> > > diff --git a/drivers/gpu/drm/drm_gem_vram_helper.c b/drivers/gpu/drm/drm_gem_vram_helper.c
> > > index dc7f938bfff2..123045b58fec 100644
> > > --- a/drivers/gpu/drm/drm_gem_vram_helper.c
> > > +++ b/drivers/gpu/drm/drm_gem_vram_helper.c
> > > @@ -867,7 +867,7 @@ static struct ttm_tt *bo_driver_ttm_tt_create(struct ttm_buffer_object *bo,
> > >   	if (!tt)
> > >   		return NULL;
> > > -	ret = ttm_tt_init(tt, bo, page_flags, ttm_cached);
> > > +	ret = ttm_tt_init(tt, bo, page_flags, ttm_cached, 0);
> > >   	if (ret < 0)
> > >   		goto err_ttm_tt_init;
> > > diff --git a/drivers/gpu/drm/i915/gem/i915_gem_ttm.c b/drivers/gpu/drm/i915/gem/i915_gem_ttm.c
> > > index c40aca99442f..a878910a563c 100644
> > > --- a/drivers/gpu/drm/i915/gem/i915_gem_ttm.c
> > > +++ b/drivers/gpu/drm/i915/gem/i915_gem_ttm.c
> > > @@ -293,7 +293,7 @@ static struct ttm_tt *i915_ttm_tt_create(struct ttm_buffer_object *bo,
> > >   		i915_tt->is_shmem = true;
> > >   	}
> > > -	ret = ttm_tt_init(&i915_tt->ttm, bo, page_flags, caching);
> > > +	ret = ttm_tt_init(&i915_tt->ttm, bo, page_flags, caching, 0);
> > >   	if (ret)
> > >   		goto err_free;
> > > diff --git a/drivers/gpu/drm/qxl/qxl_ttm.c b/drivers/gpu/drm/qxl/qxl_ttm.c
> > > index 95df5750f47f..9ba871bd19b1 100644
> > > --- a/drivers/gpu/drm/qxl/qxl_ttm.c
> > > +++ b/drivers/gpu/drm/qxl/qxl_ttm.c
> > > @@ -113,7 +113,7 @@ static struct ttm_tt *qxl_ttm_tt_create(struct ttm_buffer_object *bo,
> > >   	ttm = kzalloc(sizeof(struct ttm_tt), GFP_KERNEL);
> > >   	if (ttm == NULL)
> > >   		return NULL;
> > > -	if (ttm_tt_init(ttm, bo, page_flags, ttm_cached)) {
> > > +	if (ttm_tt_init(ttm, bo, page_flags, ttm_cached, 0)) {
> > >   		kfree(ttm);
> > >   		return NULL;
> > >   	}
> > > diff --git a/drivers/gpu/drm/ttm/ttm_agp_backend.c b/drivers/gpu/drm/ttm/ttm_agp_backend.c
> > > index 6ddc16f0fe2b..d27691f2e451 100644
> > > --- a/drivers/gpu/drm/ttm/ttm_agp_backend.c
> > > +++ b/drivers/gpu/drm/ttm/ttm_agp_backend.c
> > > @@ -134,7 +134,7 @@ struct ttm_tt *ttm_agp_tt_create(struct ttm_buffer_object *bo,
> > >   	agp_be->mem = NULL;
> > >   	agp_be->bridge = bridge;
> > > -	if (ttm_tt_init(&agp_be->ttm, bo, page_flags, ttm_write_combined)) {
> > > +	if (ttm_tt_init(&agp_be->ttm, bo, page_flags, ttm_write_combined, 0)) {
> > >   		kfree(agp_be);
> > >   		return NULL;
> > >   	}
> > > diff --git a/drivers/gpu/drm/ttm/ttm_tt.c b/drivers/gpu/drm/ttm/ttm_tt.c
> > > index d234aab800a0..1a66d9fc589a 100644
> > > --- a/drivers/gpu/drm/ttm/ttm_tt.c
> > > +++ b/drivers/gpu/drm/ttm/ttm_tt.c
> > > @@ -134,9 +134,10 @@ void ttm_tt_destroy(struct ttm_device *bdev, struct ttm_tt *ttm)
> > >   static void ttm_tt_init_fields(struct ttm_tt *ttm,
> > >   			       struct ttm_buffer_object *bo,
> > >   			       uint32_t page_flags,
> > > -			       enum ttm_caching caching)
> > > +			       enum ttm_caching caching,
> > > +			       unsigned long extra_pages)
> > >   {
> > > -	ttm->num_pages = PAGE_ALIGN(bo->base.size) >> PAGE_SHIFT;
> > > +	ttm->num_pages = (PAGE_ALIGN(bo->base.size) >> PAGE_SHIFT) + extra_pages;
> > >   	ttm->caching = ttm_cached;
> > >   	ttm->page_flags = page_flags;
> > >   	ttm->dma_address = NULL;
> > > @@ -146,9 +147,10 @@ static void ttm_tt_init_fields(struct ttm_tt *ttm,
> > >   }
> > >   int ttm_tt_init(struct ttm_tt *ttm, struct ttm_buffer_object *bo,
> > > -		uint32_t page_flags, enum ttm_caching caching)
> > > +		uint32_t page_flags, enum ttm_caching caching,
> > > +		unsigned long extra_pages)
> > >   {
> > > -	ttm_tt_init_fields(ttm, bo, page_flags, caching);
> > > +	ttm_tt_init_fields(ttm, bo, page_flags, caching, extra_pages);
> > >   	if (ttm_tt_alloc_page_directory(ttm)) {
> > >   		pr_err("Failed allocating page table\n");
> > > @@ -180,7 +182,7 @@ int ttm_sg_tt_init(struct ttm_tt *ttm, struct ttm_buffer_object *bo,
> > >   {
> > >   	int ret;
> > > -	ttm_tt_init_fields(ttm, bo, page_flags, caching);
> > > +	ttm_tt_init_fields(ttm, bo, page_flags, caching, 0);
> > >   	if (page_flags & TTM_TT_FLAG_EXTERNAL)
> > >   		ret = ttm_sg_tt_alloc_page_directory(ttm);
> > > diff --git a/drivers/gpu/drm/vmwgfx/vmwgfx_ttm_buffer.c b/drivers/gpu/drm/vmwgfx/vmwgfx_ttm_buffer.c
> > > index b84ecc6d6611..4e3938e62c08 100644
> > > --- a/drivers/gpu/drm/vmwgfx/vmwgfx_ttm_buffer.c
> > > +++ b/drivers/gpu/drm/vmwgfx/vmwgfx_ttm_buffer.c
> > > @@ -517,7 +517,7 @@ static struct ttm_tt *vmw_ttm_tt_create(struct ttm_buffer_object *bo,
> > >   				     ttm_cached);
> > >   	else
> > >   		ret = ttm_tt_init(&vmw_be->dma_ttm, bo, page_flags,
> > > -				  ttm_cached);
> > > +				  ttm_cached, 0);
> > >   	if (unlikely(ret != 0))
> > >   		goto out_no_init;
> > > diff --git a/include/drm/ttm/ttm_tt.h b/include/drm/ttm/ttm_tt.h
> > > index f20832139815..17a0310e8aaa 100644
> > > --- a/include/drm/ttm/ttm_tt.h
> > > +++ b/include/drm/ttm/ttm_tt.h
> > > @@ -140,6 +140,7 @@ int ttm_tt_create(struct ttm_buffer_object *bo, bool zero_alloc);
> > >    * @bo: The buffer object we create the ttm for.
> > >    * @page_flags: Page flags as identified by TTM_TT_FLAG_XX flags.
> > >    * @caching: the desired caching state of the pages
> > > + * @extra_pages: Extra pages needed for the driver.
> > >    *
> > >    * Create a struct ttm_tt to back data with system memory pages.
> > >    * No pages are actually allocated.
> > > @@ -147,7 +148,8 @@ int ttm_tt_create(struct ttm_buffer_object *bo, bool zero_alloc);
> > >    * NULL: Out of memory.
> > >    */
> > >   int ttm_tt_init(struct ttm_tt *ttm, struct ttm_buffer_object *bo,
> > > -		uint32_t page_flags, enum ttm_caching caching);
> > > +		uint32_t page_flags, enum ttm_caching caching,
> > > +		unsigned long extra_pages);
> > >   int ttm_sg_tt_init(struct ttm_tt *ttm_dma, struct ttm_buffer_object *bo,
> > >   		   uint32_t page_flags, enum ttm_caching caching);
> > > -- 
> > > 2.20.1
> > > 
> 

WARNING: multiple messages have this Message-ID (diff)
From: Ramalingam C <ramalingam.c@intel.com>
To: "Christian König" <christian.koenig@amd.com>
Cc: intel-gfx <intel-gfx@lists.freedesktop.org>,
	dri-devel <dri-devel@lists.freedesktop.org>,
	rodrigo.vivi@intel.com
Subject: Re: [Intel-gfx] [PATCH v7 7/9] drm/ttm: Add a parameter to add extra pages into ttm_tt
Date: Sat, 2 Apr 2022 08:32:38 +0530	[thread overview]
Message-ID: <20220402030237.GA29661@intel.com> (raw)
In-Reply-To: <7517726e-c828-ace8-9968-e542e23d97f1@amd.com>

On 2022-04-01 at 16:31:19 +0200, Christian König wrote:
> I would be nicer to push this through drm-misc-next, but the intel branch
> works for me as well.
Hi Christian

I have pushed this patch into drm-misc-next.

Regards,
Ram.
> 
> Regards,
> Christian.
> 
> Am 01.04.22 um 16:28 schrieb Ramalingam C:
> > Christian, Joonas and vivi
> > 
> > Once the premerge results are greeen, if this patch can be merged into
> > drm-intel-gt-next along with other patches could you please ack the
> > request to merge into drm-intel-gt-next?
> > 
> > Thanks
> > Ram
> > 
> > On 2022-04-01 at 18:07:49 +0530, Ramalingam C wrote:
> > > Add a parameter called "extra_pages" for ttm_tt_init, to indicate that
> > > driver needs extra pages in ttm_tt.
> > > 
> > > v2:
> > >    Used imperative wording [Thomas and Christian]
> > > 
> > > Signed-off-by: Ramalingam C <ramalingam.c@intel.com>
> > > cc: Christian Koenig <christian.koenig@amd.com>
> > > cc: Hellstrom Thomas <thomas.hellstrom@intel.com>
> > > Reviewed-by: Thomas Hellstrom <thomas.hellstrom@linux.intel.com>
> > > Reviewed-by: Christian Konig <christian.koenig@amd.com>
> > > Reviewed-by: Nirmoy Das <nirmoy.das@intel.com>
> > > ---
> > >   drivers/gpu/drm/drm_gem_vram_helper.c      |  2 +-
> > >   drivers/gpu/drm/i915/gem/i915_gem_ttm.c    |  2 +-
> > >   drivers/gpu/drm/qxl/qxl_ttm.c              |  2 +-
> > >   drivers/gpu/drm/ttm/ttm_agp_backend.c      |  2 +-
> > >   drivers/gpu/drm/ttm/ttm_tt.c               | 12 +++++++-----
> > >   drivers/gpu/drm/vmwgfx/vmwgfx_ttm_buffer.c |  2 +-
> > >   include/drm/ttm/ttm_tt.h                   |  4 +++-
> > >   7 files changed, 15 insertions(+), 11 deletions(-)
> > > 
> > > diff --git a/drivers/gpu/drm/drm_gem_vram_helper.c b/drivers/gpu/drm/drm_gem_vram_helper.c
> > > index dc7f938bfff2..123045b58fec 100644
> > > --- a/drivers/gpu/drm/drm_gem_vram_helper.c
> > > +++ b/drivers/gpu/drm/drm_gem_vram_helper.c
> > > @@ -867,7 +867,7 @@ static struct ttm_tt *bo_driver_ttm_tt_create(struct ttm_buffer_object *bo,
> > >   	if (!tt)
> > >   		return NULL;
> > > -	ret = ttm_tt_init(tt, bo, page_flags, ttm_cached);
> > > +	ret = ttm_tt_init(tt, bo, page_flags, ttm_cached, 0);
> > >   	if (ret < 0)
> > >   		goto err_ttm_tt_init;
> > > diff --git a/drivers/gpu/drm/i915/gem/i915_gem_ttm.c b/drivers/gpu/drm/i915/gem/i915_gem_ttm.c
> > > index c40aca99442f..a878910a563c 100644
> > > --- a/drivers/gpu/drm/i915/gem/i915_gem_ttm.c
> > > +++ b/drivers/gpu/drm/i915/gem/i915_gem_ttm.c
> > > @@ -293,7 +293,7 @@ static struct ttm_tt *i915_ttm_tt_create(struct ttm_buffer_object *bo,
> > >   		i915_tt->is_shmem = true;
> > >   	}
> > > -	ret = ttm_tt_init(&i915_tt->ttm, bo, page_flags, caching);
> > > +	ret = ttm_tt_init(&i915_tt->ttm, bo, page_flags, caching, 0);
> > >   	if (ret)
> > >   		goto err_free;
> > > diff --git a/drivers/gpu/drm/qxl/qxl_ttm.c b/drivers/gpu/drm/qxl/qxl_ttm.c
> > > index 95df5750f47f..9ba871bd19b1 100644
> > > --- a/drivers/gpu/drm/qxl/qxl_ttm.c
> > > +++ b/drivers/gpu/drm/qxl/qxl_ttm.c
> > > @@ -113,7 +113,7 @@ static struct ttm_tt *qxl_ttm_tt_create(struct ttm_buffer_object *bo,
> > >   	ttm = kzalloc(sizeof(struct ttm_tt), GFP_KERNEL);
> > >   	if (ttm == NULL)
> > >   		return NULL;
> > > -	if (ttm_tt_init(ttm, bo, page_flags, ttm_cached)) {
> > > +	if (ttm_tt_init(ttm, bo, page_flags, ttm_cached, 0)) {
> > >   		kfree(ttm);
> > >   		return NULL;
> > >   	}
> > > diff --git a/drivers/gpu/drm/ttm/ttm_agp_backend.c b/drivers/gpu/drm/ttm/ttm_agp_backend.c
> > > index 6ddc16f0fe2b..d27691f2e451 100644
> > > --- a/drivers/gpu/drm/ttm/ttm_agp_backend.c
> > > +++ b/drivers/gpu/drm/ttm/ttm_agp_backend.c
> > > @@ -134,7 +134,7 @@ struct ttm_tt *ttm_agp_tt_create(struct ttm_buffer_object *bo,
> > >   	agp_be->mem = NULL;
> > >   	agp_be->bridge = bridge;
> > > -	if (ttm_tt_init(&agp_be->ttm, bo, page_flags, ttm_write_combined)) {
> > > +	if (ttm_tt_init(&agp_be->ttm, bo, page_flags, ttm_write_combined, 0)) {
> > >   		kfree(agp_be);
> > >   		return NULL;
> > >   	}
> > > diff --git a/drivers/gpu/drm/ttm/ttm_tt.c b/drivers/gpu/drm/ttm/ttm_tt.c
> > > index d234aab800a0..1a66d9fc589a 100644
> > > --- a/drivers/gpu/drm/ttm/ttm_tt.c
> > > +++ b/drivers/gpu/drm/ttm/ttm_tt.c
> > > @@ -134,9 +134,10 @@ void ttm_tt_destroy(struct ttm_device *bdev, struct ttm_tt *ttm)
> > >   static void ttm_tt_init_fields(struct ttm_tt *ttm,
> > >   			       struct ttm_buffer_object *bo,
> > >   			       uint32_t page_flags,
> > > -			       enum ttm_caching caching)
> > > +			       enum ttm_caching caching,
> > > +			       unsigned long extra_pages)
> > >   {
> > > -	ttm->num_pages = PAGE_ALIGN(bo->base.size) >> PAGE_SHIFT;
> > > +	ttm->num_pages = (PAGE_ALIGN(bo->base.size) >> PAGE_SHIFT) + extra_pages;
> > >   	ttm->caching = ttm_cached;
> > >   	ttm->page_flags = page_flags;
> > >   	ttm->dma_address = NULL;
> > > @@ -146,9 +147,10 @@ static void ttm_tt_init_fields(struct ttm_tt *ttm,
> > >   }
> > >   int ttm_tt_init(struct ttm_tt *ttm, struct ttm_buffer_object *bo,
> > > -		uint32_t page_flags, enum ttm_caching caching)
> > > +		uint32_t page_flags, enum ttm_caching caching,
> > > +		unsigned long extra_pages)
> > >   {
> > > -	ttm_tt_init_fields(ttm, bo, page_flags, caching);
> > > +	ttm_tt_init_fields(ttm, bo, page_flags, caching, extra_pages);
> > >   	if (ttm_tt_alloc_page_directory(ttm)) {
> > >   		pr_err("Failed allocating page table\n");
> > > @@ -180,7 +182,7 @@ int ttm_sg_tt_init(struct ttm_tt *ttm, struct ttm_buffer_object *bo,
> > >   {
> > >   	int ret;
> > > -	ttm_tt_init_fields(ttm, bo, page_flags, caching);
> > > +	ttm_tt_init_fields(ttm, bo, page_flags, caching, 0);
> > >   	if (page_flags & TTM_TT_FLAG_EXTERNAL)
> > >   		ret = ttm_sg_tt_alloc_page_directory(ttm);
> > > diff --git a/drivers/gpu/drm/vmwgfx/vmwgfx_ttm_buffer.c b/drivers/gpu/drm/vmwgfx/vmwgfx_ttm_buffer.c
> > > index b84ecc6d6611..4e3938e62c08 100644
> > > --- a/drivers/gpu/drm/vmwgfx/vmwgfx_ttm_buffer.c
> > > +++ b/drivers/gpu/drm/vmwgfx/vmwgfx_ttm_buffer.c
> > > @@ -517,7 +517,7 @@ static struct ttm_tt *vmw_ttm_tt_create(struct ttm_buffer_object *bo,
> > >   				     ttm_cached);
> > >   	else
> > >   		ret = ttm_tt_init(&vmw_be->dma_ttm, bo, page_flags,
> > > -				  ttm_cached);
> > > +				  ttm_cached, 0);
> > >   	if (unlikely(ret != 0))
> > >   		goto out_no_init;
> > > diff --git a/include/drm/ttm/ttm_tt.h b/include/drm/ttm/ttm_tt.h
> > > index f20832139815..17a0310e8aaa 100644
> > > --- a/include/drm/ttm/ttm_tt.h
> > > +++ b/include/drm/ttm/ttm_tt.h
> > > @@ -140,6 +140,7 @@ int ttm_tt_create(struct ttm_buffer_object *bo, bool zero_alloc);
> > >    * @bo: The buffer object we create the ttm for.
> > >    * @page_flags: Page flags as identified by TTM_TT_FLAG_XX flags.
> > >    * @caching: the desired caching state of the pages
> > > + * @extra_pages: Extra pages needed for the driver.
> > >    *
> > >    * Create a struct ttm_tt to back data with system memory pages.
> > >    * No pages are actually allocated.
> > > @@ -147,7 +148,8 @@ int ttm_tt_create(struct ttm_buffer_object *bo, bool zero_alloc);
> > >    * NULL: Out of memory.
> > >    */
> > >   int ttm_tt_init(struct ttm_tt *ttm, struct ttm_buffer_object *bo,
> > > -		uint32_t page_flags, enum ttm_caching caching);
> > > +		uint32_t page_flags, enum ttm_caching caching,
> > > +		unsigned long extra_pages);
> > >   int ttm_sg_tt_init(struct ttm_tt *ttm_dma, struct ttm_buffer_object *bo,
> > >   		   uint32_t page_flags, enum ttm_caching caching);
> > > -- 
> > > 2.20.1
> > > 
> 

  reply	other threads:[~2022-04-02  3:02 UTC|newest]

Thread overview: 38+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-04-01 12:37 [PATCH v7 0/9] drm/i915/ttm: Evict and restore of compressed object Ramalingam C
2022-04-01 12:37 ` [Intel-gfx] " Ramalingam C
2022-04-01 12:37 ` [PATCH v7 1/9] drm/i915/gt: use engine instance directly for offset Ramalingam C
2022-04-01 12:37   ` [Intel-gfx] " Ramalingam C
2022-04-01 12:37 ` [PATCH v7 2/9] drm/i915/gt: Use XY_FAST_COLOR_BLT to clear obj on graphics ver 12+ Ramalingam C
2022-04-01 12:37   ` [Intel-gfx] " Ramalingam C
2022-04-01 12:37 ` [PATCH v7 3/9] drm/i915/gt: Optimize the migration and clear loop Ramalingam C
2022-04-01 12:37   ` [Intel-gfx] " Ramalingam C
2022-04-05  9:43   ` Balasubramani Vivekanandan
2022-04-05  9:43     ` [Intel-gfx] " Balasubramani Vivekanandan
2022-04-01 12:37 ` [PATCH v7 4/9] drm/i915/gt: Clear compress metadata for Flat-ccs objects Ramalingam C
2022-04-01 12:37   ` [Intel-gfx] " Ramalingam C
2022-04-01 12:37 ` [PATCH v7 5/9] drm/i915/selftest_migrate: Consider the possible roundup of size Ramalingam C
2022-04-01 12:37   ` [Intel-gfx] " Ramalingam C
2022-04-01 12:37 ` [PATCH v7 6/9] drm/i915/selftest_migrate: Check CCS meta data clear Ramalingam C
2022-04-01 12:37   ` [Intel-gfx] " Ramalingam C
2022-04-01 12:37 ` [PATCH v7 7/9] drm/ttm: Add a parameter to add extra pages into ttm_tt Ramalingam C
2022-04-01 12:37   ` [Intel-gfx] " Ramalingam C
2022-04-01 14:28   ` Ramalingam C
2022-04-01 14:28     ` [Intel-gfx] " Ramalingam C
2022-04-01 14:31     ` Christian König
2022-04-01 14:31       ` [Intel-gfx] " Christian König
2022-04-02  3:02       ` Ramalingam C [this message]
2022-04-02  3:02         ` Ramalingam C
2022-04-13  8:28         ` Joonas Lahtinen
2022-04-13  8:28           ` [Intel-gfx] " Joonas Lahtinen
2022-04-13 10:03           ` Ramalingam C
2022-04-13 10:03             ` [Intel-gfx] " Ramalingam C
2022-04-01 12:37 ` [PATCH v7 8/9] drm/i915/gem: Add extra pages in ttm_tt for ccs data Ramalingam C
2022-04-01 12:37   ` [Intel-gfx] " Ramalingam C
2022-04-01 12:37 ` [PATCH v7 9/9] drm/i915/migrate: Evict and restore the flatccs capable lmem obj Ramalingam C
2022-04-01 12:37   ` [Intel-gfx] " Ramalingam C
2022-04-01 13:42 ` [Intel-gfx] ✗ Fi.CI.CHECKPATCH: warning for drm/i915/ttm: Evict and restore of compressed object (rev7) Patchwork
2022-04-01 13:43 ` [Intel-gfx] ✗ Fi.CI.SPARSE: " Patchwork
2022-04-01 14:12 ` [Intel-gfx] ✓ Fi.CI.BAT: success " Patchwork
2022-04-01 15:59 ` [Intel-gfx] ✗ Fi.CI.IGT: failure " Patchwork
2022-04-01 18:49   ` Ramalingam C
  -- strict thread matches above, loose matches on Subject: below --
2022-03-28 19:07 [PATCH v7 0/9] drm/i915/ttm: Evict and restore of compressed object Ramalingam C
2022-03-28 19:07 ` [PATCH v7 7/9] drm/ttm: Add a parameter to add extra pages into ttm_tt Ramalingam C

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20220402030237.GA29661@intel.com \
    --to=ramalingam.c@intel.com \
    --cc=christian.koenig@amd.com \
    --cc=dri-devel@lists.freedesktop.org \
    --cc=intel-gfx@lists.freedesktop.org \
    --cc=rodrigo.vivi@intel.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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.