From: Michel Thierry <michel.thierry@intel.com>
To: Mika Kuoppala <mika.kuoppala@linux.intel.com>,
"intel-gfx@lists.freedesktop.org"
<intel-gfx@lists.freedesktop.org>
Subject: Re: [PATCH 20/21] drm/i915/gtt: Use nonatomic bitmap ops
Date: Wed, 03 Jun 2015 18:07:08 +0100 [thread overview]
Message-ID: <556F343C.6000308@intel.com> (raw)
In-Reply-To: <1432314314-23530-21-git-send-email-mika.kuoppala@intel.com>
On 5/22/2015 6:05 PM, Mika Kuoppala wrote:
> There is no need for atomicity here. Convert all bitmap
> operations to nonatomic variants.
>
> Cc: Ville Syrjälä <ville.syrjala@linux.intel.com>
> Signed-off-by: Mika Kuoppala <mika.kuoppala@intel.com>
Reviewed-by: Michel Thierry <michel.thierry@intel.com>
> ---
> drivers/gpu/drm/i915/i915_gem_gtt.c | 12 ++++++------
> 1 file changed, 6 insertions(+), 6 deletions(-)
>
> diff --git a/drivers/gpu/drm/i915/i915_gem_gtt.c b/drivers/gpu/drm/i915/i915_gem_gtt.c
> index ab113ce..95c39e5 100644
> --- a/drivers/gpu/drm/i915/i915_gem_gtt.c
> +++ b/drivers/gpu/drm/i915/i915_gem_gtt.c
> @@ -842,7 +842,7 @@ static int gen8_ppgtt_alloc_pagetabs(struct i915_hw_ppgtt *ppgtt,
>
> gen8_initialize_pt(&ppgtt->base, pt);
> pd->page_table[pde] = pt;
> - set_bit(pde, new_pts);
> + __set_bit(pde, new_pts);
> }
>
> return 0;
> @@ -900,7 +900,7 @@ static int gen8_ppgtt_alloc_page_directories(struct i915_hw_ppgtt *ppgtt,
>
> gen8_initialize_pd(&ppgtt->base, pd);
> pdp->page_directory[pdpe] = pd;
> - set_bit(pdpe, new_pds);
> + __set_bit(pdpe, new_pds);
> }
>
> return 0;
> @@ -1040,7 +1040,7 @@ static int gen8_alloc_va_range(struct i915_address_space *vm,
> gen8_pte_count(pd_start, pd_len));
>
> /* Our pde is now pointing to the pagetable, pt */
> - set_bit(pde, pd->used_pdes);
> + __set_bit(pde, pd->used_pdes);
>
> /* Map the PDE to the page table */
> page_directory[pde] = gen8_pde_encode(px_dma(pt),
> @@ -1052,7 +1052,7 @@ static int gen8_alloc_va_range(struct i915_address_space *vm,
>
> kunmap_px(ppgtt, page_directory);
>
> - set_bit(pdpe, ppgtt->pdp.used_pdpes);
> + __set_bit(pdpe, ppgtt->pdp.used_pdpes);
> }
>
> free_gen8_temp_bitmaps(new_page_dirs, new_page_tables);
> @@ -1497,7 +1497,7 @@ static int gen6_alloc_va_range(struct i915_address_space *vm,
> gen6_initialize_pt(vm, pt);
>
> ppgtt->pd.page_table[pde] = pt;
> - set_bit(pde, new_page_tables);
> + __set_bit(pde, new_page_tables);
> trace_i915_page_table_entry_alloc(vm, pde, start, GEN6_PDE_SHIFT);
> }
>
> @@ -1511,7 +1511,7 @@ static int gen6_alloc_va_range(struct i915_address_space *vm,
> bitmap_set(tmp_bitmap, gen6_pte_index(start),
> gen6_pte_count(start, length));
>
> - if (test_and_clear_bit(pde, new_page_tables))
> + if (__test_and_clear_bit(pde, new_page_tables))
> gen6_write_pde(&ppgtt->pd, pde, pt);
>
> trace_i915_page_table_entry_map(vm, pde, pt,
> --
> 1.9.1
>
> _______________________________________________
> Intel-gfx mailing list
> Intel-gfx@lists.freedesktop.org
> http://lists.freedesktop.org/mailman/listinfo/intel-gfx
_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/intel-gfx
next prev parent reply other threads:[~2015-06-03 17:07 UTC|newest]
Thread overview: 86+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-05-22 17:04 [PATCH 00/21] ppgtt cleanups / scratch merge (V2) Mika Kuoppala
2015-05-22 17:04 ` [PATCH 01/21] drm/i915/gtt: Mark TLBS dirty for gen8+ Mika Kuoppala
2015-06-01 14:51 ` Joonas Lahtinen
2015-06-11 17:37 ` Mika Kuoppala
2015-06-23 11:10 ` Joonas Lahtinen
2015-06-01 15:52 ` Michel Thierry
2015-05-22 17:04 ` [PATCH 02/21] drm/i915/gtt: Workaround for HW preload not flushing pdps Mika Kuoppala
2015-05-29 11:05 ` Michel Thierry
2015-05-29 12:53 ` Michel Thierry
2015-06-10 11:42 ` Michel Thierry
2015-06-11 7:31 ` Dave Gordon
2015-06-11 10:46 ` Michel Thierry
2015-06-11 13:57 ` Mika Kuoppala
2015-08-11 5:05 ` Zhiyuan Lv
2015-08-12 7:56 ` Michel Thierry
2015-08-12 15:09 ` Dave Gordon
2015-08-13 9:36 ` Zhiyuan Lv
2015-08-13 9:54 ` Michel Thierry
2015-08-13 9:08 ` Zhiyuan Lv
2015-08-13 10:12 ` Michel Thierry
2015-08-13 11:42 ` Dave Gordon
2015-08-13 12:03 ` Dave Gordon
2015-08-13 14:56 ` Zhiyuan Lv
2015-05-22 17:04 ` [PATCH 03/21] drm/i915/gtt: Check va range against vm size Mika Kuoppala
2015-06-01 15:33 ` Joonas Lahtinen
2015-06-11 14:23 ` Mika Kuoppala
2015-06-24 14:48 ` Michel Thierry
2015-05-22 17:04 ` [PATCH 04/21] drm/i915/gtt: Allow >= 4GB sizes for vm Mika Kuoppala
2015-05-26 7:15 ` Daniel Vetter
2015-06-11 17:38 ` Mika Kuoppala
2015-05-22 17:04 ` [PATCH 05/21] drm/i915/gtt: Don't leak scratch page on mapping error Mika Kuoppala
2015-06-01 15:02 ` Joonas Lahtinen
2015-06-15 10:13 ` Daniel Vetter
2015-05-22 17:04 ` [PATCH 06/21] drm/i915/gtt: Remove _single from page table allocator Mika Kuoppala
2015-06-02 9:53 ` Joonas Lahtinen
2015-06-02 9:56 ` Michel Thierry
2015-06-15 10:14 ` Daniel Vetter
2015-05-22 17:05 ` [PATCH 07/21] drm/i915/gtt: Introduce i915_page_dir_dma_addr Mika Kuoppala
2015-06-02 10:11 ` Michel Thierry
2015-05-22 17:05 ` [PATCH 08/21] drm/i915/gtt: Introduce struct i915_page_dma Mika Kuoppala
2015-06-02 12:39 ` Michel Thierry
2015-06-11 17:48 ` Mika Kuoppala
2015-06-22 14:05 ` Michel Thierry
2015-05-22 17:05 ` [PATCH 09/21] drm/i915/gtt: Rename unmap_and_free_px to free_px Mika Kuoppala
2015-06-02 13:08 ` Michel Thierry
2015-06-11 17:48 ` Mika Kuoppala
2015-06-22 14:09 ` Michel Thierry
2015-06-22 14:43 ` Daniel Vetter
2015-05-22 17:05 ` [PATCH 10/21] drm/i915/gtt: Remove superfluous free_pd with gen6/7 Mika Kuoppala
2015-06-02 14:07 ` Michel Thierry
2015-05-22 17:05 ` [PATCH 11/21] drm/i915/gtt: Introduce fill_page_dma() Mika Kuoppala
2015-06-02 14:51 ` Michel Thierry
2015-06-02 15:01 ` Ville Syrjälä
2015-06-15 10:16 ` Daniel Vetter
2015-06-11 17:50 ` Mika Kuoppala
2015-06-24 15:05 ` Michel Thierry
2015-05-22 17:05 ` [PATCH 12/21] drm/i915/gtt: Introduce kmap|kunmap for dma page Mika Kuoppala
2015-06-03 10:55 ` Michel Thierry
2015-06-11 17:50 ` Mika Kuoppala
2015-06-24 15:06 ` Michel Thierry
2015-05-22 17:05 ` [PATCH 13/21] drm/i915/gtt: Use macros to access dma mapped pages Mika Kuoppala
2015-06-03 10:57 ` Michel Thierry
2015-05-22 17:05 ` [PATCH 14/21] drm/i915/gtt: Make scratch page i915_page_dma compatible Mika Kuoppala
2015-06-03 13:44 ` Michel Thierry
2015-06-11 16:30 ` Mika Kuoppala
2015-06-24 14:59 ` Michel Thierry
2015-05-22 17:05 ` [PATCH 15/21] drm/i915/gtt: Fill scratch page Mika Kuoppala
2015-05-27 18:12 ` Tomas Elf
2015-06-01 15:53 ` Chris Wilson
2015-06-04 11:08 ` Tomas Elf
2015-06-04 11:24 ` Chris Wilson
2015-06-11 16:37 ` Mika Kuoppala
2015-06-03 14:03 ` Michel Thierry
2015-05-22 17:05 ` [PATCH 16/21] drm/i915/gtt: Pin vma during virtual address allocation Mika Kuoppala
2015-06-03 14:27 ` Michel Thierry
2015-05-22 17:05 ` [PATCH 17/21] drm/i915/gtt: Cleanup page directory encoding Mika Kuoppala
2015-06-03 14:58 ` Michel Thierry
2015-05-22 17:05 ` [PATCH 18/21] drm/i915/gtt: Move scratch_pd and scratch_pt into vm area Mika Kuoppala
2015-06-03 16:46 ` Michel Thierry
2015-05-22 17:05 ` [PATCH 19/21] drm/i915/gtt: One instance of scratch page table/directory Mika Kuoppala
2015-06-03 16:57 ` Michel Thierry
2015-05-22 17:05 ` [PATCH 20/21] drm/i915/gtt: Use nonatomic bitmap ops Mika Kuoppala
2015-06-03 17:07 ` Michel Thierry [this message]
2015-05-22 17:05 ` [PATCH 21/21] drm/i915/gtt: Reorder page alloc/free/init functions Mika Kuoppala
2015-06-03 17:14 ` Michel Thierry
2015-06-11 17:52 ` Mika Kuoppala
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=556F343C.6000308@intel.com \
--to=michel.thierry@intel.com \
--cc=intel-gfx@lists.freedesktop.org \
--cc=mika.kuoppala@linux.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox