* [PATCH 00/10] Series short description
@ 2008-06-12 4:40 Ian Kent
2008-06-12 5:08 ` Ian Kent
0 siblings, 1 reply; 3+ messages in thread
From: Ian Kent @ 2008-06-12 4:40 UTC (permalink / raw)
To: Jim Carter, autofs mailing list
The following series implements...
---
Ian Kent (8):
autofs4 - fix pending mount race.
autofs4 - use lookup intent flags to trigger mounts
autofs4 - don't release directory mutex if called in oz_mode
autofs4 - use rehash list for lookups
autofs4 - don't make expiring dentry negative
autofs4 - fix mntput, dput order bug
autofs4 - fix sparse warning in waitq.c:autofs4_expire_indirect()
autofs4 - check for invalid dentry in getpath
Jeff Moyer (2):
autofs4 - use struct qstr in waitq.c
autofs4 - fix incorrect return from root.c:try_to_fill_dentry()
fs/autofs4/autofs_i.h | 12 +-
fs/autofs4/expire.c | 26 ++---
fs/autofs4/inode.c | 29 +++---
fs/autofs4/root.c | 248 +++++++++++++++++++++++++++++++++----------------
fs/autofs4/waitq.c | 203 ++++++++++++++++++++++++++--------------
5 files changed, 333 insertions(+), 185 deletions(-)
--
^ permalink raw reply [flat|nested] 3+ messages in thread* Re: [PATCH 00/10] Series short description
2008-06-12 4:40 [PATCH 00/10] Series short description Ian Kent
@ 2008-06-12 5:08 ` Ian Kent
0 siblings, 0 replies; 3+ messages in thread
From: Ian Kent @ 2008-06-12 5:08 UTC (permalink / raw)
To: Jim Carter; +Cc: autofs mailing list
Oops, ignore this.
On Thu, 2008-06-12 at 12:40 +0800, Ian Kent wrote:
> The following series implements...
>
> ---
>
> Ian Kent (8):
> autofs4 - fix pending mount race.
> autofs4 - use lookup intent flags to trigger mounts
> autofs4 - don't release directory mutex if called in oz_mode
> autofs4 - use rehash list for lookups
> autofs4 - don't make expiring dentry negative
> autofs4 - fix mntput, dput order bug
> autofs4 - fix sparse warning in waitq.c:autofs4_expire_indirect()
> autofs4 - check for invalid dentry in getpath
>
> Jeff Moyer (2):
> autofs4 - use struct qstr in waitq.c
> autofs4 - fix incorrect return from root.c:try_to_fill_dentry()
>
>
> fs/autofs4/autofs_i.h | 12 +-
> fs/autofs4/expire.c | 26 ++---
> fs/autofs4/inode.c | 29 +++---
> fs/autofs4/root.c | 248 +++++++++++++++++++++++++++++++++----------------
> fs/autofs4/waitq.c | 203 ++++++++++++++++++++++++++--------------
> 5 files changed, 333 insertions(+), 185 deletions(-)
>
^ permalink raw reply [flat|nested] 3+ messages in thread
* [PATCH 00/10] Series short description
@ 2010-01-05 22:54 Paul Walmsley
0 siblings, 0 replies; 3+ messages in thread
From: Paul Walmsley @ 2010-01-05 22:54 UTC (permalink / raw)
To: linux-omap
OMAP2/3/4 clockdomains/powerdomains: split shared dependencies and clean up
Hi,
This series moves wakeup and sleep dependencies on the OMAP2/3 chips from
the powerdomain layer to the clockdomain layer, where they belong. It also
adds usecounting for clockdomain dependency usecounting, which fixes the
obvious problem that occurs when several different pieces of code need
to add clockdomain dependencies, and then one removes the dependency.
(To add usecounting, the dependencies that were shared between
clockdomains have been split into separate records.) These changes should
prepare the clockdomain code for OMAP4 clockdomain dependencies.
The series also does some cleanup. struct powerdomain is packed, the
dead function pwrdm_clk_state_switch() is removed, documentation is improved,
the nonexistent MDM clockdomain is removed from OMAP2420.
Boot-tested on N800, 2430SDP, and OMAP3 Beagle. Compile-tested with
omap_osk_5912_defconfig.
Applies on the 'for_2.6.34' branch of git://git.pwsan.com/linux-2.6
- Paul
---
text data bss dec hex filename
3622921 198528 102984 3924433 3be1d1 vmlinux.beagle.orig
3623325 199168 102984 3925477 3be5e5 vmlinux.beagle
Paul Walmsley (10):
OMAP2/3 clkdm/pwrdm: move wkdep/sleepdep handling from pwrdm to clkdm
OMAP2/3 clockdomains: split shared structures so usecounting works
OMAP2 clockdomain: modem clockdomain is only present on OMAP2430
OMAP clockdomain/powerdomain: remove runtime register/unregister
OMAP clockdomains: add usecounting for wakeup and sleep dependencies
OMAP2/3/4 clockdomain: add clkdm_clear_all_{wkdep,sleepdep}s()
OMAP powerdomain/PM: use symbolic constants for the max number of power states
OMAP powerdomain: rearrange struct powerdomain to save some memory
OMAP powerdomain: remove pwrdm_clk_state_switch
OMAP clockdomain/powerdomain: improve documentation
arch/arm/mach-omap2/clockdomain.c | 691 +++++++++++++++++++------
arch/arm/mach-omap2/clockdomains.h | 474 +++++++++++++++++
arch/arm/mach-omap2/io.c | 2
arch/arm/mach-omap2/omap_hwmod.c | 10
arch/arm/mach-omap2/pm34xx.c | 10
arch/arm/mach-omap2/powerdomain.c | 570 ++++-----------------
arch/arm/mach-omap2/powerdomains.h | 88 ---
arch/arm/mach-omap2/powerdomains24xx.h | 87 ---
arch/arm/mach-omap2/powerdomains34xx.h | 145 -----
arch/arm/mach-omap2/prcm.c | 12
arch/arm/plat-omap/include/plat/clockdomain.h | 99 ++--
arch/arm/plat-omap/include/plat/powerdomain.h | 78 +--
arch/arm/plat-omap/include/plat/prcm.h | 8
13 files changed, 1241 insertions(+), 1033 deletions(-)
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2010-01-05 22:58 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-06-12 4:40 [PATCH 00/10] Series short description Ian Kent
2008-06-12 5:08 ` Ian Kent
-- strict thread matches above, loose matches on Subject: below --
2010-01-05 22:54 Paul Walmsley
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.