Blame view

net/rds/page.c 5.75 KB
7875e18e0   Andy Grover   RDS: Message parsing
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
  /*
   * Copyright (c) 2006 Oracle.  All rights reserved.
   *
   * This software is available to you under a choice of one of two
   * licenses.  You may choose to be licensed under the terms of the GNU
   * General Public License (GPL) Version 2, available from the file
   * COPYING in the main directory of this source tree, or the
   * OpenIB.org BSD license below:
   *
   *     Redistribution and use in source and binary forms, with or
   *     without modification, are permitted provided that the following
   *     conditions are met:
   *
   *      - Redistributions of source code must retain the above
   *        copyright notice, this list of conditions and the following
   *        disclaimer.
   *
   *      - Redistributions in binary form must reproduce the above
   *        copyright notice, this list of conditions and the following
   *        disclaimer in the documentation and/or other materials
   *        provided with the distribution.
   *
   * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
   * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
   * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
   * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
   * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
   * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
   * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
   * SOFTWARE.
   *
   */
  #include <linux/highmem.h>
5a0e3ad6a   Tejun Heo   include cleanup: ...
34
  #include <linux/gfp.h>
80f1ff97d   Amerigo Wang   notifiers: cpu: m...
35
  #include <linux/cpu.h>
bc3b2d7fb   Paul Gortmaker   net: Add export.h...
36
  #include <linux/export.h>
7875e18e0   Andy Grover   RDS: Message parsing
37
38
39
40
41
42
43
  
  #include "rds.h"
  
  struct rds_page_remainder {
  	struct page	*r_page;
  	unsigned long	r_offset;
  };
ff51bf841   stephen hemminger   rds: make local f...
44
45
  static DEFINE_PER_CPU_SHARED_ALIGNED(struct rds_page_remainder,
  				     rds_page_remainders);
7875e18e0   Andy Grover   RDS: Message parsing
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
  
  /*
   * returns 0 on success or -errno on failure.
   *
   * We don't have to worry about flush_dcache_page() as this only works
   * with private pages.  If, say, we were to do directed receive to pinned
   * user pages we'd have to worry more about cache coherence.  (Though
   * the flush_dcache_page() in get_user_pages() would probably be enough).
   */
  int rds_page_copy_user(struct page *page, unsigned long offset,
  		       void __user *ptr, unsigned long bytes,
  		       int to_user)
  {
  	unsigned long ret;
  	void *addr;
799c10559   Linus Torvalds   De-pessimize rds_...
61
62
  	addr = kmap(page);
  	if (to_user) {
7875e18e0   Andy Grover   RDS: Message parsing
63
  		rds_stats_add(s_copy_to_user, bytes);
799c10559   Linus Torvalds   De-pessimize rds_...
64
65
  		ret = copy_to_user(ptr, addr + offset, bytes);
  	} else {
7875e18e0   Andy Grover   RDS: Message parsing
66
  		rds_stats_add(s_copy_from_user, bytes);
799c10559   Linus Torvalds   De-pessimize rds_...
67
  		ret = copy_from_user(addr + offset, ptr, bytes);
7875e18e0   Andy Grover   RDS: Message parsing
68
  	}
799c10559   Linus Torvalds   De-pessimize rds_...
69
  	kunmap(page);
7875e18e0   Andy Grover   RDS: Message parsing
70

799c10559   Linus Torvalds   De-pessimize rds_...
71
  	return ret ? -EFAULT : 0;
7875e18e0   Andy Grover   RDS: Message parsing
72
  }
616b757ae   Andy Grover   RDS: Export symbo...
73
  EXPORT_SYMBOL_GPL(rds_page_copy_user);
7875e18e0   Andy Grover   RDS: Message parsing
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
  
  /*
   * Message allocation uses this to build up regions of a message.
   *
   * @bytes - the number of bytes needed.
   * @gfp - the waiting behaviour of the allocation
   *
   * @gfp is always ored with __GFP_HIGHMEM.  Callers must be prepared to
   * kmap the pages, etc.
   *
   * If @bytes is at least a full page then this just returns a page from
   * alloc_page().
   *
   * If @bytes is a partial page then this stores the unused region of the
   * page in a per-cpu structure.  Future partial-page allocations may be
   * satisfied from that cached region.  This lets us waste less memory on
   * small allocations with minimal complexity.  It works because the transmit
   * path passes read-only page regions down to devices.  They hold a page
   * reference until they are done with the region.
   */
  int rds_page_remainder_alloc(struct scatterlist *scat, unsigned long bytes,
  			     gfp_t gfp)
  {
  	struct rds_page_remainder *rem;
  	unsigned long flags;
  	struct page *page;
  	int ret;
  
  	gfp |= __GFP_HIGHMEM;
  
  	/* jump straight to allocation if we're trying for a huge page */
  	if (bytes >= PAGE_SIZE) {
  		page = alloc_page(gfp);
8690bfa17   Andy Grover   RDS: cleanup: rem...
107
  		if (!page) {
7875e18e0   Andy Grover   RDS: Message parsing
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
  			ret = -ENOMEM;
  		} else {
  			sg_set_page(scat, page, PAGE_SIZE, 0);
  			ret = 0;
  		}
  		goto out;
  	}
  
  	rem = &per_cpu(rds_page_remainders, get_cpu());
  	local_irq_save(flags);
  
  	while (1) {
  		/* avoid a tiny region getting stuck by tossing it */
  		if (rem->r_page && bytes > (PAGE_SIZE - rem->r_offset)) {
  			rds_stats_inc(s_page_remainder_miss);
  			__free_page(rem->r_page);
  			rem->r_page = NULL;
  		}
  
  		/* hand out a fragment from the cached page */
  		if (rem->r_page && bytes <= (PAGE_SIZE - rem->r_offset)) {
  			sg_set_page(scat, rem->r_page, bytes, rem->r_offset);
  			get_page(sg_page(scat));
  
  			if (rem->r_offset != 0)
  				rds_stats_inc(s_page_remainder_hit);
  
  			rem->r_offset += bytes;
  			if (rem->r_offset == PAGE_SIZE) {
  				__free_page(rem->r_page);
  				rem->r_page = NULL;
  			}
  			ret = 0;
  			break;
  		}
  
  		/* alloc if there is nothing for us to use */
  		local_irq_restore(flags);
  		put_cpu();
  
  		page = alloc_page(gfp);
  
  		rem = &per_cpu(rds_page_remainders, get_cpu());
  		local_irq_save(flags);
8690bfa17   Andy Grover   RDS: cleanup: rem...
152
  		if (!page) {
7875e18e0   Andy Grover   RDS: Message parsing
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
  			ret = -ENOMEM;
  			break;
  		}
  
  		/* did someone race to fill the remainder before us? */
  		if (rem->r_page) {
  			__free_page(page);
  			continue;
  		}
  
  		/* otherwise install our page and loop around to alloc */
  		rem->r_page = page;
  		rem->r_offset = 0;
  	}
  
  	local_irq_restore(flags);
  	put_cpu();
  out:
  	rdsdebug("bytes %lu ret %d %p %u %u
  ", bytes, ret,
  		 ret ? NULL : sg_page(scat), ret ? 0 : scat->offset,
  		 ret ? 0 : scat->length);
  	return ret;
  }
0b088e003   Andy Grover   RDS: Use page_rem...
177
  EXPORT_SYMBOL_GPL(rds_page_remainder_alloc);
7875e18e0   Andy Grover   RDS: Message parsing
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
  
  static int rds_page_remainder_cpu_notify(struct notifier_block *self,
  					 unsigned long action, void *hcpu)
  {
  	struct rds_page_remainder *rem;
  	long cpu = (long)hcpu;
  
  	rem = &per_cpu(rds_page_remainders, cpu);
  
  	rdsdebug("cpu %ld action 0x%lx
  ", cpu, action);
  
  	switch (action) {
  	case CPU_DEAD:
  		if (rem->r_page)
  			__free_page(rem->r_page);
  		rem->r_page = NULL;
  		break;
  	}
  
  	return 0;
  }
  
  static struct notifier_block rds_page_remainder_nb = {
  	.notifier_call = rds_page_remainder_cpu_notify,
  };
  
  void rds_page_exit(void)
  {
  	int i;
  
  	for_each_possible_cpu(i)
  		rds_page_remainder_cpu_notify(&rds_page_remainder_nb,
  					      (unsigned long)CPU_DEAD,
  					      (void *)(long)i);
  }