Merge to Fedora kernel-2.6.18-1.2224_FC5 patched with stable patch-2.6.18.1-vs2.0...
[linux-2.6.git] / drivers / infiniband / hw / ipath / ipath_user_pages.c
1 /*
2  * Copyright (c) 2006 QLogic, Inc. All rights reserved.
3  * Copyright (c) 2003, 2004, 2005, 2006 PathScale, Inc. All rights reserved.
4  *
5  * This software is available to you under a choice of one of two
6  * licenses.  You may choose to be licensed under the terms of the GNU
7  * General Public License (GPL) Version 2, available from the file
8  * COPYING in the main directory of this source tree, or the
9  * OpenIB.org BSD license below:
10  *
11  *     Redistribution and use in source and binary forms, with or
12  *     without modification, are permitted provided that the following
13  *     conditions are met:
14  *
15  *      - Redistributions of source code must retain the above
16  *        copyright notice, this list of conditions and the following
17  *        disclaimer.
18  *
19  *      - Redistributions in binary form must reproduce the above
20  *        copyright notice, this list of conditions and the following
21  *        disclaimer in the documentation and/or other materials
22  *        provided with the distribution.
23  *
24  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
25  * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
26  * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
27  * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
28  * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
29  * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
30  * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
31  * SOFTWARE.
32  */
33
34 #include <linux/mm.h>
35 #include <linux/device.h>
36 #include <linux/vs_memory.h>
37
38 #include "ipath_kernel.h"
39
40 static void __ipath_release_user_pages(struct page **p, size_t num_pages,
41                                    int dirty)
42 {
43         size_t i;
44
45         for (i = 0; i < num_pages; i++) {
46                 ipath_cdbg(MM, "%lu/%lu put_page %p\n", (unsigned long) i,
47                            (unsigned long) num_pages, p[i]);
48                 if (dirty)
49                         set_page_dirty_lock(p[i]);
50                 put_page(p[i]);
51         }
52 }
53
54 /* call with current->mm->mmap_sem held */
55 static int __get_user_pages(unsigned long start_page, size_t num_pages,
56                         struct page **p, struct vm_area_struct **vma)
57 {
58         unsigned long lock_limit;
59         size_t got;
60         int ret;
61
62         lock_limit = current->signal->rlim[RLIMIT_MEMLOCK].rlim_cur >>
63                 PAGE_SHIFT;
64
65         if (num_pages > lock_limit ||
66                 !vx_vmlocked_avail(current->mm, num_pages)) {
67                 ret = -ENOMEM;
68                 goto bail;
69         }
70
71         ipath_cdbg(VERBOSE, "pin %lx pages from vaddr %lx\n",
72                    (unsigned long) num_pages, start_page);
73
74         for (got = 0; got < num_pages; got += ret) {
75                 ret = get_user_pages(current, current->mm,
76                                      start_page + got * PAGE_SIZE,
77                                      num_pages - got, 1, 1,
78                                      p + got, vma);
79                 if (ret < 0)
80                         goto bail_release;
81         }
82
83         vx_vmlocked_add(current->mm, num_pages);
84
85         ret = 0;
86         goto bail;
87
88 bail_release:
89         __ipath_release_user_pages(p, got, 0);
90 bail:
91         return ret;
92 }
93
94 /**
95  * ipath_get_user_pages - lock user pages into memory
96  * @start_page: the start page
97  * @num_pages: the number of pages
98  * @p: the output page structures
99  *
100  * This function takes a given start page (page aligned user virtual
101  * address) and pins it and the following specified number of pages.  For
102  * now, num_pages is always 1, but that will probably change at some point
103  * (because caller is doing expected sends on a single virtually contiguous
104  * buffer, so we can do all pages at once).
105  */
106 int ipath_get_user_pages(unsigned long start_page, size_t num_pages,
107                          struct page **p)
108 {
109         int ret;
110
111         down_write(&current->mm->mmap_sem);
112
113         ret = __get_user_pages(start_page, num_pages, p, NULL);
114
115         up_write(&current->mm->mmap_sem);
116
117         return ret;
118 }
119
120 /**
121  * ipath_get_user_pages_nocopy - lock a single page for I/O and mark shared
122  * @start_page: the page to lock
123  * @p: the output page structure
124  *
125  * This is similar to ipath_get_user_pages, but it's always one page, and we
126  * mark the page as locked for I/O, and shared.  This is used for the user
127  * process page that contains the destination address for the rcvhdrq tail
128  * update, so we need to have the vma. If we don't do this, the page can be
129  * taken away from us on fork, even if the child never touches it, and then
130  * the user process never sees the tail register updates.
131  */
132 int ipath_get_user_pages_nocopy(unsigned long page, struct page **p)
133 {
134         struct vm_area_struct *vma;
135         int ret;
136
137         down_write(&current->mm->mmap_sem);
138
139         ret = __get_user_pages(page, 1, p, &vma);
140
141         up_write(&current->mm->mmap_sem);
142
143         return ret;
144 }
145
146 void ipath_release_user_pages(struct page **p, size_t num_pages)
147 {
148         down_write(&current->mm->mmap_sem);
149
150         __ipath_release_user_pages(p, num_pages, 1);
151
152         vx_vmlocked_sub(current->mm, num_pages);
153
154         up_write(&current->mm->mmap_sem);
155 }
156
157 struct ipath_user_pages_work {
158         struct work_struct work;
159         struct mm_struct *mm;
160         unsigned long num_pages;
161 };
162
163 static void user_pages_account(void *ptr)
164 {
165         struct ipath_user_pages_work *work = ptr;
166
167         down_write(&work->mm->mmap_sem);
168         vx_vmlocked_sub(work->mm, work->num_pages);
169         up_write(&work->mm->mmap_sem);
170         mmput(work->mm);
171         kfree(work);
172 }
173
174 void ipath_release_user_pages_on_close(struct page **p, size_t num_pages)
175 {
176         struct ipath_user_pages_work *work;
177         struct mm_struct *mm;
178
179         __ipath_release_user_pages(p, num_pages, 1);
180
181         mm = get_task_mm(current);
182         if (!mm)
183                 goto bail;
184
185         work = kmalloc(sizeof(*work), GFP_KERNEL);
186         if (!work)
187                 goto bail_mm;
188
189         goto bail;
190
191         INIT_WORK(&work->work, user_pages_account, work);
192         work->mm = mm;
193         work->num_pages = num_pages;
194
195 bail_mm:
196         mmput(mm);
197 bail:
198         return;
199 }