You've already forked linux-apfs
mirror of
https://github.com/linux-apfs/linux-apfs.git
synced 2026-05-01 15:00:59 -07:00
Merge commit 'v2.6.36-rc7' into core/rcu
Merge reason: Update from -rc3 to -rc7. Signed-off-by: Ingo Molnar <mingo@elte.hu>
This commit is contained in:
@@ -3554,12 +3554,12 @@ E: cvance@nai.com
|
|||||||
D: portions of the Linux Security Module (LSM) framework and security modules
|
D: portions of the Linux Security Module (LSM) framework and security modules
|
||||||
|
|
||||||
N: Petr Vandrovec
|
N: Petr Vandrovec
|
||||||
E: vandrove@vc.cvut.cz
|
E: petr@vandrovec.name
|
||||||
D: Small contributions to ncpfs
|
D: Small contributions to ncpfs
|
||||||
D: Matrox framebuffer driver
|
D: Matrox framebuffer driver
|
||||||
S: Chudenicka 8
|
S: 21513 Conradia Ct
|
||||||
S: 10200 Prague 10, Hostivar
|
S: Cupertino, CA 95014
|
||||||
S: Czech Republic
|
S: USA
|
||||||
|
|
||||||
N: Thibaut Varene
|
N: Thibaut Varene
|
||||||
E: T-Bone@parisc-linux.org
|
E: T-Bone@parisc-linux.org
|
||||||
|
|||||||
@@ -46,7 +46,6 @@
|
|||||||
|
|
||||||
<sect1><title>Atomic and pointer manipulation</title>
|
<sect1><title>Atomic and pointer manipulation</title>
|
||||||
!Iarch/x86/include/asm/atomic.h
|
!Iarch/x86/include/asm/atomic.h
|
||||||
!Iarch/x86/include/asm/unaligned.h
|
|
||||||
</sect1>
|
</sect1>
|
||||||
|
|
||||||
<sect1><title>Delaying, scheduling, and timer routines</title>
|
<sect1><title>Delaying, scheduling, and timer routines</title>
|
||||||
|
|||||||
@@ -57,7 +57,6 @@
|
|||||||
</para>
|
</para>
|
||||||
|
|
||||||
<sect1><title>String Conversions</title>
|
<sect1><title>String Conversions</title>
|
||||||
!Ilib/vsprintf.c
|
|
||||||
!Elib/vsprintf.c
|
!Elib/vsprintf.c
|
||||||
</sect1>
|
</sect1>
|
||||||
<sect1><title>String Manipulation</title>
|
<sect1><title>String Manipulation</title>
|
||||||
|
|||||||
@@ -0,0 +1,45 @@
|
|||||||
|
CFQ ioscheduler tunables
|
||||||
|
========================
|
||||||
|
|
||||||
|
slice_idle
|
||||||
|
----------
|
||||||
|
This specifies how long CFQ should idle for next request on certain cfq queues
|
||||||
|
(for sequential workloads) and service trees (for random workloads) before
|
||||||
|
queue is expired and CFQ selects next queue to dispatch from.
|
||||||
|
|
||||||
|
By default slice_idle is a non-zero value. That means by default we idle on
|
||||||
|
queues/service trees. This can be very helpful on highly seeky media like
|
||||||
|
single spindle SATA/SAS disks where we can cut down on overall number of
|
||||||
|
seeks and see improved throughput.
|
||||||
|
|
||||||
|
Setting slice_idle to 0 will remove all the idling on queues/service tree
|
||||||
|
level and one should see an overall improved throughput on faster storage
|
||||||
|
devices like multiple SATA/SAS disks in hardware RAID configuration. The down
|
||||||
|
side is that isolation provided from WRITES also goes down and notion of
|
||||||
|
IO priority becomes weaker.
|
||||||
|
|
||||||
|
So depending on storage and workload, it might be useful to set slice_idle=0.
|
||||||
|
In general I think for SATA/SAS disks and software RAID of SATA/SAS disks
|
||||||
|
keeping slice_idle enabled should be useful. For any configurations where
|
||||||
|
there are multiple spindles behind single LUN (Host based hardware RAID
|
||||||
|
controller or for storage arrays), setting slice_idle=0 might end up in better
|
||||||
|
throughput and acceptable latencies.
|
||||||
|
|
||||||
|
CFQ IOPS Mode for group scheduling
|
||||||
|
===================================
|
||||||
|
Basic CFQ design is to provide priority based time slices. Higher priority
|
||||||
|
process gets bigger time slice and lower priority process gets smaller time
|
||||||
|
slice. Measuring time becomes harder if storage is fast and supports NCQ and
|
||||||
|
it would be better to dispatch multiple requests from multiple cfq queues in
|
||||||
|
request queue at a time. In such scenario, it is not possible to measure time
|
||||||
|
consumed by single queue accurately.
|
||||||
|
|
||||||
|
What is possible though is to measure number of requests dispatched from a
|
||||||
|
single queue and also allow dispatch from multiple cfq queue at the same time.
|
||||||
|
This effectively becomes the fairness in terms of IOPS (IO operations per
|
||||||
|
second).
|
||||||
|
|
||||||
|
If one sets slice_idle=0 and if storage supports NCQ, CFQ internally switches
|
||||||
|
to IOPS mode and starts providing fairness in terms of number of requests
|
||||||
|
dispatched. Note that this mode switching takes effect only for group
|
||||||
|
scheduling. For non-cgroup users nothing should change.
|
||||||
@@ -217,6 +217,7 @@ Details of cgroup files
|
|||||||
CFQ sysfs tunable
|
CFQ sysfs tunable
|
||||||
=================
|
=================
|
||||||
/sys/block/<disk>/queue/iosched/group_isolation
|
/sys/block/<disk>/queue/iosched/group_isolation
|
||||||
|
-----------------------------------------------
|
||||||
|
|
||||||
If group_isolation=1, it provides stronger isolation between groups at the
|
If group_isolation=1, it provides stronger isolation between groups at the
|
||||||
expense of throughput. By default group_isolation is 0. In general that
|
expense of throughput. By default group_isolation is 0. In general that
|
||||||
@@ -243,6 +244,33 @@ By default one should run with group_isolation=0. If that is not sufficient
|
|||||||
and one wants stronger isolation between groups, then set group_isolation=1
|
and one wants stronger isolation between groups, then set group_isolation=1
|
||||||
but this will come at cost of reduced throughput.
|
but this will come at cost of reduced throughput.
|
||||||
|
|
||||||
|
/sys/block/<disk>/queue/iosched/slice_idle
|
||||||
|
------------------------------------------
|
||||||
|
On a faster hardware CFQ can be slow, especially with sequential workload.
|
||||||
|
This happens because CFQ idles on a single queue and single queue might not
|
||||||
|
drive deeper request queue depths to keep the storage busy. In such scenarios
|
||||||
|
one can try setting slice_idle=0 and that would switch CFQ to IOPS
|
||||||
|
(IO operations per second) mode on NCQ supporting hardware.
|
||||||
|
|
||||||
|
That means CFQ will not idle between cfq queues of a cfq group and hence be
|
||||||
|
able to driver higher queue depth and achieve better throughput. That also
|
||||||
|
means that cfq provides fairness among groups in terms of IOPS and not in
|
||||||
|
terms of disk time.
|
||||||
|
|
||||||
|
/sys/block/<disk>/queue/iosched/group_idle
|
||||||
|
------------------------------------------
|
||||||
|
If one disables idling on individual cfq queues and cfq service trees by
|
||||||
|
setting slice_idle=0, group_idle kicks in. That means CFQ will still idle
|
||||||
|
on the group in an attempt to provide fairness among groups.
|
||||||
|
|
||||||
|
By default group_idle is same as slice_idle and does not do anything if
|
||||||
|
slice_idle is enabled.
|
||||||
|
|
||||||
|
One can experience an overall throughput drop if you have created multiple
|
||||||
|
groups and put applications in that group which are not driving enough
|
||||||
|
IO to keep disk busy. In that case set group_idle=0, and CFQ will not idle
|
||||||
|
on individual groups and throughput should improve.
|
||||||
|
|
||||||
What works
|
What works
|
||||||
==========
|
==========
|
||||||
- Currently only sync IO queues are support. All the buffered writes are
|
- Currently only sync IO queues are support. All the buffered writes are
|
||||||
|
|||||||
@@ -91,12 +91,11 @@ name The chip name.
|
|||||||
I2C devices get this attribute created automatically.
|
I2C devices get this attribute created automatically.
|
||||||
RO
|
RO
|
||||||
|
|
||||||
update_rate The rate at which the chip will update readings.
|
update_interval The interval at which the chip will update readings.
|
||||||
Unit: millisecond
|
Unit: millisecond
|
||||||
RW
|
RW
|
||||||
Some devices have a variable update rate. This attribute
|
Some devices have a variable update rate or interval.
|
||||||
can be used to change the update rate to the desired
|
This attribute can be used to change it to the desired value.
|
||||||
frequency.
|
|
||||||
|
|
||||||
|
|
||||||
************
|
************
|
||||||
|
|||||||
@@ -345,5 +345,10 @@ documentation, in <filename>, for the functions listed.
|
|||||||
section titled <section title> from <filename>.
|
section titled <section title> from <filename>.
|
||||||
Spaces are allowed in <section title>; do not quote the <section title>.
|
Spaces are allowed in <section title>; do not quote the <section title>.
|
||||||
|
|
||||||
|
!C<filename> is replaced by nothing, but makes the tools check that
|
||||||
|
all DOC: sections and documented functions, symbols, etc. are used.
|
||||||
|
This makes sense to use when you use !F/!P only and want to verify
|
||||||
|
that all documentation is included.
|
||||||
|
|
||||||
Tim.
|
Tim.
|
||||||
*/ <twaugh@redhat.com>
|
*/ <twaugh@redhat.com>
|
||||||
|
|||||||
@@ -13,7 +13,7 @@ regulators (where voltage output is controllable) and current sinks (where
|
|||||||
current limit is controllable).
|
current limit is controllable).
|
||||||
|
|
||||||
(C) 2008 Wolfson Microelectronics PLC.
|
(C) 2008 Wolfson Microelectronics PLC.
|
||||||
Author: Liam Girdwood <lg@opensource.wolfsonmicro.com>
|
Author: Liam Girdwood <lrg@slimlogic.co.uk>
|
||||||
|
|
||||||
|
|
||||||
Nomenclature
|
Nomenclature
|
||||||
|
|||||||
@@ -296,6 +296,7 @@ Conexant 5051
|
|||||||
Conexant 5066
|
Conexant 5066
|
||||||
=============
|
=============
|
||||||
laptop Basic Laptop config (default)
|
laptop Basic Laptop config (default)
|
||||||
|
hp-laptop HP laptops, e g G60
|
||||||
dell-laptop Dell laptops
|
dell-laptop Dell laptops
|
||||||
dell-vostro Dell Vostro
|
dell-vostro Dell Vostro
|
||||||
olpc-xo-1_5 OLPC XO 1.5
|
olpc-xo-1_5 OLPC XO 1.5
|
||||||
|
|||||||
@@ -0,0 +1,380 @@
|
|||||||
|
|
||||||
|
Concurrency Managed Workqueue (cmwq)
|
||||||
|
|
||||||
|
September, 2010 Tejun Heo <tj@kernel.org>
|
||||||
|
Florian Mickler <florian@mickler.org>
|
||||||
|
|
||||||
|
CONTENTS
|
||||||
|
|
||||||
|
1. Introduction
|
||||||
|
2. Why cmwq?
|
||||||
|
3. The Design
|
||||||
|
4. Application Programming Interface (API)
|
||||||
|
5. Example Execution Scenarios
|
||||||
|
6. Guidelines
|
||||||
|
|
||||||
|
|
||||||
|
1. Introduction
|
||||||
|
|
||||||
|
There are many cases where an asynchronous process execution context
|
||||||
|
is needed and the workqueue (wq) API is the most commonly used
|
||||||
|
mechanism for such cases.
|
||||||
|
|
||||||
|
When such an asynchronous execution context is needed, a work item
|
||||||
|
describing which function to execute is put on a queue. An
|
||||||
|
independent thread serves as the asynchronous execution context. The
|
||||||
|
queue is called workqueue and the thread is called worker.
|
||||||
|
|
||||||
|
While there are work items on the workqueue the worker executes the
|
||||||
|
functions associated with the work items one after the other. When
|
||||||
|
there is no work item left on the workqueue the worker becomes idle.
|
||||||
|
When a new work item gets queued, the worker begins executing again.
|
||||||
|
|
||||||
|
|
||||||
|
2. Why cmwq?
|
||||||
|
|
||||||
|
In the original wq implementation, a multi threaded (MT) wq had one
|
||||||
|
worker thread per CPU and a single threaded (ST) wq had one worker
|
||||||
|
thread system-wide. A single MT wq needed to keep around the same
|
||||||
|
number of workers as the number of CPUs. The kernel grew a lot of MT
|
||||||
|
wq users over the years and with the number of CPU cores continuously
|
||||||
|
rising, some systems saturated the default 32k PID space just booting
|
||||||
|
up.
|
||||||
|
|
||||||
|
Although MT wq wasted a lot of resource, the level of concurrency
|
||||||
|
provided was unsatisfactory. The limitation was common to both ST and
|
||||||
|
MT wq albeit less severe on MT. Each wq maintained its own separate
|
||||||
|
worker pool. A MT wq could provide only one execution context per CPU
|
||||||
|
while a ST wq one for the whole system. Work items had to compete for
|
||||||
|
those very limited execution contexts leading to various problems
|
||||||
|
including proneness to deadlocks around the single execution context.
|
||||||
|
|
||||||
|
The tension between the provided level of concurrency and resource
|
||||||
|
usage also forced its users to make unnecessary tradeoffs like libata
|
||||||
|
choosing to use ST wq for polling PIOs and accepting an unnecessary
|
||||||
|
limitation that no two polling PIOs can progress at the same time. As
|
||||||
|
MT wq don't provide much better concurrency, users which require
|
||||||
|
higher level of concurrency, like async or fscache, had to implement
|
||||||
|
their own thread pool.
|
||||||
|
|
||||||
|
Concurrency Managed Workqueue (cmwq) is a reimplementation of wq with
|
||||||
|
focus on the following goals.
|
||||||
|
|
||||||
|
* Maintain compatibility with the original workqueue API.
|
||||||
|
|
||||||
|
* Use per-CPU unified worker pools shared by all wq to provide
|
||||||
|
flexible level of concurrency on demand without wasting a lot of
|
||||||
|
resource.
|
||||||
|
|
||||||
|
* Automatically regulate worker pool and level of concurrency so that
|
||||||
|
the API users don't need to worry about such details.
|
||||||
|
|
||||||
|
|
||||||
|
3. The Design
|
||||||
|
|
||||||
|
In order to ease the asynchronous execution of functions a new
|
||||||
|
abstraction, the work item, is introduced.
|
||||||
|
|
||||||
|
A work item is a simple struct that holds a pointer to the function
|
||||||
|
that is to be executed asynchronously. Whenever a driver or subsystem
|
||||||
|
wants a function to be executed asynchronously it has to set up a work
|
||||||
|
item pointing to that function and queue that work item on a
|
||||||
|
workqueue.
|
||||||
|
|
||||||
|
Special purpose threads, called worker threads, execute the functions
|
||||||
|
off of the queue, one after the other. If no work is queued, the
|
||||||
|
worker threads become idle. These worker threads are managed in so
|
||||||
|
called thread-pools.
|
||||||
|
|
||||||
|
The cmwq design differentiates between the user-facing workqueues that
|
||||||
|
subsystems and drivers queue work items on and the backend mechanism
|
||||||
|
which manages thread-pool and processes the queued work items.
|
||||||
|
|
||||||
|
The backend is called gcwq. There is one gcwq for each possible CPU
|
||||||
|
and one gcwq to serve work items queued on unbound workqueues.
|
||||||
|
|
||||||
|
Subsystems and drivers can create and queue work items through special
|
||||||
|
workqueue API functions as they see fit. They can influence some
|
||||||
|
aspects of the way the work items are executed by setting flags on the
|
||||||
|
workqueue they are putting the work item on. These flags include
|
||||||
|
things like CPU locality, reentrancy, concurrency limits and more. To
|
||||||
|
get a detailed overview refer to the API description of
|
||||||
|
alloc_workqueue() below.
|
||||||
|
|
||||||
|
When a work item is queued to a workqueue, the target gcwq is
|
||||||
|
determined according to the queue parameters and workqueue attributes
|
||||||
|
and appended on the shared worklist of the gcwq. For example, unless
|
||||||
|
specifically overridden, a work item of a bound workqueue will be
|
||||||
|
queued on the worklist of exactly that gcwq that is associated to the
|
||||||
|
CPU the issuer is running on.
|
||||||
|
|
||||||
|
For any worker pool implementation, managing the concurrency level
|
||||||
|
(how many execution contexts are active) is an important issue. cmwq
|
||||||
|
tries to keep the concurrency at a minimal but sufficient level.
|
||||||
|
Minimal to save resources and sufficient in that the system is used at
|
||||||
|
its full capacity.
|
||||||
|
|
||||||
|
Each gcwq bound to an actual CPU implements concurrency management by
|
||||||
|
hooking into the scheduler. The gcwq is notified whenever an active
|
||||||
|
worker wakes up or sleeps and keeps track of the number of the
|
||||||
|
currently runnable workers. Generally, work items are not expected to
|
||||||
|
hog a CPU and consume many cycles. That means maintaining just enough
|
||||||
|
concurrency to prevent work processing from stalling should be
|
||||||
|
optimal. As long as there are one or more runnable workers on the
|
||||||
|
CPU, the gcwq doesn't start execution of a new work, but, when the
|
||||||
|
last running worker goes to sleep, it immediately schedules a new
|
||||||
|
worker so that the CPU doesn't sit idle while there are pending work
|
||||||
|
items. This allows using a minimal number of workers without losing
|
||||||
|
execution bandwidth.
|
||||||
|
|
||||||
|
Keeping idle workers around doesn't cost other than the memory space
|
||||||
|
for kthreads, so cmwq holds onto idle ones for a while before killing
|
||||||
|
them.
|
||||||
|
|
||||||
|
For an unbound wq, the above concurrency management doesn't apply and
|
||||||
|
the gcwq for the pseudo unbound CPU tries to start executing all work
|
||||||
|
items as soon as possible. The responsibility of regulating
|
||||||
|
concurrency level is on the users. There is also a flag to mark a
|
||||||
|
bound wq to ignore the concurrency management. Please refer to the
|
||||||
|
API section for details.
|
||||||
|
|
||||||
|
Forward progress guarantee relies on that workers can be created when
|
||||||
|
more execution contexts are necessary, which in turn is guaranteed
|
||||||
|
through the use of rescue workers. All work items which might be used
|
||||||
|
on code paths that handle memory reclaim are required to be queued on
|
||||||
|
wq's that have a rescue-worker reserved for execution under memory
|
||||||
|
pressure. Else it is possible that the thread-pool deadlocks waiting
|
||||||
|
for execution contexts to free up.
|
||||||
|
|
||||||
|
|
||||||
|
4. Application Programming Interface (API)
|
||||||
|
|
||||||
|
alloc_workqueue() allocates a wq. The original create_*workqueue()
|
||||||
|
functions are deprecated and scheduled for removal. alloc_workqueue()
|
||||||
|
takes three arguments - @name, @flags and @max_active. @name is the
|
||||||
|
name of the wq and also used as the name of the rescuer thread if
|
||||||
|
there is one.
|
||||||
|
|
||||||
|
A wq no longer manages execution resources but serves as a domain for
|
||||||
|
forward progress guarantee, flush and work item attributes. @flags
|
||||||
|
and @max_active control how work items are assigned execution
|
||||||
|
resources, scheduled and executed.
|
||||||
|
|
||||||
|
@flags:
|
||||||
|
|
||||||
|
WQ_NON_REENTRANT
|
||||||
|
|
||||||
|
By default, a wq guarantees non-reentrance only on the same
|
||||||
|
CPU. A work item may not be executed concurrently on the same
|
||||||
|
CPU by multiple workers but is allowed to be executed
|
||||||
|
concurrently on multiple CPUs. This flag makes sure
|
||||||
|
non-reentrance is enforced across all CPUs. Work items queued
|
||||||
|
to a non-reentrant wq are guaranteed to be executed by at most
|
||||||
|
one worker system-wide at any given time.
|
||||||
|
|
||||||
|
WQ_UNBOUND
|
||||||
|
|
||||||
|
Work items queued to an unbound wq are served by a special
|
||||||
|
gcwq which hosts workers which are not bound to any specific
|
||||||
|
CPU. This makes the wq behave as a simple execution context
|
||||||
|
provider without concurrency management. The unbound gcwq
|
||||||
|
tries to start execution of work items as soon as possible.
|
||||||
|
Unbound wq sacrifices locality but is useful for the following
|
||||||
|
cases.
|
||||||
|
|
||||||
|
* Wide fluctuation in the concurrency level requirement is
|
||||||
|
expected and using bound wq may end up creating large number
|
||||||
|
of mostly unused workers across different CPUs as the issuer
|
||||||
|
hops through different CPUs.
|
||||||
|
|
||||||
|
* Long running CPU intensive workloads which can be better
|
||||||
|
managed by the system scheduler.
|
||||||
|
|
||||||
|
WQ_FREEZEABLE
|
||||||
|
|
||||||
|
A freezeable wq participates in the freeze phase of the system
|
||||||
|
suspend operations. Work items on the wq are drained and no
|
||||||
|
new work item starts execution until thawed.
|
||||||
|
|
||||||
|
WQ_RESCUER
|
||||||
|
|
||||||
|
All wq which might be used in the memory reclaim paths _MUST_
|
||||||
|
have this flag set. This reserves one worker exclusively for
|
||||||
|
the execution of this wq under memory pressure.
|
||||||
|
|
||||||
|
WQ_HIGHPRI
|
||||||
|
|
||||||
|
Work items of a highpri wq are queued at the head of the
|
||||||
|
worklist of the target gcwq and start execution regardless of
|
||||||
|
the current concurrency level. In other words, highpri work
|
||||||
|
items will always start execution as soon as execution
|
||||||
|
resource is available.
|
||||||
|
|
||||||
|
Ordering among highpri work items is preserved - a highpri
|
||||||
|
work item queued after another highpri work item will start
|
||||||
|
execution after the earlier highpri work item starts.
|
||||||
|
|
||||||
|
Although highpri work items are not held back by other
|
||||||
|
runnable work items, they still contribute to the concurrency
|
||||||
|
level. Highpri work items in runnable state will prevent
|
||||||
|
non-highpri work items from starting execution.
|
||||||
|
|
||||||
|
This flag is meaningless for unbound wq.
|
||||||
|
|
||||||
|
WQ_CPU_INTENSIVE
|
||||||
|
|
||||||
|
Work items of a CPU intensive wq do not contribute to the
|
||||||
|
concurrency level. In other words, runnable CPU intensive
|
||||||
|
work items will not prevent other work items from starting
|
||||||
|
execution. This is useful for bound work items which are
|
||||||
|
expected to hog CPU cycles so that their execution is
|
||||||
|
regulated by the system scheduler.
|
||||||
|
|
||||||
|
Although CPU intensive work items don't contribute to the
|
||||||
|
concurrency level, start of their executions is still
|
||||||
|
regulated by the concurrency management and runnable
|
||||||
|
non-CPU-intensive work items can delay execution of CPU
|
||||||
|
intensive work items.
|
||||||
|
|
||||||
|
This flag is meaningless for unbound wq.
|
||||||
|
|
||||||
|
WQ_HIGHPRI | WQ_CPU_INTENSIVE
|
||||||
|
|
||||||
|
This combination makes the wq avoid interaction with
|
||||||
|
concurrency management completely and behave as a simple
|
||||||
|
per-CPU execution context provider. Work items queued on a
|
||||||
|
highpri CPU-intensive wq start execution as soon as resources
|
||||||
|
are available and don't affect execution of other work items.
|
||||||
|
|
||||||
|
@max_active:
|
||||||
|
|
||||||
|
@max_active determines the maximum number of execution contexts per
|
||||||
|
CPU which can be assigned to the work items of a wq. For example,
|
||||||
|
with @max_active of 16, at most 16 work items of the wq can be
|
||||||
|
executing at the same time per CPU.
|
||||||
|
|
||||||
|
Currently, for a bound wq, the maximum limit for @max_active is 512
|
||||||
|
and the default value used when 0 is specified is 256. For an unbound
|
||||||
|
wq, the limit is higher of 512 and 4 * num_possible_cpus(). These
|
||||||
|
values are chosen sufficiently high such that they are not the
|
||||||
|
limiting factor while providing protection in runaway cases.
|
||||||
|
|
||||||
|
The number of active work items of a wq is usually regulated by the
|
||||||
|
users of the wq, more specifically, by how many work items the users
|
||||||
|
may queue at the same time. Unless there is a specific need for
|
||||||
|
throttling the number of active work items, specifying '0' is
|
||||||
|
recommended.
|
||||||
|
|
||||||
|
Some users depend on the strict execution ordering of ST wq. The
|
||||||
|
combination of @max_active of 1 and WQ_UNBOUND is used to achieve this
|
||||||
|
behavior. Work items on such wq are always queued to the unbound gcwq
|
||||||
|
and only one work item can be active at any given time thus achieving
|
||||||
|
the same ordering property as ST wq.
|
||||||
|
|
||||||
|
|
||||||
|
5. Example Execution Scenarios
|
||||||
|
|
||||||
|
The following example execution scenarios try to illustrate how cmwq
|
||||||
|
behave under different configurations.
|
||||||
|
|
||||||
|
Work items w0, w1, w2 are queued to a bound wq q0 on the same CPU.
|
||||||
|
w0 burns CPU for 5ms then sleeps for 10ms then burns CPU for 5ms
|
||||||
|
again before finishing. w1 and w2 burn CPU for 5ms then sleep for
|
||||||
|
10ms.
|
||||||
|
|
||||||
|
Ignoring all other tasks, works and processing overhead, and assuming
|
||||||
|
simple FIFO scheduling, the following is one highly simplified version
|
||||||
|
of possible sequences of events with the original wq.
|
||||||
|
|
||||||
|
TIME IN MSECS EVENT
|
||||||
|
0 w0 starts and burns CPU
|
||||||
|
5 w0 sleeps
|
||||||
|
15 w0 wakes up and burns CPU
|
||||||
|
20 w0 finishes
|
||||||
|
20 w1 starts and burns CPU
|
||||||
|
25 w1 sleeps
|
||||||
|
35 w1 wakes up and finishes
|
||||||
|
35 w2 starts and burns CPU
|
||||||
|
40 w2 sleeps
|
||||||
|
50 w2 wakes up and finishes
|
||||||
|
|
||||||
|
And with cmwq with @max_active >= 3,
|
||||||
|
|
||||||
|
TIME IN MSECS EVENT
|
||||||
|
0 w0 starts and burns CPU
|
||||||
|
5 w0 sleeps
|
||||||
|
5 w1 starts and burns CPU
|
||||||
|
10 w1 sleeps
|
||||||
|
10 w2 starts and burns CPU
|
||||||
|
15 w2 sleeps
|
||||||
|
15 w0 wakes up and burns CPU
|
||||||
|
20 w0 finishes
|
||||||
|
20 w1 wakes up and finishes
|
||||||
|
25 w2 wakes up and finishes
|
||||||
|
|
||||||
|
If @max_active == 2,
|
||||||
|
|
||||||
|
TIME IN MSECS EVENT
|
||||||
|
0 w0 starts and burns CPU
|
||||||
|
5 w0 sleeps
|
||||||
|
5 w1 starts and burns CPU
|
||||||
|
10 w1 sleeps
|
||||||
|
15 w0 wakes up and burns CPU
|
||||||
|
20 w0 finishes
|
||||||
|
20 w1 wakes up and finishes
|
||||||
|
20 w2 starts and burns CPU
|
||||||
|
25 w2 sleeps
|
||||||
|
35 w2 wakes up and finishes
|
||||||
|
|
||||||
|
Now, let's assume w1 and w2 are queued to a different wq q1 which has
|
||||||
|
WQ_HIGHPRI set,
|
||||||
|
|
||||||
|
TIME IN MSECS EVENT
|
||||||
|
0 w1 and w2 start and burn CPU
|
||||||
|
5 w1 sleeps
|
||||||
|
10 w2 sleeps
|
||||||
|
10 w0 starts and burns CPU
|
||||||
|
15 w0 sleeps
|
||||||
|
15 w1 wakes up and finishes
|
||||||
|
20 w2 wakes up and finishes
|
||||||
|
25 w0 wakes up and burns CPU
|
||||||
|
30 w0 finishes
|
||||||
|
|
||||||
|
If q1 has WQ_CPU_INTENSIVE set,
|
||||||
|
|
||||||
|
TIME IN MSECS EVENT
|
||||||
|
0 w0 starts and burns CPU
|
||||||
|
5 w0 sleeps
|
||||||
|
5 w1 and w2 start and burn CPU
|
||||||
|
10 w1 sleeps
|
||||||
|
15 w2 sleeps
|
||||||
|
15 w0 wakes up and burns CPU
|
||||||
|
20 w0 finishes
|
||||||
|
20 w1 wakes up and finishes
|
||||||
|
25 w2 wakes up and finishes
|
||||||
|
|
||||||
|
|
||||||
|
6. Guidelines
|
||||||
|
|
||||||
|
* Do not forget to use WQ_RESCUER if a wq may process work items which
|
||||||
|
are used during memory reclaim. Each wq with WQ_RESCUER set has one
|
||||||
|
rescuer thread reserved for it. If there is dependency among
|
||||||
|
multiple work items used during memory reclaim, they should be
|
||||||
|
queued to separate wq each with WQ_RESCUER.
|
||||||
|
|
||||||
|
* Unless strict ordering is required, there is no need to use ST wq.
|
||||||
|
|
||||||
|
* Unless there is a specific need, using 0 for @max_active is
|
||||||
|
recommended. In most use cases, concurrency level usually stays
|
||||||
|
well under the default limit.
|
||||||
|
|
||||||
|
* A wq serves as a domain for forward progress guarantee (WQ_RESCUER),
|
||||||
|
flush and work item attributes. Work items which are not involved
|
||||||
|
in memory reclaim and don't need to be flushed as a part of a group
|
||||||
|
of work items, and don't require any special attribute, can use one
|
||||||
|
of the system wq. There is no difference in execution
|
||||||
|
characteristics between using a dedicated wq and a system wq.
|
||||||
|
|
||||||
|
* Unless work items are expected to consume a huge amount of CPU
|
||||||
|
cycles, using a bound wq is usually beneficial due to the increased
|
||||||
|
level of locality in wq operations and work item execution.
|
||||||
+44
-15
@@ -962,6 +962,13 @@ W: http://www.fluff.org/ben/linux/
|
|||||||
S: Maintained
|
S: Maintained
|
||||||
F: arch/arm/mach-s3c6410/
|
F: arch/arm/mach-s3c6410/
|
||||||
|
|
||||||
|
ARM/S5P ARM ARCHITECTURES
|
||||||
|
M: Kukjin Kim <kgene.kim@samsung.com>
|
||||||
|
L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
|
||||||
|
L: linux-samsung-soc@vger.kernel.org (moderated for non-subscribers)
|
||||||
|
S: Maintained
|
||||||
|
F: arch/arm/mach-s5p*/
|
||||||
|
|
||||||
ARM/SHMOBILE ARM ARCHITECTURE
|
ARM/SHMOBILE ARM ARCHITECTURE
|
||||||
M: Paul Mundt <lethal@linux-sh.org>
|
M: Paul Mundt <lethal@linux-sh.org>
|
||||||
M: Magnus Damm <magnus.damm@gmail.com>
|
M: Magnus Damm <magnus.damm@gmail.com>
|
||||||
@@ -1135,7 +1142,7 @@ ATLX ETHERNET DRIVERS
|
|||||||
M: Jay Cliburn <jcliburn@gmail.com>
|
M: Jay Cliburn <jcliburn@gmail.com>
|
||||||
M: Chris Snook <chris.snook@gmail.com>
|
M: Chris Snook <chris.snook@gmail.com>
|
||||||
M: Jie Yang <jie.yang@atheros.com>
|
M: Jie Yang <jie.yang@atheros.com>
|
||||||
L: atl1-devel@lists.sourceforge.net
|
L: netdev@vger.kernel.org
|
||||||
W: http://sourceforge.net/projects/atl1
|
W: http://sourceforge.net/projects/atl1
|
||||||
W: http://atl1.sourceforge.net
|
W: http://atl1.sourceforge.net
|
||||||
S: Maintained
|
S: Maintained
|
||||||
@@ -1220,7 +1227,7 @@ F: drivers/auxdisplay/
|
|||||||
F: include/linux/cfag12864b.h
|
F: include/linux/cfag12864b.h
|
||||||
|
|
||||||
AVR32 ARCHITECTURE
|
AVR32 ARCHITECTURE
|
||||||
M: Haavard Skinnemoen <hskinnemoen@atmel.com>
|
M: Hans-Christian Egtvedt <hans-christian.egtvedt@atmel.com>
|
||||||
W: http://www.atmel.com/products/AVR32/
|
W: http://www.atmel.com/products/AVR32/
|
||||||
W: http://avr32linux.org/
|
W: http://avr32linux.org/
|
||||||
W: http://avrfreaks.net/
|
W: http://avrfreaks.net/
|
||||||
@@ -1228,7 +1235,7 @@ S: Supported
|
|||||||
F: arch/avr32/
|
F: arch/avr32/
|
||||||
|
|
||||||
AVR32/AT32AP MACHINE SUPPORT
|
AVR32/AT32AP MACHINE SUPPORT
|
||||||
M: Haavard Skinnemoen <hskinnemoen@atmel.com>
|
M: Hans-Christian Egtvedt <hans-christian.egtvedt@atmel.com>
|
||||||
S: Supported
|
S: Supported
|
||||||
F: arch/avr32/mach-at32ap/
|
F: arch/avr32/mach-at32ap/
|
||||||
|
|
||||||
@@ -1445,6 +1452,16 @@ S: Maintained
|
|||||||
F: Documentation/video4linux/cafe_ccic
|
F: Documentation/video4linux/cafe_ccic
|
||||||
F: drivers/media/video/cafe_ccic*
|
F: drivers/media/video/cafe_ccic*
|
||||||
|
|
||||||
|
CAIF NETWORK LAYER
|
||||||
|
M: Sjur Braendeland <sjur.brandeland@stericsson.com>
|
||||||
|
L: netdev@vger.kernel.org
|
||||||
|
S: Supported
|
||||||
|
F: Documentation/networking/caif/
|
||||||
|
F: drivers/net/caif/
|
||||||
|
F: include/linux/caif/
|
||||||
|
F: include/net/caif/
|
||||||
|
F: net/caif/
|
||||||
|
|
||||||
CALGARY x86-64 IOMMU
|
CALGARY x86-64 IOMMU
|
||||||
M: Muli Ben-Yehuda <muli@il.ibm.com>
|
M: Muli Ben-Yehuda <muli@il.ibm.com>
|
||||||
M: "Jon D. Mason" <jdmason@kudzu.us>
|
M: "Jon D. Mason" <jdmason@kudzu.us>
|
||||||
@@ -2189,6 +2206,12 @@ W: http://acpi4asus.sf.net
|
|||||||
S: Maintained
|
S: Maintained
|
||||||
F: drivers/platform/x86/eeepc-laptop.c
|
F: drivers/platform/x86/eeepc-laptop.c
|
||||||
|
|
||||||
|
EFIFB FRAMEBUFFER DRIVER
|
||||||
|
L: linux-fbdev@vger.kernel.org
|
||||||
|
M: Peter Jones <pjones@redhat.com>
|
||||||
|
S: Maintained
|
||||||
|
F: drivers/video/efifb.c
|
||||||
|
|
||||||
EFS FILESYSTEM
|
EFS FILESYSTEM
|
||||||
W: http://aeschi.ch.eu.org/efs/
|
W: http://aeschi.ch.eu.org/efs/
|
||||||
S: Orphan
|
S: Orphan
|
||||||
@@ -2647,9 +2670,14 @@ S: Maintained
|
|||||||
F: drivers/media/video/gspca/
|
F: drivers/media/video/gspca/
|
||||||
|
|
||||||
HARDWARE MONITORING
|
HARDWARE MONITORING
|
||||||
|
M: Jean Delvare <khali@linux-fr.org>
|
||||||
|
M: Guenter Roeck <guenter.roeck@ericsson.com>
|
||||||
L: lm-sensors@lm-sensors.org
|
L: lm-sensors@lm-sensors.org
|
||||||
W: http://www.lm-sensors.org/
|
W: http://www.lm-sensors.org/
|
||||||
S: Orphan
|
T: quilt kernel.org/pub/linux/kernel/people/jdelvare/linux-2.6/jdelvare-hwmon/
|
||||||
|
T: quilt kernel.org/pub/linux/kernel/people/groeck/linux-staging/
|
||||||
|
T: git git://git.kernel.org/pub/scm/linux/kernel/git/groeck/linux-staging.git
|
||||||
|
S: Maintained
|
||||||
F: Documentation/hwmon/
|
F: Documentation/hwmon/
|
||||||
F: drivers/hwmon/
|
F: drivers/hwmon/
|
||||||
F: include/linux/hwmon*.h
|
F: include/linux/hwmon*.h
|
||||||
@@ -3760,9 +3788,8 @@ W: http://www.syskonnect.com
|
|||||||
S: Supported
|
S: Supported
|
||||||
|
|
||||||
MATROX FRAMEBUFFER DRIVER
|
MATROX FRAMEBUFFER DRIVER
|
||||||
M: Petr Vandrovec <vandrove@vc.cvut.cz>
|
|
||||||
L: linux-fbdev@vger.kernel.org
|
L: linux-fbdev@vger.kernel.org
|
||||||
S: Maintained
|
S: Orphan
|
||||||
F: drivers/video/matrox/matroxfb_*
|
F: drivers/video/matrox/matroxfb_*
|
||||||
F: include/linux/matroxfb.h
|
F: include/linux/matroxfb.h
|
||||||
|
|
||||||
@@ -3886,10 +3913,8 @@ F: Documentation/serial/moxa-smartio
|
|||||||
F: drivers/char/mxser.*
|
F: drivers/char/mxser.*
|
||||||
|
|
||||||
MSI LAPTOP SUPPORT
|
MSI LAPTOP SUPPORT
|
||||||
M: Lennart Poettering <mzxreary@0pointer.de>
|
M: Lee, Chun-Yi <jlee@novell.com>
|
||||||
L: platform-driver-x86@vger.kernel.org
|
L: platform-driver-x86@vger.kernel.org
|
||||||
W: https://tango.0pointer.de/mailman/listinfo/s270-linux
|
|
||||||
W: http://0pointer.de/lennart/tchibo.html
|
|
||||||
S: Maintained
|
S: Maintained
|
||||||
F: drivers/platform/x86/msi-laptop.c
|
F: drivers/platform/x86/msi-laptop.c
|
||||||
|
|
||||||
@@ -3906,8 +3931,10 @@ S: Supported
|
|||||||
F: drivers/mfd/
|
F: drivers/mfd/
|
||||||
|
|
||||||
MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM
|
MULTIMEDIA CARD (MMC), SECURE DIGITAL (SD) AND SDIO SUBSYSTEM
|
||||||
S: Orphan
|
M: Chris Ball <cjb@laptop.org>
|
||||||
L: linux-mmc@vger.kernel.org
|
L: linux-mmc@vger.kernel.org
|
||||||
|
T: git git://git.kernel.org/pub/scm/linux/kernel/git/cjb/mmc.git
|
||||||
|
S: Maintained
|
||||||
F: drivers/mmc/
|
F: drivers/mmc/
|
||||||
F: include/linux/mmc/
|
F: include/linux/mmc/
|
||||||
|
|
||||||
@@ -3929,7 +3956,7 @@ F: drivers/char/isicom.c
|
|||||||
F: include/linux/isicom.h
|
F: include/linux/isicom.h
|
||||||
|
|
||||||
MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER
|
MUSB MULTIPOINT HIGH SPEED DUAL-ROLE CONTROLLER
|
||||||
M: Felipe Balbi <felipe.balbi@nokia.com>
|
M: Felipe Balbi <balbi@ti.com>
|
||||||
L: linux-usb@vger.kernel.org
|
L: linux-usb@vger.kernel.org
|
||||||
T: git git://gitorious.org/usb/usb.git
|
T: git git://gitorious.org/usb/usb.git
|
||||||
S: Maintained
|
S: Maintained
|
||||||
@@ -3949,8 +3976,8 @@ S: Maintained
|
|||||||
F: drivers/net/natsemi.c
|
F: drivers/net/natsemi.c
|
||||||
|
|
||||||
NCP FILESYSTEM
|
NCP FILESYSTEM
|
||||||
M: Petr Vandrovec <vandrove@vc.cvut.cz>
|
M: Petr Vandrovec <petr@vandrovec.name>
|
||||||
S: Maintained
|
S: Odd Fixes
|
||||||
F: fs/ncpfs/
|
F: fs/ncpfs/
|
||||||
|
|
||||||
NCR DUAL 700 SCSI DRIVER (MICROCHANNEL)
|
NCR DUAL 700 SCSI DRIVER (MICROCHANNEL)
|
||||||
@@ -4227,7 +4254,7 @@ S: Maintained
|
|||||||
F: drivers/char/hw_random/omap-rng.c
|
F: drivers/char/hw_random/omap-rng.c
|
||||||
|
|
||||||
OMAP USB SUPPORT
|
OMAP USB SUPPORT
|
||||||
M: Felipe Balbi <felipe.balbi@nokia.com>
|
M: Felipe Balbi <balbi@ti.com>
|
||||||
M: David Brownell <dbrownell@users.sourceforge.net>
|
M: David Brownell <dbrownell@users.sourceforge.net>
|
||||||
L: linux-usb@vger.kernel.org
|
L: linux-usb@vger.kernel.org
|
||||||
L: linux-omap@vger.kernel.org
|
L: linux-omap@vger.kernel.org
|
||||||
@@ -5078,8 +5105,10 @@ S: Maintained
|
|||||||
F: drivers/mmc/host/sdricoh_cs.c
|
F: drivers/mmc/host/sdricoh_cs.c
|
||||||
|
|
||||||
SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER
|
SECURE DIGITAL HOST CONTROLLER INTERFACE (SDHCI) DRIVER
|
||||||
S: Orphan
|
M: Chris Ball <cjb@laptop.org>
|
||||||
L: linux-mmc@vger.kernel.org
|
L: linux-mmc@vger.kernel.org
|
||||||
|
T: git git://git.kernel.org/pub/scm/linux/kernel/git/cjb/mmc.git
|
||||||
|
S: Maintained
|
||||||
F: drivers/mmc/host/sdhci.*
|
F: drivers/mmc/host/sdhci.*
|
||||||
|
|
||||||
SECURE DIGITAL HOST CONTROLLER INTERFACE, OPEN FIRMWARE BINDINGS (SDHCI-OF)
|
SECURE DIGITAL HOST CONTROLLER INTERFACE, OPEN FIRMWARE BINDINGS (SDHCI-OF)
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
VERSION = 2
|
VERSION = 2
|
||||||
PATCHLEVEL = 6
|
PATCHLEVEL = 6
|
||||||
SUBLEVEL = 36
|
SUBLEVEL = 36
|
||||||
EXTRAVERSION = -rc3
|
EXTRAVERSION = -rc7
|
||||||
NAME = Sheep on Meth
|
NAME = Sheep on Meth
|
||||||
|
|
||||||
# *DOCUMENTATION*
|
# *DOCUMENTATION*
|
||||||
|
|||||||
+2
-2
@@ -32,8 +32,9 @@ config HAVE_OPROFILE
|
|||||||
|
|
||||||
config KPROBES
|
config KPROBES
|
||||||
bool "Kprobes"
|
bool "Kprobes"
|
||||||
depends on KALLSYMS && MODULES
|
depends on MODULES
|
||||||
depends on HAVE_KPROBES
|
depends on HAVE_KPROBES
|
||||||
|
select KALLSYMS
|
||||||
help
|
help
|
||||||
Kprobes allows you to trap at almost any kernel address and
|
Kprobes allows you to trap at almost any kernel address and
|
||||||
execute a callback function. register_kprobe() establishes
|
execute a callback function. register_kprobe() establishes
|
||||||
@@ -45,7 +46,6 @@ config OPTPROBES
|
|||||||
def_bool y
|
def_bool y
|
||||||
depends on KPROBES && HAVE_OPTPROBES
|
depends on KPROBES && HAVE_OPTPROBES
|
||||||
depends on !PREEMPT
|
depends on !PREEMPT
|
||||||
select KALLSYMS_ALL
|
|
||||||
|
|
||||||
config HAVE_EFFICIENT_UNALIGNED_ACCESS
|
config HAVE_EFFICIENT_UNALIGNED_ACCESS
|
||||||
bool
|
bool
|
||||||
|
|||||||
@@ -43,6 +43,8 @@ extern void smp_imb(void);
|
|||||||
/* ??? Ought to use this in arch/alpha/kernel/signal.c too. */
|
/* ??? Ought to use this in arch/alpha/kernel/signal.c too. */
|
||||||
|
|
||||||
#ifndef CONFIG_SMP
|
#ifndef CONFIG_SMP
|
||||||
|
#include <linux/sched.h>
|
||||||
|
|
||||||
extern void __load_new_mm_context(struct mm_struct *);
|
extern void __load_new_mm_context(struct mm_struct *);
|
||||||
static inline void
|
static inline void
|
||||||
flush_icache_user_range(struct vm_area_struct *vma, struct page *page,
|
flush_icache_user_range(struct vm_area_struct *vma, struct page *page,
|
||||||
|
|||||||
@@ -449,10 +449,13 @@
|
|||||||
#define __NR_pwritev 491
|
#define __NR_pwritev 491
|
||||||
#define __NR_rt_tgsigqueueinfo 492
|
#define __NR_rt_tgsigqueueinfo 492
|
||||||
#define __NR_perf_event_open 493
|
#define __NR_perf_event_open 493
|
||||||
|
#define __NR_fanotify_init 494
|
||||||
|
#define __NR_fanotify_mark 495
|
||||||
|
#define __NR_prlimit64 496
|
||||||
|
|
||||||
#ifdef __KERNEL__
|
#ifdef __KERNEL__
|
||||||
|
|
||||||
#define NR_SYSCALLS 494
|
#define NR_SYSCALLS 497
|
||||||
|
|
||||||
#define __ARCH_WANT_IPC_PARSE_VERSION
|
#define __ARCH_WANT_IPC_PARSE_VERSION
|
||||||
#define __ARCH_WANT_OLD_READDIR
|
#define __ARCH_WANT_OLD_READDIR
|
||||||
@@ -463,6 +466,7 @@
|
|||||||
#define __ARCH_WANT_SYS_OLD_GETRLIMIT
|
#define __ARCH_WANT_SYS_OLD_GETRLIMIT
|
||||||
#define __ARCH_WANT_SYS_OLDUMOUNT
|
#define __ARCH_WANT_SYS_OLDUMOUNT
|
||||||
#define __ARCH_WANT_SYS_SIGPENDING
|
#define __ARCH_WANT_SYS_SIGPENDING
|
||||||
|
#define __ARCH_WANT_SYS_RT_SIGSUSPEND
|
||||||
|
|
||||||
/* "Conditional" syscalls. What we want is
|
/* "Conditional" syscalls. What we want is
|
||||||
|
|
||||||
|
|||||||
+29
-52
@@ -73,8 +73,6 @@
|
|||||||
ldq $20, HAE_REG($19); \
|
ldq $20, HAE_REG($19); \
|
||||||
stq $21, HAE_CACHE($19); \
|
stq $21, HAE_CACHE($19); \
|
||||||
stq $21, 0($20); \
|
stq $21, 0($20); \
|
||||||
ldq $0, 0($sp); \
|
|
||||||
ldq $1, 8($sp); \
|
|
||||||
99:; \
|
99:; \
|
||||||
ldq $19, 72($sp); \
|
ldq $19, 72($sp); \
|
||||||
ldq $20, 80($sp); \
|
ldq $20, 80($sp); \
|
||||||
@@ -316,19 +314,24 @@ ret_from_sys_call:
|
|||||||
cmovne $26, 0, $19 /* $19 = 0 => non-restartable */
|
cmovne $26, 0, $19 /* $19 = 0 => non-restartable */
|
||||||
ldq $0, SP_OFF($sp)
|
ldq $0, SP_OFF($sp)
|
||||||
and $0, 8, $0
|
and $0, 8, $0
|
||||||
beq $0, restore_all
|
beq $0, ret_to_kernel
|
||||||
ret_from_reschedule:
|
ret_to_user:
|
||||||
/* Make sure need_resched and sigpending don't change between
|
/* Make sure need_resched and sigpending don't change between
|
||||||
sampling and the rti. */
|
sampling and the rti. */
|
||||||
lda $16, 7
|
lda $16, 7
|
||||||
call_pal PAL_swpipl
|
call_pal PAL_swpipl
|
||||||
ldl $5, TI_FLAGS($8)
|
ldl $5, TI_FLAGS($8)
|
||||||
and $5, _TIF_WORK_MASK, $2
|
and $5, _TIF_WORK_MASK, $2
|
||||||
bne $5, work_pending
|
bne $2, work_pending
|
||||||
restore_all:
|
restore_all:
|
||||||
RESTORE_ALL
|
RESTORE_ALL
|
||||||
call_pal PAL_rti
|
call_pal PAL_rti
|
||||||
|
|
||||||
|
ret_to_kernel:
|
||||||
|
lda $16, 7
|
||||||
|
call_pal PAL_swpipl
|
||||||
|
br restore_all
|
||||||
|
|
||||||
.align 3
|
.align 3
|
||||||
$syscall_error:
|
$syscall_error:
|
||||||
/*
|
/*
|
||||||
@@ -363,7 +366,7 @@ $ret_success:
|
|||||||
* $8: current.
|
* $8: current.
|
||||||
* $19: The old syscall number, or zero if this is not a return
|
* $19: The old syscall number, or zero if this is not a return
|
||||||
* from a syscall that errored and is possibly restartable.
|
* from a syscall that errored and is possibly restartable.
|
||||||
* $20: Error indication.
|
* $20: The old a3 value
|
||||||
*/
|
*/
|
||||||
|
|
||||||
.align 4
|
.align 4
|
||||||
@@ -392,12 +395,18 @@ $work_resched:
|
|||||||
|
|
||||||
$work_notifysig:
|
$work_notifysig:
|
||||||
mov $sp, $16
|
mov $sp, $16
|
||||||
br $1, do_switch_stack
|
bsr $1, do_switch_stack
|
||||||
mov $sp, $17
|
mov $sp, $17
|
||||||
mov $5, $18
|
mov $5, $18
|
||||||
|
mov $19, $9 /* save old syscall number */
|
||||||
|
mov $20, $10 /* save old a3 */
|
||||||
|
and $5, _TIF_SIGPENDING, $2
|
||||||
|
cmovne $2, 0, $9 /* we don't want double syscall restarts */
|
||||||
jsr $26, do_notify_resume
|
jsr $26, do_notify_resume
|
||||||
|
mov $9, $19
|
||||||
|
mov $10, $20
|
||||||
bsr $1, undo_switch_stack
|
bsr $1, undo_switch_stack
|
||||||
br restore_all
|
br ret_to_user
|
||||||
.end work_pending
|
.end work_pending
|
||||||
|
|
||||||
/*
|
/*
|
||||||
@@ -430,6 +439,7 @@ strace:
|
|||||||
beq $1, 1f
|
beq $1, 1f
|
||||||
ldq $27, 0($2)
|
ldq $27, 0($2)
|
||||||
1: jsr $26, ($27), sys_gettimeofday
|
1: jsr $26, ($27), sys_gettimeofday
|
||||||
|
ret_from_straced:
|
||||||
ldgp $gp, 0($26)
|
ldgp $gp, 0($26)
|
||||||
|
|
||||||
/* check return.. */
|
/* check return.. */
|
||||||
@@ -650,7 +660,7 @@ kernel_thread:
|
|||||||
/* We don't actually care for a3 success widgetry in the kernel.
|
/* We don't actually care for a3 success widgetry in the kernel.
|
||||||
Not for positive errno values. */
|
Not for positive errno values. */
|
||||||
stq $0, 0($sp) /* $0 */
|
stq $0, 0($sp) /* $0 */
|
||||||
br restore_all
|
br ret_to_kernel
|
||||||
.end kernel_thread
|
.end kernel_thread
|
||||||
|
|
||||||
/*
|
/*
|
||||||
@@ -757,11 +767,15 @@ sys_vfork:
|
|||||||
.ent sys_sigreturn
|
.ent sys_sigreturn
|
||||||
sys_sigreturn:
|
sys_sigreturn:
|
||||||
.prologue 0
|
.prologue 0
|
||||||
|
lda $9, ret_from_straced
|
||||||
|
cmpult $26, $9, $9
|
||||||
mov $sp, $17
|
mov $sp, $17
|
||||||
lda $18, -SWITCH_STACK_SIZE($sp)
|
lda $18, -SWITCH_STACK_SIZE($sp)
|
||||||
lda $sp, -SWITCH_STACK_SIZE($sp)
|
lda $sp, -SWITCH_STACK_SIZE($sp)
|
||||||
jsr $26, do_sigreturn
|
jsr $26, do_sigreturn
|
||||||
br $1, undo_switch_stack
|
bne $9, 1f
|
||||||
|
jsr $26, syscall_trace
|
||||||
|
1: br $1, undo_switch_stack
|
||||||
br ret_from_sys_call
|
br ret_from_sys_call
|
||||||
.end sys_sigreturn
|
.end sys_sigreturn
|
||||||
|
|
||||||
@@ -770,46 +784,18 @@ sys_sigreturn:
|
|||||||
.ent sys_rt_sigreturn
|
.ent sys_rt_sigreturn
|
||||||
sys_rt_sigreturn:
|
sys_rt_sigreturn:
|
||||||
.prologue 0
|
.prologue 0
|
||||||
|
lda $9, ret_from_straced
|
||||||
|
cmpult $26, $9, $9
|
||||||
mov $sp, $17
|
mov $sp, $17
|
||||||
lda $18, -SWITCH_STACK_SIZE($sp)
|
lda $18, -SWITCH_STACK_SIZE($sp)
|
||||||
lda $sp, -SWITCH_STACK_SIZE($sp)
|
lda $sp, -SWITCH_STACK_SIZE($sp)
|
||||||
jsr $26, do_rt_sigreturn
|
jsr $26, do_rt_sigreturn
|
||||||
br $1, undo_switch_stack
|
bne $9, 1f
|
||||||
|
jsr $26, syscall_trace
|
||||||
|
1: br $1, undo_switch_stack
|
||||||
br ret_from_sys_call
|
br ret_from_sys_call
|
||||||
.end sys_rt_sigreturn
|
.end sys_rt_sigreturn
|
||||||
|
|
||||||
.align 4
|
|
||||||
.globl sys_sigsuspend
|
|
||||||
.ent sys_sigsuspend
|
|
||||||
sys_sigsuspend:
|
|
||||||
.prologue 0
|
|
||||||
mov $sp, $17
|
|
||||||
br $1, do_switch_stack
|
|
||||||
mov $sp, $18
|
|
||||||
subq $sp, 16, $sp
|
|
||||||
stq $26, 0($sp)
|
|
||||||
jsr $26, do_sigsuspend
|
|
||||||
ldq $26, 0($sp)
|
|
||||||
lda $sp, SWITCH_STACK_SIZE+16($sp)
|
|
||||||
ret
|
|
||||||
.end sys_sigsuspend
|
|
||||||
|
|
||||||
.align 4
|
|
||||||
.globl sys_rt_sigsuspend
|
|
||||||
.ent sys_rt_sigsuspend
|
|
||||||
sys_rt_sigsuspend:
|
|
||||||
.prologue 0
|
|
||||||
mov $sp, $18
|
|
||||||
br $1, do_switch_stack
|
|
||||||
mov $sp, $19
|
|
||||||
subq $sp, 16, $sp
|
|
||||||
stq $26, 0($sp)
|
|
||||||
jsr $26, do_rt_sigsuspend
|
|
||||||
ldq $26, 0($sp)
|
|
||||||
lda $sp, SWITCH_STACK_SIZE+16($sp)
|
|
||||||
ret
|
|
||||||
.end sys_rt_sigsuspend
|
|
||||||
|
|
||||||
.align 4
|
.align 4
|
||||||
.globl sys_sethae
|
.globl sys_sethae
|
||||||
.ent sys_sethae
|
.ent sys_sethae
|
||||||
@@ -928,15 +914,6 @@ sys_execve:
|
|||||||
jmp $31, do_sys_execve
|
jmp $31, do_sys_execve
|
||||||
.end sys_execve
|
.end sys_execve
|
||||||
|
|
||||||
.align 4
|
|
||||||
.globl osf_sigprocmask
|
|
||||||
.ent osf_sigprocmask
|
|
||||||
osf_sigprocmask:
|
|
||||||
.prologue 0
|
|
||||||
mov $sp, $18
|
|
||||||
jmp $31, sys_osf_sigprocmask
|
|
||||||
.end osf_sigprocmask
|
|
||||||
|
|
||||||
.align 4
|
.align 4
|
||||||
.globl alpha_ni_syscall
|
.globl alpha_ni_syscall
|
||||||
.ent alpha_ni_syscall
|
.ent alpha_ni_syscall
|
||||||
|
|||||||
@@ -90,11 +90,13 @@ static int
|
|||||||
ev6_parse_cbox(u64 c_addr, u64 c1_syn, u64 c2_syn,
|
ev6_parse_cbox(u64 c_addr, u64 c1_syn, u64 c2_syn,
|
||||||
u64 c_stat, u64 c_sts, int print)
|
u64 c_stat, u64 c_sts, int print)
|
||||||
{
|
{
|
||||||
char *sourcename[] = { "UNKNOWN", "UNKNOWN", "UNKNOWN",
|
static const char * const sourcename[] = {
|
||||||
"MEMORY", "BCACHE", "DCACHE",
|
"UNKNOWN", "UNKNOWN", "UNKNOWN",
|
||||||
"BCACHE PROBE", "BCACHE PROBE" };
|
"MEMORY", "BCACHE", "DCACHE",
|
||||||
char *streamname[] = { "D", "I" };
|
"BCACHE PROBE", "BCACHE PROBE"
|
||||||
char *bitsname[] = { "SINGLE", "DOUBLE" };
|
};
|
||||||
|
static const char * const streamname[] = { "D", "I" };
|
||||||
|
static const char * const bitsname[] = { "SINGLE", "DOUBLE" };
|
||||||
int status = MCHK_DISPOSITION_REPORT;
|
int status = MCHK_DISPOSITION_REPORT;
|
||||||
int source = -1, stream = -1, bits = -1;
|
int source = -1, stream = -1, bits = -1;
|
||||||
|
|
||||||
|
|||||||
@@ -589,22 +589,23 @@ marvel_print_pox_spl_cmplt(u64 spl_cmplt)
|
|||||||
static void
|
static void
|
||||||
marvel_print_pox_trans_sum(u64 trans_sum)
|
marvel_print_pox_trans_sum(u64 trans_sum)
|
||||||
{
|
{
|
||||||
char *pcix_cmd[] = { "Interrupt Acknowledge",
|
static const char * const pcix_cmd[] = {
|
||||||
"Special Cycle",
|
"Interrupt Acknowledge",
|
||||||
"I/O Read",
|
"Special Cycle",
|
||||||
"I/O Write",
|
"I/O Read",
|
||||||
"Reserved",
|
"I/O Write",
|
||||||
"Reserved / Device ID Message",
|
"Reserved",
|
||||||
"Memory Read",
|
"Reserved / Device ID Message",
|
||||||
"Memory Write",
|
"Memory Read",
|
||||||
"Reserved / Alias to Memory Read Block",
|
"Memory Write",
|
||||||
"Reserved / Alias to Memory Write Block",
|
"Reserved / Alias to Memory Read Block",
|
||||||
"Configuration Read",
|
"Reserved / Alias to Memory Write Block",
|
||||||
"Configuration Write",
|
"Configuration Read",
|
||||||
"Memory Read Multiple / Split Completion",
|
"Configuration Write",
|
||||||
"Dual Address Cycle",
|
"Memory Read Multiple / Split Completion",
|
||||||
"Memory Read Line / Memory Read Block",
|
"Dual Address Cycle",
|
||||||
"Memory Write and Invalidate / Memory Write Block"
|
"Memory Read Line / Memory Read Block",
|
||||||
|
"Memory Write and Invalidate / Memory Write Block"
|
||||||
};
|
};
|
||||||
|
|
||||||
#define IO7__POX_TRANSUM__PCI_ADDR__S (0)
|
#define IO7__POX_TRANSUM__PCI_ADDR__S (0)
|
||||||
|
|||||||
@@ -75,8 +75,12 @@ titan_parse_p_serror(int which, u64 serror, int print)
|
|||||||
int status = MCHK_DISPOSITION_REPORT;
|
int status = MCHK_DISPOSITION_REPORT;
|
||||||
|
|
||||||
#ifdef CONFIG_VERBOSE_MCHECK
|
#ifdef CONFIG_VERBOSE_MCHECK
|
||||||
char *serror_src[] = {"GPCI", "APCI", "AGP HP", "AGP LP"};
|
static const char * const serror_src[] = {
|
||||||
char *serror_cmd[] = {"DMA Read", "DMA RMW", "SGTE Read", "Reserved"};
|
"GPCI", "APCI", "AGP HP", "AGP LP"
|
||||||
|
};
|
||||||
|
static const char * const serror_cmd[] = {
|
||||||
|
"DMA Read", "DMA RMW", "SGTE Read", "Reserved"
|
||||||
|
};
|
||||||
#endif /* CONFIG_VERBOSE_MCHECK */
|
#endif /* CONFIG_VERBOSE_MCHECK */
|
||||||
|
|
||||||
#define TITAN__PCHIP_SERROR__LOST_UECC (1UL << 0)
|
#define TITAN__PCHIP_SERROR__LOST_UECC (1UL << 0)
|
||||||
@@ -140,14 +144,15 @@ titan_parse_p_perror(int which, int port, u64 perror, int print)
|
|||||||
int status = MCHK_DISPOSITION_REPORT;
|
int status = MCHK_DISPOSITION_REPORT;
|
||||||
|
|
||||||
#ifdef CONFIG_VERBOSE_MCHECK
|
#ifdef CONFIG_VERBOSE_MCHECK
|
||||||
char *perror_cmd[] = { "Interrupt Acknowledge", "Special Cycle",
|
static const char * const perror_cmd[] = {
|
||||||
"I/O Read", "I/O Write",
|
"Interrupt Acknowledge", "Special Cycle",
|
||||||
"Reserved", "Reserved",
|
"I/O Read", "I/O Write",
|
||||||
"Memory Read", "Memory Write",
|
"Reserved", "Reserved",
|
||||||
"Reserved", "Reserved",
|
"Memory Read", "Memory Write",
|
||||||
"Configuration Read", "Configuration Write",
|
"Reserved", "Reserved",
|
||||||
"Memory Read Multiple", "Dual Address Cycle",
|
"Configuration Read", "Configuration Write",
|
||||||
"Memory Read Line","Memory Write and Invalidate"
|
"Memory Read Multiple", "Dual Address Cycle",
|
||||||
|
"Memory Read Line", "Memory Write and Invalidate"
|
||||||
};
|
};
|
||||||
#endif /* CONFIG_VERBOSE_MCHECK */
|
#endif /* CONFIG_VERBOSE_MCHECK */
|
||||||
|
|
||||||
@@ -273,11 +278,11 @@ titan_parse_p_agperror(int which, u64 agperror, int print)
|
|||||||
int cmd, len;
|
int cmd, len;
|
||||||
unsigned long addr;
|
unsigned long addr;
|
||||||
|
|
||||||
char *agperror_cmd[] = { "Read (low-priority)", "Read (high-priority)",
|
static const char * const agperror_cmd[] = {
|
||||||
"Write (low-priority)",
|
"Read (low-priority)", "Read (high-priority)",
|
||||||
"Write (high-priority)",
|
"Write (low-priority)", "Write (high-priority)",
|
||||||
"Reserved", "Reserved",
|
"Reserved", "Reserved",
|
||||||
"Flush", "Fence"
|
"Flush", "Fence"
|
||||||
};
|
};
|
||||||
#endif /* CONFIG_VERBOSE_MCHECK */
|
#endif /* CONFIG_VERBOSE_MCHECK */
|
||||||
|
|
||||||
|
|||||||
@@ -15,7 +15,6 @@
|
|||||||
#include <linux/kernel.h>
|
#include <linux/kernel.h>
|
||||||
#include <linux/mm.h>
|
#include <linux/mm.h>
|
||||||
#include <linux/smp.h>
|
#include <linux/smp.h>
|
||||||
#include <linux/smp_lock.h>
|
|
||||||
#include <linux/stddef.h>
|
#include <linux/stddef.h>
|
||||||
#include <linux/syscalls.h>
|
#include <linux/syscalls.h>
|
||||||
#include <linux/unistd.h>
|
#include <linux/unistd.h>
|
||||||
@@ -69,7 +68,6 @@ SYSCALL_DEFINE4(osf_set_program_attributes, unsigned long, text_start,
|
|||||||
{
|
{
|
||||||
struct mm_struct *mm;
|
struct mm_struct *mm;
|
||||||
|
|
||||||
lock_kernel();
|
|
||||||
mm = current->mm;
|
mm = current->mm;
|
||||||
mm->end_code = bss_start + bss_len;
|
mm->end_code = bss_start + bss_len;
|
||||||
mm->start_brk = bss_start + bss_len;
|
mm->start_brk = bss_start + bss_len;
|
||||||
@@ -78,7 +76,6 @@ SYSCALL_DEFINE4(osf_set_program_attributes, unsigned long, text_start,
|
|||||||
printk("set_program_attributes(%lx %lx %lx %lx)\n",
|
printk("set_program_attributes(%lx %lx %lx %lx)\n",
|
||||||
text_start, text_len, bss_start, bss_len);
|
text_start, text_len, bss_start, bss_len);
|
||||||
#endif
|
#endif
|
||||||
unlock_kernel();
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -517,7 +514,6 @@ SYSCALL_DEFINE2(osf_proplist_syscall, enum pl_code, code,
|
|||||||
long error;
|
long error;
|
||||||
int __user *min_buf_size_ptr;
|
int __user *min_buf_size_ptr;
|
||||||
|
|
||||||
lock_kernel();
|
|
||||||
switch (code) {
|
switch (code) {
|
||||||
case PL_SET:
|
case PL_SET:
|
||||||
if (get_user(error, &args->set.nbytes))
|
if (get_user(error, &args->set.nbytes))
|
||||||
@@ -547,7 +543,6 @@ SYSCALL_DEFINE2(osf_proplist_syscall, enum pl_code, code,
|
|||||||
error = -EOPNOTSUPP;
|
error = -EOPNOTSUPP;
|
||||||
break;
|
break;
|
||||||
};
|
};
|
||||||
unlock_kernel();
|
|
||||||
return error;
|
return error;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -594,7 +589,7 @@ SYSCALL_DEFINE2(osf_sigstack, struct sigstack __user *, uss,
|
|||||||
|
|
||||||
SYSCALL_DEFINE3(osf_sysinfo, int, command, char __user *, buf, long, count)
|
SYSCALL_DEFINE3(osf_sysinfo, int, command, char __user *, buf, long, count)
|
||||||
{
|
{
|
||||||
char *sysinfo_table[] = {
|
const char *sysinfo_table[] = {
|
||||||
utsname()->sysname,
|
utsname()->sysname,
|
||||||
utsname()->nodename,
|
utsname()->nodename,
|
||||||
utsname()->release,
|
utsname()->release,
|
||||||
@@ -606,7 +601,7 @@ SYSCALL_DEFINE3(osf_sysinfo, int, command, char __user *, buf, long, count)
|
|||||||
"dummy", /* secure RPC domain */
|
"dummy", /* secure RPC domain */
|
||||||
};
|
};
|
||||||
unsigned long offset;
|
unsigned long offset;
|
||||||
char *res;
|
const char *res;
|
||||||
long len, err = -EINVAL;
|
long len, err = -EINVAL;
|
||||||
|
|
||||||
offset = command-1;
|
offset = command-1;
|
||||||
|
|||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user