LKML Archive on lore.kernel.org
help / color / mirror / Atom feed
From: David Hildenbrand <dahi@linux.vnet.ibm.com>
To: Christian Borntraeger <borntraeger@de.ibm.com>
Cc: linux-arch@vger.kernel.org, linux-kernel@vger.kernel.org,
benh@kernel.crashing.org, paulus@samba.org,
akpm@linux-foundation.org, heiko.carstens@de.ibm.com,
schwidefsky@de.ibm.com, mst@redhat.com, tglx@linutronix.de,
David.Laight@ACULAB.COM, peterz@infradead.org, hughd@google.com,
hocko@suse.cz
Subject: Re: [PATCH v1 1/5] uaccess: add pagefault_count to thread_info
Date: Mon, 8 Dec 2014 14:24:51 +0100 [thread overview]
Message-ID: <20141208142451.2d9c6cb9@thinkpad-w530> (raw)
In-Reply-To: <5485A3D2.3020404@de.ibm.com>
> Am 05.12.2014 um 12:18 schrieb David Hildenbrand:
> > This patch adds the pagefault_count to the thread_info of all
> > architectures. It will be used to count the pagefault_disable() levels
> > on a per-thread basis.
> >
> > We are not reusing the preempt_count as this is per cpu on x86 and we want to
> > demangle pagefault_disable() from preemption in the future.
> >
> > Signed-off-by: David Hildenbrand <dahi@linux.vnet.ibm.com>
> > ---
> > arch/alpha/include/asm/thread_info.h | 1 +
> > arch/arc/include/asm/thread_info.h | 1 +
> > arch/arm/include/asm/thread_info.h | 1 +
> > arch/arm64/include/asm/thread_info.h | 1 +
> > arch/avr32/include/asm/thread_info.h | 1 +
> > arch/blackfin/include/asm/thread_info.h | 1 +
> > arch/c6x/include/asm/thread_info.h | 1 +
> > arch/cris/include/asm/thread_info.h | 1 +
> > arch/frv/include/asm/thread_info.h | 1 +
> > arch/hexagon/include/asm/thread_info.h | 1 +
> > arch/ia64/include/asm/thread_info.h | 1 +
> > arch/m32r/include/asm/thread_info.h | 5 +++--
> > arch/m68k/include/asm/thread_info.h | 1 +
> > arch/metag/include/asm/thread_info.h | 1 +
> > arch/microblaze/include/asm/thread_info.h | 1 +
> > arch/mips/include/asm/thread_info.h | 1 +
> > arch/mn10300/include/asm/thread_info.h | 1 +
> > arch/openrisc/include/asm/thread_info.h | 1 +
> > arch/parisc/include/asm/thread_info.h | 1 +
> > arch/powerpc/include/asm/thread_info.h | 1 +
> > arch/s390/include/asm/thread_info.h | 1 +
> > arch/score/include/asm/thread_info.h | 1 +
> > arch/sh/include/asm/thread_info.h | 1 +
> > arch/sparc/include/asm/thread_info_32.h | 20 +++++++++++---------
> > arch/sparc/include/asm/thread_info_64.h | 17 +++++++++--------
>
> Maybe its easier to put the pagefault count at the end of the thread_info struct to make the patch smaller and easier to review for thoses architectures that have hand-maintained asm offsets?
Jap, that's also what I asked for in my cover letter.
Right now I wanted to keep the new count close to the preempt_count and similar
on all archs.
So move it only on the "hand-maintained asm offset" archs or on all archs?
David
next prev parent reply other threads:[~2014-12-08 13:25 UTC|newest]
Thread overview: 12+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-12-05 11:18 [PATCH v1 0/5] Reenable might_sleep() checks for might_fault() David Hildenbrand
2014-12-05 11:18 ` [PATCH v1 1/5] uaccess: add pagefault_count to thread_info David Hildenbrand
2014-12-08 13:12 ` Christian Borntraeger
2014-12-08 13:24 ` David Hildenbrand [this message]
2014-12-05 11:18 ` [PATCH v1 2/5] uaccess: count pagefault_disable() levels in pagefault_count David Hildenbrand
2014-12-05 11:18 ` [PATCH v1 3/5] mm, uaccess: trigger might_sleep() in might_fault() when pagefaults are disabled David Hildenbrand
2014-12-05 11:45 ` Heiko Carstens
2014-12-05 11:46 ` David Hildenbrand
2014-12-05 12:08 ` David Laight
2014-12-05 13:30 ` David Hildenbrand
2014-12-05 11:18 ` [PATCH v1 4/5] uaccess: clearify that uaccess may only sleep if pagefaults are not disabled David Hildenbrand
2014-12-05 11:18 ` [PATCH v1 5/5] uaccess: CONFIG_DEBUG_PAGEFAULT_COUNT to debug pagefault_count David Hildenbrand
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=20141208142451.2d9c6cb9@thinkpad-w530 \
--to=dahi@linux.vnet.ibm.com \
--cc=David.Laight@ACULAB.COM \
--cc=akpm@linux-foundation.org \
--cc=benh@kernel.crashing.org \
--cc=borntraeger@de.ibm.com \
--cc=heiko.carstens@de.ibm.com \
--cc=hocko@suse.cz \
--cc=hughd@google.com \
--cc=linux-arch@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=mst@redhat.com \
--cc=paulus@samba.org \
--cc=peterz@infradead.org \
--cc=schwidefsky@de.ibm.com \
--cc=tglx@linutronix.de \
--subject='Re: [PATCH v1 1/5] uaccess: add pagefault_count to thread_info' \
/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
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).