License cleanup: add SPDX GPL-2.0 license identifier to files with no license
Many source files in the tree are missing licensing information, which
makes it harder for compliance tools to determine the correct license.
By default all files without license information are under the default
license of the kernel, which is GPL version 2.
Update the files which contain no license information with the 'GPL-2.0'
SPDX license identifier. The SPDX identifier is a legally binding
shorthand, which can be used instead of the full boiler plate text.
This patch is based on work done by Thomas Gleixner and Kate Stewart and
Philippe Ombredanne.
How this work was done:
Patches were generated and checked against linux-4.14-rc6 for a subset of
the use cases:
- file had no licensing information it it.
- file was a */uapi/* one with no licensing information in it,
- file was a */uapi/* one with existing licensing information,
Further patches will be generated in subsequent months to fix up cases
where non-standard license headers were used, and references to license
had to be inferred by heuristics based on keywords.
The analysis to determine which SPDX License Identifier to be applied to
a file was done in a spreadsheet of side by side results from of the
output of two independent scanners (ScanCode & Windriver) producing SPDX
tag:value files created by Philippe Ombredanne. Philippe prepared the
base worksheet, and did an initial spot review of a few 1000 files.
The 4.13 kernel was the starting point of the analysis with 60,537 files
assessed. Kate Stewart did a file by file comparison of the scanner
results in the spreadsheet to determine which SPDX license identifier(s)
to be applied to the file. She confirmed any determination that was not
immediately clear with lawyers working with the Linux Foundation.
Criteria used to select files for SPDX license identifier tagging was:
- Files considered eligible had to be source code files.
- Make and config files were included as candidates if they contained >5
lines of source
- File already had some variant of a license header in it (even if <5
lines).
All documentation files were explicitly excluded.
The following heuristics were used to determine which SPDX license
identifiers to apply.
- when both scanners couldn't find any license traces, file was
considered to have no license information in it, and the top level
COPYING file license applied.
For non */uapi/* files that summary was:
SPDX license identifier # files
---------------------------------------------------|-------
GPL-2.0 11139
and resulted in the first patch in this series.
If that file was a */uapi/* path one, it was "GPL-2.0 WITH
Linux-syscall-note" otherwise it was "GPL-2.0". Results of that was:
SPDX license identifier # files
---------------------------------------------------|-------
GPL-2.0 WITH Linux-syscall-note 930
and resulted in the second patch in this series.
- if a file had some form of licensing information in it, and was one
of the */uapi/* ones, it was denoted with the Linux-syscall-note if
any GPL family license was found in the file or had no licensing in
it (per prior point). Results summary:
SPDX license identifier # files
---------------------------------------------------|------
GPL-2.0 WITH Linux-syscall-note 270
GPL-2.0+ WITH Linux-syscall-note 169
((GPL-2.0 WITH Linux-syscall-note) OR BSD-2-Clause) 21
((GPL-2.0 WITH Linux-syscall-note) OR BSD-3-Clause) 17
LGPL-2.1+ WITH Linux-syscall-note 15
GPL-1.0+ WITH Linux-syscall-note 14
((GPL-2.0+ WITH Linux-syscall-note) OR BSD-3-Clause) 5
LGPL-2.0+ WITH Linux-syscall-note 4
LGPL-2.1 WITH Linux-syscall-note 3
((GPL-2.0 WITH Linux-syscall-note) OR MIT) 3
((GPL-2.0 WITH Linux-syscall-note) AND MIT) 1
and that resulted in the third patch in this series.
- when the two scanners agreed on the detected license(s), that became
the concluded license(s).
- when there was disagreement between the two scanners (one detected a
license but the other didn't, or they both detected different
licenses) a manual inspection of the file occurred.
- In most cases a manual inspection of the information in the file
resulted in a clear resolution of the license that should apply (and
which scanner probably needed to revisit its heuristics).
- When it was not immediately clear, the license identifier was
confirmed with lawyers working with the Linux Foundation.
- If there was any question as to the appropriate license identifier,
the file was flagged for further research and to be revisited later
in time.
In total, over 70 hours of logged manual review was done on the
spreadsheet to determine the SPDX license identifiers to apply to the
source files by Kate, Philippe, Thomas and, in some cases, confirmation
by lawyers working with the Linux Foundation.
Kate also obtained a third independent scan of the 4.13 code base from
FOSSology, and compared selected files where the other two scanners
disagreed against that SPDX file, to see if there was new insights. The
Windriver scanner is based on an older version of FOSSology in part, so
they are related.
Thomas did random spot checks in about 500 files from the spreadsheets
for the uapi headers and agreed with SPDX license identifier in the
files he inspected. For the non-uapi files Thomas did random spot checks
in about 15000 files.
In initial set of patches against 4.14-rc6, 3 files were found to have
copy/paste license identifier errors, and have been fixed to reflect the
correct identifier.
Additionally Philippe spent 10 hours this week doing a detailed manual
inspection and review of the 12,461 patched files from the initial patch
version early this week with:
- a full scancode scan run, collecting the matched texts, detected
license ids and scores
- reviewing anything where there was a license detected (about 500+
files) to ensure that the applied SPDX license was correct
- reviewing anything where there was no detection but the patch license
was not GPL-2.0 WITH Linux-syscall-note to ensure that the applied
SPDX license was correct
This produced a worksheet with 20 files needing minor correction. This
worksheet was then exported into 3 different .csv files for the
different types of files to be modified.
These .csv files were then reviewed by Greg. Thomas wrote a script to
parse the csv files and add the proper SPDX tag to the file, in the
format that the file expected. This script was further refined by Greg
based on the output to detect more types of files automatically and to
distinguish between header and source .c files (which need different
comment types.) Finally Greg ran the script using the .csv files to
generate the patches.
Reviewed-by: Kate Stewart <kstewart@linuxfoundation.org>
Reviewed-by: Philippe Ombredanne <pombredanne@nexb.com>
Reviewed-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
2017-11-01 22:07:57 +08:00
|
|
|
// SPDX-License-Identifier: GPL-2.0
|
2015-07-17 22:38:13 +08:00
|
|
|
/*
|
|
|
|
* (C) 2001 Clemson University and The University of Chicago
|
|
|
|
*
|
|
|
|
* See COPYING in top-level directory.
|
|
|
|
*/
|
|
|
|
#include "protocol.h"
|
2015-12-05 01:56:14 +08:00
|
|
|
#include "orangefs-kernel.h"
|
|
|
|
#include "orangefs-bufmap.h"
|
2015-07-17 22:38:13 +08:00
|
|
|
|
2016-02-14 10:01:21 +08:00
|
|
|
struct slot_map {
|
|
|
|
int c;
|
|
|
|
wait_queue_head_t q;
|
|
|
|
int count;
|
|
|
|
unsigned long *map;
|
|
|
|
};
|
|
|
|
|
|
|
|
static struct slot_map rw_map = {
|
|
|
|
.c = -1,
|
|
|
|
.q = __WAIT_QUEUE_HEAD_INITIALIZER(rw_map.q)
|
|
|
|
};
|
|
|
|
static struct slot_map readdir_map = {
|
|
|
|
.c = -1,
|
|
|
|
.q = __WAIT_QUEUE_HEAD_INITIALIZER(readdir_map.q)
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
static void install(struct slot_map *m, int count, unsigned long *map)
|
|
|
|
{
|
|
|
|
spin_lock(&m->q.lock);
|
|
|
|
m->c = m->count = count;
|
|
|
|
m->map = map;
|
|
|
|
wake_up_all_locked(&m->q);
|
|
|
|
spin_unlock(&m->q.lock);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void mark_killed(struct slot_map *m)
|
|
|
|
{
|
|
|
|
spin_lock(&m->q.lock);
|
|
|
|
m->c -= m->count + 1;
|
|
|
|
spin_unlock(&m->q.lock);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void run_down(struct slot_map *m)
|
|
|
|
{
|
|
|
|
DEFINE_WAIT(wait);
|
|
|
|
spin_lock(&m->q.lock);
|
|
|
|
if (m->c != -1) {
|
|
|
|
for (;;) {
|
sched/wait: Disambiguate wq_entry->task_list and wq_head->task_list naming
So I've noticed a number of instances where it was not obvious from the
code whether ->task_list was for a wait-queue head or a wait-queue entry.
Furthermore, there's a number of wait-queue users where the lists are
not for 'tasks' but other entities (poll tables, etc.), in which case
the 'task_list' name is actively confusing.
To clear this all up, name the wait-queue head and entry list structure
fields unambiguously:
struct wait_queue_head::task_list => ::head
struct wait_queue_entry::task_list => ::entry
For example, this code:
rqw->wait.task_list.next != &wait->task_list
... is was pretty unclear (to me) what it's doing, while now it's written this way:
rqw->wait.head.next != &wait->entry
... which makes it pretty clear that we are iterating a list until we see the head.
Other examples are:
list_for_each_entry_safe(pos, next, &x->task_list, task_list) {
list_for_each_entry(wq, &fence->wait.task_list, task_list) {
... where it's unclear (to me) what we are iterating, and during review it's
hard to tell whether it's trying to walk a wait-queue entry (which would be
a bug), while now it's written as:
list_for_each_entry_safe(pos, next, &x->head, entry) {
list_for_each_entry(wq, &fence->wait.head, entry) {
Cc: Linus Torvalds <torvalds@linux-foundation.org>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Thomas Gleixner <tglx@linutronix.de>
Cc: linux-kernel@vger.kernel.org
Signed-off-by: Ingo Molnar <mingo@kernel.org>
2017-06-20 18:06:46 +08:00
|
|
|
if (likely(list_empty(&wait.entry)))
|
2017-06-20 18:06:13 +08:00
|
|
|
__add_wait_queue_entry_tail(&m->q, &wait);
|
2016-02-14 10:01:21 +08:00
|
|
|
set_current_state(TASK_UNINTERRUPTIBLE);
|
|
|
|
|
|
|
|
if (m->c == -1)
|
|
|
|
break;
|
|
|
|
|
|
|
|
spin_unlock(&m->q.lock);
|
|
|
|
schedule();
|
|
|
|
spin_lock(&m->q.lock);
|
|
|
|
}
|
|
|
|
__remove_wait_queue(&m->q, &wait);
|
|
|
|
__set_current_state(TASK_RUNNING);
|
|
|
|
}
|
|
|
|
m->map = NULL;
|
|
|
|
spin_unlock(&m->q.lock);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void put(struct slot_map *m, int slot)
|
|
|
|
{
|
|
|
|
int v;
|
|
|
|
spin_lock(&m->q.lock);
|
|
|
|
__clear_bit(slot, m->map);
|
|
|
|
v = ++m->c;
|
2018-03-09 07:54:12 +08:00
|
|
|
if (v > 0)
|
2016-02-14 10:01:21 +08:00
|
|
|
wake_up_locked(&m->q);
|
2018-03-09 07:54:12 +08:00
|
|
|
if (unlikely(v == -1)) /* finished dying */
|
2016-02-14 10:01:21 +08:00
|
|
|
wake_up_all_locked(&m->q);
|
|
|
|
spin_unlock(&m->q.lock);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int wait_for_free(struct slot_map *m)
|
|
|
|
{
|
|
|
|
long left = slot_timeout_secs * HZ;
|
|
|
|
DEFINE_WAIT(wait);
|
|
|
|
|
|
|
|
do {
|
|
|
|
long n = left, t;
|
sched/wait: Disambiguate wq_entry->task_list and wq_head->task_list naming
So I've noticed a number of instances where it was not obvious from the
code whether ->task_list was for a wait-queue head or a wait-queue entry.
Furthermore, there's a number of wait-queue users where the lists are
not for 'tasks' but other entities (poll tables, etc.), in which case
the 'task_list' name is actively confusing.
To clear this all up, name the wait-queue head and entry list structure
fields unambiguously:
struct wait_queue_head::task_list => ::head
struct wait_queue_entry::task_list => ::entry
For example, this code:
rqw->wait.task_list.next != &wait->task_list
... is was pretty unclear (to me) what it's doing, while now it's written this way:
rqw->wait.head.next != &wait->entry
... which makes it pretty clear that we are iterating a list until we see the head.
Other examples are:
list_for_each_entry_safe(pos, next, &x->task_list, task_list) {
list_for_each_entry(wq, &fence->wait.task_list, task_list) {
... where it's unclear (to me) what we are iterating, and during review it's
hard to tell whether it's trying to walk a wait-queue entry (which would be
a bug), while now it's written as:
list_for_each_entry_safe(pos, next, &x->head, entry) {
list_for_each_entry(wq, &fence->wait.head, entry) {
Cc: Linus Torvalds <torvalds@linux-foundation.org>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Thomas Gleixner <tglx@linutronix.de>
Cc: linux-kernel@vger.kernel.org
Signed-off-by: Ingo Molnar <mingo@kernel.org>
2017-06-20 18:06:46 +08:00
|
|
|
if (likely(list_empty(&wait.entry)))
|
2017-06-20 18:06:13 +08:00
|
|
|
__add_wait_queue_entry_tail_exclusive(&m->q, &wait);
|
2016-02-14 10:01:21 +08:00
|
|
|
set_current_state(TASK_INTERRUPTIBLE);
|
|
|
|
|
|
|
|
if (m->c > 0)
|
|
|
|
break;
|
|
|
|
|
|
|
|
if (m->c < 0) {
|
|
|
|
/* we are waiting for map to be installed */
|
|
|
|
/* it would better be there soon, or we go away */
|
|
|
|
if (n > ORANGEFS_BUFMAP_WAIT_TIMEOUT_SECS * HZ)
|
|
|
|
n = ORANGEFS_BUFMAP_WAIT_TIMEOUT_SECS * HZ;
|
|
|
|
}
|
|
|
|
spin_unlock(&m->q.lock);
|
|
|
|
t = schedule_timeout(n);
|
|
|
|
spin_lock(&m->q.lock);
|
|
|
|
if (unlikely(!t) && n != left && m->c < 0)
|
|
|
|
left = t;
|
|
|
|
else
|
|
|
|
left = t + (left - n);
|
|
|
|
if (unlikely(signal_pending(current)))
|
|
|
|
left = -EINTR;
|
|
|
|
} while (left > 0);
|
|
|
|
|
sched/wait: Disambiguate wq_entry->task_list and wq_head->task_list naming
So I've noticed a number of instances where it was not obvious from the
code whether ->task_list was for a wait-queue head or a wait-queue entry.
Furthermore, there's a number of wait-queue users where the lists are
not for 'tasks' but other entities (poll tables, etc.), in which case
the 'task_list' name is actively confusing.
To clear this all up, name the wait-queue head and entry list structure
fields unambiguously:
struct wait_queue_head::task_list => ::head
struct wait_queue_entry::task_list => ::entry
For example, this code:
rqw->wait.task_list.next != &wait->task_list
... is was pretty unclear (to me) what it's doing, while now it's written this way:
rqw->wait.head.next != &wait->entry
... which makes it pretty clear that we are iterating a list until we see the head.
Other examples are:
list_for_each_entry_safe(pos, next, &x->task_list, task_list) {
list_for_each_entry(wq, &fence->wait.task_list, task_list) {
... where it's unclear (to me) what we are iterating, and during review it's
hard to tell whether it's trying to walk a wait-queue entry (which would be
a bug), while now it's written as:
list_for_each_entry_safe(pos, next, &x->head, entry) {
list_for_each_entry(wq, &fence->wait.head, entry) {
Cc: Linus Torvalds <torvalds@linux-foundation.org>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Thomas Gleixner <tglx@linutronix.de>
Cc: linux-kernel@vger.kernel.org
Signed-off-by: Ingo Molnar <mingo@kernel.org>
2017-06-20 18:06:46 +08:00
|
|
|
if (!list_empty(&wait.entry))
|
|
|
|
list_del(&wait.entry);
|
2016-02-14 10:01:21 +08:00
|
|
|
else if (left <= 0 && waitqueue_active(&m->q))
|
|
|
|
__wake_up_locked_key(&m->q, TASK_INTERRUPTIBLE, NULL);
|
|
|
|
__set_current_state(TASK_RUNNING);
|
|
|
|
|
|
|
|
if (likely(left > 0))
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
return left < 0 ? -EINTR : -ETIMEDOUT;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int get(struct slot_map *m)
|
|
|
|
{
|
|
|
|
int res = 0;
|
|
|
|
spin_lock(&m->q.lock);
|
|
|
|
if (unlikely(m->c <= 0))
|
|
|
|
res = wait_for_free(m);
|
|
|
|
if (likely(!res)) {
|
|
|
|
m->c--;
|
|
|
|
res = find_first_zero_bit(m->map, m->count);
|
|
|
|
__set_bit(res, m->map);
|
|
|
|
}
|
|
|
|
spin_unlock(&m->q.lock);
|
|
|
|
return res;
|
|
|
|
}
|
2015-07-17 22:38:13 +08:00
|
|
|
|
2015-12-16 03:45:12 +08:00
|
|
|
/* used to describe mapped buffers */
|
|
|
|
struct orangefs_bufmap_desc {
|
2018-06-02 00:19:45 +08:00
|
|
|
void __user *uaddr; /* user space address pointer */
|
2015-12-16 03:45:12 +08:00
|
|
|
struct page **page_array; /* array of mapped pages */
|
|
|
|
int array_count; /* size of above arrays */
|
|
|
|
struct list_head list_link;
|
|
|
|
};
|
|
|
|
|
2015-11-25 04:12:14 +08:00
|
|
|
static struct orangefs_bufmap {
|
2015-07-17 22:38:13 +08:00
|
|
|
int desc_size;
|
|
|
|
int desc_shift;
|
|
|
|
int desc_count;
|
|
|
|
int total_size;
|
|
|
|
int page_count;
|
|
|
|
|
|
|
|
struct page **page_array;
|
2015-11-25 04:12:14 +08:00
|
|
|
struct orangefs_bufmap_desc *desc_array;
|
2015-07-17 22:38:13 +08:00
|
|
|
|
|
|
|
/* array to track usage of buffer descriptors */
|
2016-02-14 10:01:21 +08:00
|
|
|
unsigned long *buffer_index_array;
|
2015-07-17 22:38:13 +08:00
|
|
|
|
|
|
|
/* array to track usage of buffer descriptors for readdir */
|
2016-02-14 10:01:21 +08:00
|
|
|
#define N DIV_ROUND_UP(ORANGEFS_READDIR_DEFAULT_DESC_COUNT, BITS_PER_LONG)
|
|
|
|
unsigned long readdir_index_array[N];
|
|
|
|
#undef N
|
2015-11-25 04:12:14 +08:00
|
|
|
} *__orangefs_bufmap;
|
2015-07-17 22:38:13 +08:00
|
|
|
|
2015-11-25 04:12:14 +08:00
|
|
|
static DEFINE_SPINLOCK(orangefs_bufmap_lock);
|
2015-07-17 22:38:13 +08:00
|
|
|
|
|
|
|
static void
|
2015-11-25 04:12:14 +08:00
|
|
|
orangefs_bufmap_unmap(struct orangefs_bufmap *bufmap)
|
2015-07-17 22:38:13 +08:00
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
|
|
|
for (i = 0; i < bufmap->page_count; i++)
|
mm, fs: get rid of PAGE_CACHE_* and page_cache_{get,release} macros
PAGE_CACHE_{SIZE,SHIFT,MASK,ALIGN} macros were introduced *long* time
ago with promise that one day it will be possible to implement page
cache with bigger chunks than PAGE_SIZE.
This promise never materialized. And unlikely will.
We have many places where PAGE_CACHE_SIZE assumed to be equal to
PAGE_SIZE. And it's constant source of confusion on whether
PAGE_CACHE_* or PAGE_* constant should be used in a particular case,
especially on the border between fs and mm.
Global switching to PAGE_CACHE_SIZE != PAGE_SIZE would cause to much
breakage to be doable.
Let's stop pretending that pages in page cache are special. They are
not.
The changes are pretty straight-forward:
- <foo> << (PAGE_CACHE_SHIFT - PAGE_SHIFT) -> <foo>;
- <foo> >> (PAGE_CACHE_SHIFT - PAGE_SHIFT) -> <foo>;
- PAGE_CACHE_{SIZE,SHIFT,MASK,ALIGN} -> PAGE_{SIZE,SHIFT,MASK,ALIGN};
- page_cache_get() -> get_page();
- page_cache_release() -> put_page();
This patch contains automated changes generated with coccinelle using
script below. For some reason, coccinelle doesn't patch header files.
I've called spatch for them manually.
The only adjustment after coccinelle is revert of changes to
PAGE_CAHCE_ALIGN definition: we are going to drop it later.
There are few places in the code where coccinelle didn't reach. I'll
fix them manually in a separate patch. Comments and documentation also
will be addressed with the separate patch.
virtual patch
@@
expression E;
@@
- E << (PAGE_CACHE_SHIFT - PAGE_SHIFT)
+ E
@@
expression E;
@@
- E >> (PAGE_CACHE_SHIFT - PAGE_SHIFT)
+ E
@@
@@
- PAGE_CACHE_SHIFT
+ PAGE_SHIFT
@@
@@
- PAGE_CACHE_SIZE
+ PAGE_SIZE
@@
@@
- PAGE_CACHE_MASK
+ PAGE_MASK
@@
expression E;
@@
- PAGE_CACHE_ALIGN(E)
+ PAGE_ALIGN(E)
@@
expression E;
@@
- page_cache_get(E)
+ get_page(E)
@@
expression E;
@@
- page_cache_release(E)
+ put_page(E)
Signed-off-by: Kirill A. Shutemov <kirill.shutemov@linux.intel.com>
Acked-by: Michal Hocko <mhocko@suse.com>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
2016-04-01 20:29:47 +08:00
|
|
|
put_page(bufmap->page_array[i]);
|
2015-07-17 22:38:13 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2015-11-25 04:12:14 +08:00
|
|
|
orangefs_bufmap_free(struct orangefs_bufmap *bufmap)
|
2015-07-17 22:38:13 +08:00
|
|
|
{
|
|
|
|
kfree(bufmap->page_array);
|
|
|
|
kfree(bufmap->desc_array);
|
|
|
|
kfree(bufmap->buffer_index_array);
|
|
|
|
kfree(bufmap);
|
|
|
|
}
|
|
|
|
|
2015-12-16 03:54:27 +08:00
|
|
|
/*
|
2018-05-12 05:11:48 +08:00
|
|
|
* XXX: Can the size and shift change while the caller gives up the
|
2015-12-16 03:54:27 +08:00
|
|
|
* XXX: lock between calling this and doing something useful?
|
|
|
|
*/
|
|
|
|
|
2015-12-16 03:48:17 +08:00
|
|
|
int orangefs_bufmap_size_query(void)
|
2015-07-17 22:38:13 +08:00
|
|
|
{
|
2015-12-16 03:54:27 +08:00
|
|
|
struct orangefs_bufmap *bufmap;
|
|
|
|
int size = 0;
|
2016-02-14 00:16:37 +08:00
|
|
|
spin_lock(&orangefs_bufmap_lock);
|
|
|
|
bufmap = __orangefs_bufmap;
|
|
|
|
if (bufmap)
|
2015-12-16 03:54:27 +08:00
|
|
|
size = bufmap->desc_size;
|
2016-02-14 00:16:37 +08:00
|
|
|
spin_unlock(&orangefs_bufmap_lock);
|
2015-07-17 22:38:13 +08:00
|
|
|
return size;
|
|
|
|
}
|
|
|
|
|
2015-12-16 03:48:17 +08:00
|
|
|
int orangefs_bufmap_shift_query(void)
|
2015-07-17 22:38:13 +08:00
|
|
|
{
|
2015-12-16 03:54:27 +08:00
|
|
|
struct orangefs_bufmap *bufmap;
|
|
|
|
int shift = 0;
|
2016-02-14 00:16:37 +08:00
|
|
|
spin_lock(&orangefs_bufmap_lock);
|
|
|
|
bufmap = __orangefs_bufmap;
|
|
|
|
if (bufmap)
|
2015-12-16 03:54:27 +08:00
|
|
|
shift = bufmap->desc_shift;
|
2016-02-14 00:16:37 +08:00
|
|
|
spin_unlock(&orangefs_bufmap_lock);
|
2015-07-17 22:38:13 +08:00
|
|
|
return shift;
|
|
|
|
}
|
|
|
|
|
|
|
|
static DECLARE_WAIT_QUEUE_HEAD(bufmap_waitq);
|
|
|
|
static DECLARE_WAIT_QUEUE_HEAD(readdir_waitq);
|
|
|
|
|
2015-11-25 04:12:14 +08:00
|
|
|
static struct orangefs_bufmap *
|
|
|
|
orangefs_bufmap_alloc(struct ORANGEFS_dev_map_desc *user_desc)
|
2015-07-17 22:38:13 +08:00
|
|
|
{
|
2015-11-25 04:12:14 +08:00
|
|
|
struct orangefs_bufmap *bufmap;
|
2015-07-17 22:38:13 +08:00
|
|
|
|
|
|
|
bufmap = kzalloc(sizeof(*bufmap), GFP_KERNEL);
|
|
|
|
if (!bufmap)
|
|
|
|
goto out;
|
|
|
|
|
|
|
|
bufmap->total_size = user_desc->total_size;
|
|
|
|
bufmap->desc_count = user_desc->count;
|
|
|
|
bufmap->desc_size = user_desc->size;
|
|
|
|
bufmap->desc_shift = ilog2(bufmap->desc_size);
|
|
|
|
|
|
|
|
bufmap->buffer_index_array =
|
2016-02-14 10:01:21 +08:00
|
|
|
kzalloc(DIV_ROUND_UP(bufmap->desc_count, BITS_PER_LONG), GFP_KERNEL);
|
2017-08-18 03:00:07 +08:00
|
|
|
if (!bufmap->buffer_index_array)
|
2015-07-17 22:38:13 +08:00
|
|
|
goto out_free_bufmap;
|
|
|
|
|
|
|
|
bufmap->desc_array =
|
2015-11-25 04:12:14 +08:00
|
|
|
kcalloc(bufmap->desc_count, sizeof(struct orangefs_bufmap_desc),
|
2015-07-17 22:38:13 +08:00
|
|
|
GFP_KERNEL);
|
2017-08-18 03:00:07 +08:00
|
|
|
if (!bufmap->desc_array)
|
2015-07-17 22:38:13 +08:00
|
|
|
goto out_free_index_array;
|
|
|
|
|
|
|
|
bufmap->page_count = bufmap->total_size / PAGE_SIZE;
|
|
|
|
|
|
|
|
/* allocate storage to track our page mappings */
|
|
|
|
bufmap->page_array =
|
|
|
|
kcalloc(bufmap->page_count, sizeof(struct page *), GFP_KERNEL);
|
|
|
|
if (!bufmap->page_array)
|
|
|
|
goto out_free_desc_array;
|
|
|
|
|
|
|
|
return bufmap;
|
|
|
|
|
|
|
|
out_free_desc_array:
|
|
|
|
kfree(bufmap->desc_array);
|
|
|
|
out_free_index_array:
|
|
|
|
kfree(bufmap->buffer_index_array);
|
|
|
|
out_free_bufmap:
|
|
|
|
kfree(bufmap);
|
|
|
|
out:
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
2015-11-25 04:12:14 +08:00
|
|
|
orangefs_bufmap_map(struct orangefs_bufmap *bufmap,
|
|
|
|
struct ORANGEFS_dev_map_desc *user_desc)
|
2015-07-17 22:38:13 +08:00
|
|
|
{
|
|
|
|
int pages_per_desc = bufmap->desc_size / PAGE_SIZE;
|
|
|
|
int offset = 0, ret, i;
|
|
|
|
|
|
|
|
/* map the pages */
|
2015-10-09 08:10:00 +08:00
|
|
|
ret = get_user_pages_fast((unsigned long)user_desc->ptr,
|
|
|
|
bufmap->page_count, 1, bufmap->page_array);
|
2015-07-17 22:38:13 +08:00
|
|
|
|
|
|
|
if (ret < 0)
|
|
|
|
return ret;
|
|
|
|
|
|
|
|
if (ret != bufmap->page_count) {
|
2015-11-25 04:12:14 +08:00
|
|
|
gossip_err("orangefs error: asked for %d pages, only got %d.\n",
|
2015-07-17 22:38:13 +08:00
|
|
|
bufmap->page_count, ret);
|
|
|
|
|
|
|
|
for (i = 0; i < ret; i++) {
|
|
|
|
SetPageError(bufmap->page_array[i]);
|
mm, fs: get rid of PAGE_CACHE_* and page_cache_{get,release} macros
PAGE_CACHE_{SIZE,SHIFT,MASK,ALIGN} macros were introduced *long* time
ago with promise that one day it will be possible to implement page
cache with bigger chunks than PAGE_SIZE.
This promise never materialized. And unlikely will.
We have many places where PAGE_CACHE_SIZE assumed to be equal to
PAGE_SIZE. And it's constant source of confusion on whether
PAGE_CACHE_* or PAGE_* constant should be used in a particular case,
especially on the border between fs and mm.
Global switching to PAGE_CACHE_SIZE != PAGE_SIZE would cause to much
breakage to be doable.
Let's stop pretending that pages in page cache are special. They are
not.
The changes are pretty straight-forward:
- <foo> << (PAGE_CACHE_SHIFT - PAGE_SHIFT) -> <foo>;
- <foo> >> (PAGE_CACHE_SHIFT - PAGE_SHIFT) -> <foo>;
- PAGE_CACHE_{SIZE,SHIFT,MASK,ALIGN} -> PAGE_{SIZE,SHIFT,MASK,ALIGN};
- page_cache_get() -> get_page();
- page_cache_release() -> put_page();
This patch contains automated changes generated with coccinelle using
script below. For some reason, coccinelle doesn't patch header files.
I've called spatch for them manually.
The only adjustment after coccinelle is revert of changes to
PAGE_CAHCE_ALIGN definition: we are going to drop it later.
There are few places in the code where coccinelle didn't reach. I'll
fix them manually in a separate patch. Comments and documentation also
will be addressed with the separate patch.
virtual patch
@@
expression E;
@@
- E << (PAGE_CACHE_SHIFT - PAGE_SHIFT)
+ E
@@
expression E;
@@
- E >> (PAGE_CACHE_SHIFT - PAGE_SHIFT)
+ E
@@
@@
- PAGE_CACHE_SHIFT
+ PAGE_SHIFT
@@
@@
- PAGE_CACHE_SIZE
+ PAGE_SIZE
@@
@@
- PAGE_CACHE_MASK
+ PAGE_MASK
@@
expression E;
@@
- PAGE_CACHE_ALIGN(E)
+ PAGE_ALIGN(E)
@@
expression E;
@@
- page_cache_get(E)
+ get_page(E)
@@
expression E;
@@
- page_cache_release(E)
+ put_page(E)
Signed-off-by: Kirill A. Shutemov <kirill.shutemov@linux.intel.com>
Acked-by: Michal Hocko <mhocko@suse.com>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
2016-04-01 20:29:47 +08:00
|
|
|
put_page(bufmap->page_array[i]);
|
2015-07-17 22:38:13 +08:00
|
|
|
}
|
|
|
|
return -ENOMEM;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* ideally we want to get kernel space pointers for each page, but
|
|
|
|
* we can't kmap that many pages at once if highmem is being used.
|
|
|
|
* so instead, we just kmap/kunmap the page address each time the
|
|
|
|
* kaddr is needed.
|
|
|
|
*/
|
|
|
|
for (i = 0; i < bufmap->page_count; i++)
|
|
|
|
flush_dcache_page(bufmap->page_array[i]);
|
|
|
|
|
|
|
|
/* build a list of available descriptors */
|
|
|
|
for (offset = 0, i = 0; i < bufmap->desc_count; i++) {
|
|
|
|
bufmap->desc_array[i].page_array = &bufmap->page_array[offset];
|
|
|
|
bufmap->desc_array[i].array_count = pages_per_desc;
|
|
|
|
bufmap->desc_array[i].uaddr =
|
|
|
|
(user_desc->ptr + (i * pages_per_desc * PAGE_SIZE));
|
|
|
|
offset += pages_per_desc;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2015-11-25 04:12:14 +08:00
|
|
|
* orangefs_bufmap_initialize()
|
2015-07-17 22:38:13 +08:00
|
|
|
*
|
|
|
|
* initializes the mapped buffer interface
|
|
|
|
*
|
|
|
|
* returns 0 on success, -errno on failure
|
|
|
|
*/
|
2015-11-25 04:12:14 +08:00
|
|
|
int orangefs_bufmap_initialize(struct ORANGEFS_dev_map_desc *user_desc)
|
2015-07-17 22:38:13 +08:00
|
|
|
{
|
2015-11-25 04:12:14 +08:00
|
|
|
struct orangefs_bufmap *bufmap;
|
2015-07-17 22:38:13 +08:00
|
|
|
int ret = -EINVAL;
|
|
|
|
|
|
|
|
gossip_debug(GOSSIP_BUFMAP_DEBUG,
|
2015-11-25 04:12:14 +08:00
|
|
|
"orangefs_bufmap_initialize: called (ptr ("
|
2015-07-17 22:38:13 +08:00
|
|
|
"%p) sz (%d) cnt(%d).\n",
|
|
|
|
user_desc->ptr,
|
|
|
|
user_desc->size,
|
|
|
|
user_desc->count);
|
|
|
|
|
2017-01-21 13:04:45 +08:00
|
|
|
if (user_desc->total_size < 0 ||
|
|
|
|
user_desc->size < 0 ||
|
|
|
|
user_desc->count < 0)
|
|
|
|
goto out;
|
|
|
|
|
2015-07-17 22:38:13 +08:00
|
|
|
/*
|
|
|
|
* sanity check alignment and size of buffer that caller wants to
|
|
|
|
* work with
|
|
|
|
*/
|
|
|
|
if (PAGE_ALIGN((unsigned long)user_desc->ptr) !=
|
|
|
|
(unsigned long)user_desc->ptr) {
|
2015-11-25 04:12:14 +08:00
|
|
|
gossip_err("orangefs error: memory alignment (front). %p\n",
|
2015-07-17 22:38:13 +08:00
|
|
|
user_desc->ptr);
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (PAGE_ALIGN(((unsigned long)user_desc->ptr + user_desc->total_size))
|
|
|
|
!= (unsigned long)(user_desc->ptr + user_desc->total_size)) {
|
2015-11-25 04:12:14 +08:00
|
|
|
gossip_err("orangefs error: memory alignment (back).(%p + %d)\n",
|
2015-07-17 22:38:13 +08:00
|
|
|
user_desc->ptr,
|
|
|
|
user_desc->total_size);
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (user_desc->total_size != (user_desc->size * user_desc->count)) {
|
2015-11-25 04:12:14 +08:00
|
|
|
gossip_err("orangefs error: user provided an oddly sized buffer: (%d, %d, %d)\n",
|
2015-07-17 22:38:13 +08:00
|
|
|
user_desc->total_size,
|
|
|
|
user_desc->size,
|
|
|
|
user_desc->count);
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ((user_desc->size % PAGE_SIZE) != 0) {
|
2015-11-25 04:12:14 +08:00
|
|
|
gossip_err("orangefs error: bufmap size not page size divisible (%d).\n",
|
2015-07-17 22:38:13 +08:00
|
|
|
user_desc->size);
|
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
|
|
|
|
ret = -ENOMEM;
|
2015-11-25 04:12:14 +08:00
|
|
|
bufmap = orangefs_bufmap_alloc(user_desc);
|
2015-07-17 22:38:13 +08:00
|
|
|
if (!bufmap)
|
|
|
|
goto out;
|
|
|
|
|
2015-11-25 04:12:14 +08:00
|
|
|
ret = orangefs_bufmap_map(bufmap, user_desc);
|
2015-07-17 22:38:13 +08:00
|
|
|
if (ret)
|
|
|
|
goto out_free_bufmap;
|
|
|
|
|
|
|
|
|
2015-11-25 04:12:14 +08:00
|
|
|
spin_lock(&orangefs_bufmap_lock);
|
|
|
|
if (__orangefs_bufmap) {
|
|
|
|
spin_unlock(&orangefs_bufmap_lock);
|
|
|
|
gossip_err("orangefs: error: bufmap already initialized.\n");
|
2016-02-14 10:01:21 +08:00
|
|
|
ret = -EINVAL;
|
2015-07-17 22:38:13 +08:00
|
|
|
goto out_unmap_bufmap;
|
|
|
|
}
|
2015-11-25 04:12:14 +08:00
|
|
|
__orangefs_bufmap = bufmap;
|
2016-02-14 10:01:21 +08:00
|
|
|
install(&rw_map,
|
|
|
|
bufmap->desc_count,
|
|
|
|
bufmap->buffer_index_array);
|
|
|
|
install(&readdir_map,
|
|
|
|
ORANGEFS_READDIR_DEFAULT_DESC_COUNT,
|
|
|
|
bufmap->readdir_index_array);
|
2015-11-25 04:12:14 +08:00
|
|
|
spin_unlock(&orangefs_bufmap_lock);
|
2015-07-17 22:38:13 +08:00
|
|
|
|
|
|
|
gossip_debug(GOSSIP_BUFMAP_DEBUG,
|
2015-11-25 04:12:14 +08:00
|
|
|
"orangefs_bufmap_initialize: exiting normally\n");
|
2015-07-17 22:38:13 +08:00
|
|
|
return 0;
|
|
|
|
|
|
|
|
out_unmap_bufmap:
|
2015-11-25 04:12:14 +08:00
|
|
|
orangefs_bufmap_unmap(bufmap);
|
2015-07-17 22:38:13 +08:00
|
|
|
out_free_bufmap:
|
2015-11-25 04:12:14 +08:00
|
|
|
orangefs_bufmap_free(bufmap);
|
2015-07-17 22:38:13 +08:00
|
|
|
out:
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2015-11-25 04:12:14 +08:00
|
|
|
* orangefs_bufmap_finalize()
|
2015-07-17 22:38:13 +08:00
|
|
|
*
|
|
|
|
* shuts down the mapped buffer interface and releases any resources
|
|
|
|
* associated with it
|
|
|
|
*
|
|
|
|
* no return value
|
|
|
|
*/
|
2015-11-25 04:12:14 +08:00
|
|
|
void orangefs_bufmap_finalize(void)
|
2015-07-17 22:38:13 +08:00
|
|
|
{
|
2016-02-14 10:01:21 +08:00
|
|
|
struct orangefs_bufmap *bufmap = __orangefs_bufmap;
|
|
|
|
if (!bufmap)
|
|
|
|
return;
|
2015-11-25 04:12:14 +08:00
|
|
|
gossip_debug(GOSSIP_BUFMAP_DEBUG, "orangefs_bufmap_finalize: called\n");
|
2016-02-14 10:01:21 +08:00
|
|
|
mark_killed(&rw_map);
|
|
|
|
mark_killed(&readdir_map);
|
2015-07-17 22:38:13 +08:00
|
|
|
gossip_debug(GOSSIP_BUFMAP_DEBUG,
|
2015-11-25 04:12:14 +08:00
|
|
|
"orangefs_bufmap_finalize: exiting normally\n");
|
2015-07-17 22:38:13 +08:00
|
|
|
}
|
|
|
|
|
2016-02-14 10:01:21 +08:00
|
|
|
void orangefs_bufmap_run_down(void)
|
2015-07-17 22:38:13 +08:00
|
|
|
{
|
2016-02-14 10:01:21 +08:00
|
|
|
struct orangefs_bufmap *bufmap = __orangefs_bufmap;
|
|
|
|
if (!bufmap)
|
2015-07-17 22:38:13 +08:00
|
|
|
return;
|
2016-02-14 10:01:21 +08:00
|
|
|
run_down(&rw_map);
|
|
|
|
run_down(&readdir_map);
|
|
|
|
spin_lock(&orangefs_bufmap_lock);
|
|
|
|
__orangefs_bufmap = NULL;
|
|
|
|
spin_unlock(&orangefs_bufmap_lock);
|
|
|
|
orangefs_bufmap_unmap(bufmap);
|
|
|
|
orangefs_bufmap_free(bufmap);
|
2015-07-17 22:38:13 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2015-11-25 04:12:14 +08:00
|
|
|
* orangefs_bufmap_get()
|
2015-07-17 22:38:13 +08:00
|
|
|
*
|
|
|
|
* gets a free mapped buffer descriptor, will sleep until one becomes
|
|
|
|
* available if necessary
|
|
|
|
*
|
2016-02-17 09:10:26 +08:00
|
|
|
* returns slot on success, -errno on failure
|
2015-07-17 22:38:13 +08:00
|
|
|
*/
|
2016-02-17 09:10:26 +08:00
|
|
|
int orangefs_bufmap_get(void)
|
2015-07-17 22:38:13 +08:00
|
|
|
{
|
2016-02-17 09:10:26 +08:00
|
|
|
return get(&rw_map);
|
2015-07-17 22:38:13 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2015-11-25 04:12:14 +08:00
|
|
|
* orangefs_bufmap_put()
|
2015-07-17 22:38:13 +08:00
|
|
|
*
|
|
|
|
* returns a mapped buffer descriptor to the collection
|
|
|
|
*
|
|
|
|
* no return value
|
|
|
|
*/
|
2016-02-12 10:34:52 +08:00
|
|
|
void orangefs_bufmap_put(int buffer_index)
|
2015-07-17 22:38:13 +08:00
|
|
|
{
|
2016-02-14 10:01:21 +08:00
|
|
|
put(&rw_map, buffer_index);
|
2015-07-17 22:38:13 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2016-01-05 04:05:28 +08:00
|
|
|
* orangefs_readdir_index_get()
|
2015-07-17 22:38:13 +08:00
|
|
|
*
|
|
|
|
* gets a free descriptor, will sleep until one becomes
|
|
|
|
* available if necessary.
|
|
|
|
* Although the readdir buffers are not mapped into kernel space
|
|
|
|
* we could do that at a later point of time. Regardless, these
|
|
|
|
* indices are used by the client-core.
|
|
|
|
*
|
2016-02-17 09:10:26 +08:00
|
|
|
* returns slot on success, -errno on failure
|
2015-07-17 22:38:13 +08:00
|
|
|
*/
|
2016-02-17 09:10:26 +08:00
|
|
|
int orangefs_readdir_index_get(void)
|
2015-07-17 22:38:13 +08:00
|
|
|
{
|
2016-02-17 09:10:26 +08:00
|
|
|
return get(&readdir_map);
|
2015-07-17 22:38:13 +08:00
|
|
|
}
|
|
|
|
|
2016-02-14 10:04:51 +08:00
|
|
|
void orangefs_readdir_index_put(int buffer_index)
|
2015-07-17 22:38:13 +08:00
|
|
|
{
|
2016-02-14 10:01:21 +08:00
|
|
|
put(&readdir_map, buffer_index);
|
2015-07-17 22:38:13 +08:00
|
|
|
}
|
|
|
|
|
2015-12-11 23:50:42 +08:00
|
|
|
/*
|
2018-05-12 05:11:48 +08:00
|
|
|
* we've been handed an iovec, we need to copy it to
|
2015-12-11 23:50:42 +08:00
|
|
|
* the shared memory descriptor at "buffer_index".
|
|
|
|
*/
|
2016-02-17 09:06:19 +08:00
|
|
|
int orangefs_bufmap_copy_from_iovec(struct iov_iter *iter,
|
2015-10-06 01:44:24 +08:00
|
|
|
int buffer_index,
|
|
|
|
size_t size)
|
2015-07-17 22:38:13 +08:00
|
|
|
{
|
2016-02-17 09:06:19 +08:00
|
|
|
struct orangefs_bufmap_desc *to;
|
2015-09-04 22:31:16 +08:00
|
|
|
int i;
|
2015-07-17 22:38:13 +08:00
|
|
|
|
|
|
|
gossip_debug(GOSSIP_BUFMAP_DEBUG,
|
2015-10-09 05:47:44 +08:00
|
|
|
"%s: buffer_index:%d: size:%zu:\n",
|
2015-09-04 22:31:16 +08:00
|
|
|
__func__, buffer_index, size);
|
2015-07-17 22:38:13 +08:00
|
|
|
|
2016-02-17 09:06:19 +08:00
|
|
|
to = &__orangefs_bufmap->desc_array[buffer_index];
|
2015-09-04 22:31:16 +08:00
|
|
|
for (i = 0; size; i++) {
|
2015-10-09 05:47:44 +08:00
|
|
|
struct page *page = to->page_array[i];
|
|
|
|
size_t n = size;
|
|
|
|
if (n > PAGE_SIZE)
|
|
|
|
n = PAGE_SIZE;
|
2017-04-13 15:10:18 +08:00
|
|
|
if (copy_page_from_iter(page, 0, n, iter) != n)
|
2015-10-09 05:47:44 +08:00
|
|
|
return -EFAULT;
|
|
|
|
size -= n;
|
2015-07-17 22:38:13 +08:00
|
|
|
}
|
2015-10-09 05:47:44 +08:00
|
|
|
return 0;
|
2015-07-17 22:38:13 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2015-12-11 23:50:42 +08:00
|
|
|
* we've been handed an iovec, we need to fill it from
|
|
|
|
* the shared memory descriptor at "buffer_index".
|
2015-07-17 22:38:13 +08:00
|
|
|
*/
|
2016-02-17 09:06:19 +08:00
|
|
|
int orangefs_bufmap_copy_to_iovec(struct iov_iter *iter,
|
2015-10-09 05:43:58 +08:00
|
|
|
int buffer_index,
|
|
|
|
size_t size)
|
2015-07-17 22:38:13 +08:00
|
|
|
{
|
2016-02-17 09:06:19 +08:00
|
|
|
struct orangefs_bufmap_desc *from;
|
2015-09-04 22:31:16 +08:00
|
|
|
int i;
|
2015-07-17 22:38:13 +08:00
|
|
|
|
2016-02-17 09:06:19 +08:00
|
|
|
from = &__orangefs_bufmap->desc_array[buffer_index];
|
2015-07-17 22:38:13 +08:00
|
|
|
gossip_debug(GOSSIP_BUFMAP_DEBUG,
|
2015-10-09 05:43:58 +08:00
|
|
|
"%s: buffer_index:%d: size:%zu:\n",
|
|
|
|
__func__, buffer_index, size);
|
2015-07-17 22:38:13 +08:00
|
|
|
|
|
|
|
|
2015-10-09 05:43:58 +08:00
|
|
|
for (i = 0; size; i++) {
|
|
|
|
struct page *page = from->page_array[i];
|
|
|
|
size_t n = size;
|
|
|
|
if (n > PAGE_SIZE)
|
|
|
|
n = PAGE_SIZE;
|
|
|
|
n = copy_page_to_iter(page, 0, n, iter);
|
|
|
|
if (!n)
|
|
|
|
return -EFAULT;
|
|
|
|
size -= n;
|
2015-07-17 22:38:13 +08:00
|
|
|
}
|
2015-10-09 05:43:58 +08:00
|
|
|
return 0;
|
2015-07-17 22:38:13 +08:00
|
|
|
}
|