VServer 1.9.2 (patch-2.6.8.1-vs1.9.2.diff)
[linux-2.6.git] / mm / shmem.c
1 /*
2  * Resizable virtual memory filesystem for Linux.
3  *
4  * Copyright (C) 2000 Linus Torvalds.
5  *               2000 Transmeta Corp.
6  *               2000-2001 Christoph Rohland
7  *               2000-2001 SAP AG
8  *               2002 Red Hat Inc.
9  * Copyright (C) 2002-2003 Hugh Dickins.
10  * Copyright (C) 2002-2003 VERITAS Software Corporation.
11  * Copyright (C) 2004 Andi Kleen, SuSE Labs
12  *
13  * This file is released under the GPL.
14  */
15
16 /*
17  * This virtual memory filesystem is heavily based on the ramfs. It
18  * extends ramfs by the ability to use swap and honor resource limits
19  * which makes it a completely usable filesystem.
20  */
21
22 #include <linux/config.h>
23 #include <linux/module.h>
24 #include <linux/init.h>
25 #include <linux/devfs_fs_kernel.h>
26 #include <linux/fs.h>
27 #include <linux/mm.h>
28 #include <linux/mman.h>
29 #include <linux/file.h>
30 #include <linux/swap.h>
31 #include <linux/pagemap.h>
32 #include <linux/string.h>
33 #include <linux/slab.h>
34 #include <linux/backing-dev.h>
35 #include <linux/shmem_fs.h>
36 #include <linux/mount.h>
37 #include <linux/writeback.h>
38 #include <linux/vfs.h>
39 #include <linux/blkdev.h>
40 #include <linux/security.h>
41 #include <linux/swapops.h>
42 #include <linux/mempolicy.h>
43 #include <linux/namei.h>
44 #include <asm/uaccess.h>
45 #include <asm/div64.h>
46 #include <asm/pgtable.h>
47
48 /* This magic number is used in glibc for posix shared memory */
49
50 #define ENTRIES_PER_PAGE (PAGE_CACHE_SIZE/sizeof(unsigned long))
51 #define ENTRIES_PER_PAGEPAGE (ENTRIES_PER_PAGE*ENTRIES_PER_PAGE)
52 #define BLOCKS_PER_PAGE  (PAGE_CACHE_SIZE/512)
53
54 #define SHMEM_MAX_INDEX  (SHMEM_NR_DIRECT + (ENTRIES_PER_PAGEPAGE/2) * (ENTRIES_PER_PAGE+1))
55 #define SHMEM_MAX_BYTES  ((unsigned long long)SHMEM_MAX_INDEX << PAGE_CACHE_SHIFT)
56
57 #define VM_ACCT(size)    (PAGE_CACHE_ALIGN(size) >> PAGE_SHIFT)
58
59 /* info->flags needs VM_flags to handle pagein/truncate races efficiently */
60 #define SHMEM_PAGEIN     VM_READ
61 #define SHMEM_TRUNCATE   VM_WRITE
62
63 /* Pretend that each entry is of this size in directory's i_size */
64 #define BOGO_DIRENT_SIZE 20
65
66 /* Keep swapped page count in private field of indirect struct page */
67 #define nr_swapped              private
68
69 /* Flag allocation requirements to shmem_getpage and shmem_swp_alloc */
70 enum sgp_type {
71         SGP_QUICK,      /* don't try more than file page cache lookup */
72         SGP_READ,       /* don't exceed i_size, don't allocate page */
73         SGP_CACHE,      /* don't exceed i_size, may allocate page */
74         SGP_WRITE,      /* may exceed i_size, may allocate page */
75 };
76
77 static int shmem_getpage(struct inode *inode, unsigned long idx,
78                          struct page **pagep, enum sgp_type sgp, int *type);
79
80 static inline struct page *shmem_dir_alloc(unsigned int gfp_mask)
81 {
82         /*
83          * The above definition of ENTRIES_PER_PAGE, and the use of
84          * BLOCKS_PER_PAGE on indirect pages, assume PAGE_CACHE_SIZE:
85          * might be reconsidered if it ever diverges from PAGE_SIZE.
86          */
87         return alloc_pages(gfp_mask, PAGE_CACHE_SHIFT-PAGE_SHIFT);
88 }
89
90 static inline void shmem_dir_free(struct page *page)
91 {
92         __free_pages(page, PAGE_CACHE_SHIFT-PAGE_SHIFT);
93 }
94
95 static struct page **shmem_dir_map(struct page *page)
96 {
97         return (struct page **)kmap_atomic(page, KM_USER0);
98 }
99
100 static inline void shmem_dir_unmap(struct page **dir)
101 {
102         kunmap_atomic(dir, KM_USER0);
103 }
104
105 static swp_entry_t *shmem_swp_map(struct page *page)
106 {
107         return (swp_entry_t *)kmap_atomic(page, KM_USER1);
108 }
109
110 static inline void shmem_swp_balance_unmap(void)
111 {
112         /*
113          * When passing a pointer to an i_direct entry, to code which
114          * also handles indirect entries and so will shmem_swp_unmap,
115          * we must arrange for the preempt count to remain in balance.
116          * What kmap_atomic of a lowmem page does depends on config
117          * and architecture, so pretend to kmap_atomic some lowmem page.
118          */
119         (void) kmap_atomic(ZERO_PAGE(0), KM_USER1);
120 }
121
122 static inline void shmem_swp_unmap(swp_entry_t *entry)
123 {
124         kunmap_atomic(entry, KM_USER1);
125 }
126
127 static inline struct shmem_sb_info *SHMEM_SB(struct super_block *sb)
128 {
129         return sb->s_fs_info;
130 }
131
132 /*
133  * shmem_file_setup pre-accounts the whole fixed size of a VM object,
134  * for shared memory and for shared anonymous (/dev/zero) mappings
135  * (unless MAP_NORESERVE and sysctl_overcommit_memory <= 1),
136  * consistent with the pre-accounting of private mappings ...
137  */
138 static inline int shmem_acct_size(unsigned long flags, loff_t size)
139 {
140         return (flags & VM_ACCOUNT)?
141                 security_vm_enough_memory(VM_ACCT(size)): 0;
142 }
143
144 static inline void shmem_unacct_size(unsigned long flags, loff_t size)
145 {
146         if (flags & VM_ACCOUNT)
147                 vm_unacct_memory(VM_ACCT(size));
148 }
149
150 /*
151  * ... whereas tmpfs objects are accounted incrementally as
152  * pages are allocated, in order to allow huge sparse files.
153  * shmem_getpage reports shmem_acct_block failure as -ENOSPC not -ENOMEM,
154  * so that a failure on a sparse tmpfs mapping will give SIGBUS not OOM.
155  */
156 static inline int shmem_acct_block(unsigned long flags)
157 {
158         return (flags & VM_ACCOUNT)?
159                 0: security_vm_enough_memory(VM_ACCT(PAGE_CACHE_SIZE));
160 }
161
162 static inline void shmem_unacct_blocks(unsigned long flags, long pages)
163 {
164         if (!(flags & VM_ACCOUNT))
165                 vm_unacct_memory(pages * VM_ACCT(PAGE_CACHE_SIZE));
166 }
167
168 static struct super_operations shmem_ops;
169 static struct address_space_operations shmem_aops;
170 static struct file_operations shmem_file_operations;
171 static struct inode_operations shmem_inode_operations;
172 static struct inode_operations shmem_dir_inode_operations;
173 static struct vm_operations_struct shmem_vm_ops;
174
175 static struct backing_dev_info shmem_backing_dev_info = {
176         .ra_pages       = 0,    /* No readahead */
177         .memory_backed  = 1,    /* Does not contribute to dirty memory */
178         .unplug_io_fn = default_unplug_io_fn,
179 };
180
181 LIST_HEAD(shmem_inodes);
182 static spinlock_t shmem_ilock = SPIN_LOCK_UNLOCKED;
183
184 static void shmem_free_block(struct inode *inode)
185 {
186         struct shmem_sb_info *sbinfo = SHMEM_SB(inode->i_sb);
187         spin_lock(&sbinfo->stat_lock);
188         sbinfo->free_blocks++;
189         inode->i_blocks -= BLOCKS_PER_PAGE;
190         spin_unlock(&sbinfo->stat_lock);
191 }
192
193 /*
194  * shmem_recalc_inode - recalculate the size of an inode
195  *
196  * @inode: inode to recalc
197  *
198  * We have to calculate the free blocks since the mm can drop
199  * undirtied hole pages behind our back.
200  *
201  * But normally   info->alloced == inode->i_mapping->nrpages + info->swapped
202  * So mm freed is info->alloced - (inode->i_mapping->nrpages + info->swapped)
203  *
204  * It has to be called with the spinlock held.
205  */
206 static void shmem_recalc_inode(struct inode *inode)
207 {
208         struct shmem_inode_info *info = SHMEM_I(inode);
209         long freed;
210
211         freed = info->alloced - info->swapped - inode->i_mapping->nrpages;
212         if (freed > 0) {
213                 struct shmem_sb_info *sbinfo = SHMEM_SB(inode->i_sb);
214                 info->alloced -= freed;
215                 spin_lock(&sbinfo->stat_lock);
216                 sbinfo->free_blocks += freed;
217                 inode->i_blocks -= freed*BLOCKS_PER_PAGE;
218                 spin_unlock(&sbinfo->stat_lock);
219                 shmem_unacct_blocks(info->flags, freed);
220         }
221 }
222
223 /*
224  * shmem_swp_entry - find the swap vector position in the info structure
225  *
226  * @info:  info structure for the inode
227  * @index: index of the page to find
228  * @page:  optional page to add to the structure. Has to be preset to
229  *         all zeros
230  *
231  * If there is no space allocated yet it will return NULL when
232  * page is NULL, else it will use the page for the needed block,
233  * setting it to NULL on return to indicate that it has been used.
234  *
235  * The swap vector is organized the following way:
236  *
237  * There are SHMEM_NR_DIRECT entries directly stored in the
238  * shmem_inode_info structure. So small files do not need an addional
239  * allocation.
240  *
241  * For pages with index > SHMEM_NR_DIRECT there is the pointer
242  * i_indirect which points to a page which holds in the first half
243  * doubly indirect blocks, in the second half triple indirect blocks:
244  *
245  * For an artificial ENTRIES_PER_PAGE = 4 this would lead to the
246  * following layout (for SHMEM_NR_DIRECT == 16):
247  *
248  * i_indirect -> dir --> 16-19
249  *            |      +-> 20-23
250  *            |
251  *            +-->dir2 --> 24-27
252  *            |        +-> 28-31
253  *            |        +-> 32-35
254  *            |        +-> 36-39
255  *            |
256  *            +-->dir3 --> 40-43
257  *                     +-> 44-47
258  *                     +-> 48-51
259  *                     +-> 52-55
260  */
261 static swp_entry_t *shmem_swp_entry(struct shmem_inode_info *info, unsigned long index, struct page **page)
262 {
263         unsigned long offset;
264         struct page **dir;
265         struct page *subdir;
266
267         if (index < SHMEM_NR_DIRECT) {
268                 shmem_swp_balance_unmap();
269                 return info->i_direct+index;
270         }
271         if (!info->i_indirect) {
272                 if (page) {
273                         info->i_indirect = *page;
274                         *page = NULL;
275                 }
276                 return NULL;                    /* need another page */
277         }
278
279         index -= SHMEM_NR_DIRECT;
280         offset = index % ENTRIES_PER_PAGE;
281         index /= ENTRIES_PER_PAGE;
282         dir = shmem_dir_map(info->i_indirect);
283
284         if (index >= ENTRIES_PER_PAGE/2) {
285                 index -= ENTRIES_PER_PAGE/2;
286                 dir += ENTRIES_PER_PAGE/2 + index/ENTRIES_PER_PAGE;
287                 index %= ENTRIES_PER_PAGE;
288                 subdir = *dir;
289                 if (!subdir) {
290                         if (page) {
291                                 *dir = *page;
292                                 *page = NULL;
293                         }
294                         shmem_dir_unmap(dir);
295                         return NULL;            /* need another page */
296                 }
297                 shmem_dir_unmap(dir);
298                 dir = shmem_dir_map(subdir);
299         }
300
301         dir += index;
302         subdir = *dir;
303         if (!subdir) {
304                 if (!page || !(subdir = *page)) {
305                         shmem_dir_unmap(dir);
306                         return NULL;            /* need a page */
307                 }
308                 *dir = subdir;
309                 *page = NULL;
310         }
311         shmem_dir_unmap(dir);
312         return shmem_swp_map(subdir) + offset;
313 }
314
315 static void shmem_swp_set(struct shmem_inode_info *info, swp_entry_t *entry, unsigned long value)
316 {
317         long incdec = value? 1: -1;
318
319         entry->val = value;
320         info->swapped += incdec;
321         if ((unsigned long)(entry - info->i_direct) >= SHMEM_NR_DIRECT)
322                 kmap_atomic_to_page(entry)->nr_swapped += incdec;
323 }
324
325 /*
326  * shmem_swp_alloc - get the position of the swap entry for the page.
327  *                   If it does not exist allocate the entry.
328  *
329  * @info:       info structure for the inode
330  * @index:      index of the page to find
331  * @sgp:        check and recheck i_size? skip allocation?
332  */
333 static swp_entry_t *shmem_swp_alloc(struct shmem_inode_info *info, unsigned long index, enum sgp_type sgp)
334 {
335         struct inode *inode = &info->vfs_inode;
336         struct shmem_sb_info *sbinfo = SHMEM_SB(inode->i_sb);
337         struct page *page = NULL;
338         swp_entry_t *entry;
339
340         if (sgp != SGP_WRITE &&
341             ((loff_t) index << PAGE_CACHE_SHIFT) >= i_size_read(inode))
342                 return ERR_PTR(-EINVAL);
343
344         while (!(entry = shmem_swp_entry(info, index, &page))) {
345                 if (sgp == SGP_READ)
346                         return shmem_swp_map(ZERO_PAGE(0));
347                 /*
348                  * Test free_blocks against 1 not 0, since we have 1 data
349                  * page (and perhaps indirect index pages) yet to allocate:
350                  * a waste to allocate index if we cannot allocate data.
351                  */
352                 spin_lock(&sbinfo->stat_lock);
353                 if (sbinfo->free_blocks <= 1) {
354                         spin_unlock(&sbinfo->stat_lock);
355                         return ERR_PTR(-ENOSPC);
356                 }
357                 sbinfo->free_blocks--;
358                 inode->i_blocks += BLOCKS_PER_PAGE;
359                 spin_unlock(&sbinfo->stat_lock);
360
361                 spin_unlock(&info->lock);
362                 page = shmem_dir_alloc(mapping_gfp_mask(inode->i_mapping));
363                 if (page) {
364                         clear_highpage(page);
365                         page->nr_swapped = 0;
366                 }
367                 spin_lock(&info->lock);
368
369                 if (!page) {
370                         shmem_free_block(inode);
371                         return ERR_PTR(-ENOMEM);
372                 }
373                 if (sgp != SGP_WRITE &&
374                     ((loff_t) index << PAGE_CACHE_SHIFT) >= i_size_read(inode)) {
375                         entry = ERR_PTR(-EINVAL);
376                         break;
377                 }
378                 if (info->next_index <= index)
379                         info->next_index = index + 1;
380         }
381         if (page) {
382                 /* another task gave its page, or truncated the file */
383                 shmem_free_block(inode);
384                 shmem_dir_free(page);
385         }
386         if (info->next_index <= index && !IS_ERR(entry))
387                 info->next_index = index + 1;
388         return entry;
389 }
390
391 /*
392  * shmem_free_swp - free some swap entries in a directory
393  *
394  * @dir:   pointer to the directory
395  * @edir:  pointer after last entry of the directory
396  */
397 static int shmem_free_swp(swp_entry_t *dir, swp_entry_t *edir)
398 {
399         swp_entry_t *ptr;
400         int freed = 0;
401
402         for (ptr = dir; ptr < edir; ptr++) {
403                 if (ptr->val) {
404                         free_swap_and_cache(*ptr);
405                         *ptr = (swp_entry_t){0};
406                         freed++;
407                 }
408         }
409         return freed;
410 }
411
412 static void shmem_truncate(struct inode *inode)
413 {
414         struct shmem_inode_info *info = SHMEM_I(inode);
415         unsigned long idx;
416         unsigned long size;
417         unsigned long limit;
418         unsigned long stage;
419         struct page **dir;
420         struct page *subdir;
421         struct page *empty;
422         swp_entry_t *ptr;
423         int offset;
424         int freed;
425
426         inode->i_ctime = inode->i_mtime = CURRENT_TIME;
427         idx = (inode->i_size + PAGE_CACHE_SIZE - 1) >> PAGE_CACHE_SHIFT;
428         if (idx >= info->next_index)
429                 return;
430
431         spin_lock(&info->lock);
432         info->flags |= SHMEM_TRUNCATE;
433         limit = info->next_index;
434         info->next_index = idx;
435         if (info->swapped && idx < SHMEM_NR_DIRECT) {
436                 ptr = info->i_direct;
437                 size = limit;
438                 if (size > SHMEM_NR_DIRECT)
439                         size = SHMEM_NR_DIRECT;
440                 info->swapped -= shmem_free_swp(ptr+idx, ptr+size);
441         }
442         if (!info->i_indirect)
443                 goto done2;
444
445         BUG_ON(limit <= SHMEM_NR_DIRECT);
446         limit -= SHMEM_NR_DIRECT;
447         idx = (idx > SHMEM_NR_DIRECT)? (idx - SHMEM_NR_DIRECT): 0;
448         offset = idx % ENTRIES_PER_PAGE;
449         idx -= offset;
450
451         empty = NULL;
452         dir = shmem_dir_map(info->i_indirect);
453         stage = ENTRIES_PER_PAGEPAGE/2;
454         if (idx < ENTRIES_PER_PAGEPAGE/2)
455                 dir += idx/ENTRIES_PER_PAGE;
456         else {
457                 dir += ENTRIES_PER_PAGE/2;
458                 dir += (idx - ENTRIES_PER_PAGEPAGE/2)/ENTRIES_PER_PAGEPAGE;
459                 while (stage <= idx)
460                         stage += ENTRIES_PER_PAGEPAGE;
461                 if (*dir) {
462                         subdir = *dir;
463                         size = ((idx - ENTRIES_PER_PAGEPAGE/2) %
464                                 ENTRIES_PER_PAGEPAGE) / ENTRIES_PER_PAGE;
465                         if (!size && !offset) {
466                                 empty = subdir;
467                                 *dir = NULL;
468                         }
469                         shmem_dir_unmap(dir);
470                         dir = shmem_dir_map(subdir) + size;
471                 } else {
472                         offset = 0;
473                         idx = stage;
474                 }
475         }
476
477         for (; idx < limit; idx += ENTRIES_PER_PAGE, dir++) {
478                 if (unlikely(idx == stage)) {
479                         shmem_dir_unmap(dir-1);
480                         dir = shmem_dir_map(info->i_indirect) +
481                             ENTRIES_PER_PAGE/2 + idx/ENTRIES_PER_PAGEPAGE;
482                         while (!*dir) {
483                                 dir++;
484                                 idx += ENTRIES_PER_PAGEPAGE;
485                                 if (idx >= limit)
486                                         goto done1;
487                         }
488                         stage = idx + ENTRIES_PER_PAGEPAGE;
489                         subdir = *dir;
490                         *dir = NULL;
491                         shmem_dir_unmap(dir);
492                         if (empty) {
493                                 shmem_dir_free(empty);
494                                 shmem_free_block(inode);
495                         }
496                         empty = subdir;
497                         cond_resched_lock(&info->lock);
498                         dir = shmem_dir_map(subdir);
499                 }
500                 subdir = *dir;
501                 if (subdir && subdir->nr_swapped) {
502                         ptr = shmem_swp_map(subdir);
503                         size = limit - idx;
504                         if (size > ENTRIES_PER_PAGE)
505                                 size = ENTRIES_PER_PAGE;
506                         freed = shmem_free_swp(ptr+offset, ptr+size);
507                         shmem_swp_unmap(ptr);
508                         info->swapped -= freed;
509                         subdir->nr_swapped -= freed;
510                         BUG_ON(subdir->nr_swapped > offset);
511                 }
512                 if (offset)
513                         offset = 0;
514                 else if (subdir) {
515                         *dir = NULL;
516                         shmem_dir_free(subdir);
517                         shmem_free_block(inode);
518                 }
519         }
520 done1:
521         shmem_dir_unmap(dir-1);
522         if (empty) {
523                 shmem_dir_free(empty);
524                 shmem_free_block(inode);
525         }
526         if (info->next_index <= SHMEM_NR_DIRECT) {
527                 shmem_dir_free(info->i_indirect);
528                 info->i_indirect = NULL;
529                 shmem_free_block(inode);
530         }
531 done2:
532         BUG_ON(info->swapped > info->next_index);
533         if (inode->i_mapping->nrpages && (info->flags & SHMEM_PAGEIN)) {
534                 /*
535                  * Call truncate_inode_pages again: racing shmem_unuse_inode
536                  * may have swizzled a page in from swap since vmtruncate or
537                  * generic_delete_inode did it, before we lowered next_index.
538                  * Also, though shmem_getpage checks i_size before adding to
539                  * cache, no recheck after: so fix the narrow window there too.
540                  */
541                 spin_unlock(&info->lock);
542                 truncate_inode_pages(inode->i_mapping, inode->i_size);
543                 spin_lock(&info->lock);
544         }
545         info->flags &= ~SHMEM_TRUNCATE;
546         shmem_recalc_inode(inode);
547         spin_unlock(&info->lock);
548 }
549
550 static int shmem_notify_change(struct dentry *dentry, struct iattr *attr)
551 {
552         struct inode *inode = dentry->d_inode;
553         struct page *page = NULL;
554         int error;
555
556         if (attr->ia_valid & ATTR_SIZE) {
557                 if (attr->ia_size < inode->i_size) {
558                         /*
559                          * If truncating down to a partial page, then
560                          * if that page is already allocated, hold it
561                          * in memory until the truncation is over, so
562                          * truncate_partial_page cannnot miss it were
563                          * it assigned to swap.
564                          */
565                         if (attr->ia_size & (PAGE_CACHE_SIZE-1)) {
566                                 (void) shmem_getpage(inode,
567                                         attr->ia_size>>PAGE_CACHE_SHIFT,
568                                                 &page, SGP_READ, NULL);
569                         }
570                         /*
571                          * Reset SHMEM_PAGEIN flag so that shmem_truncate can
572                          * detect if any pages might have been added to cache
573                          * after truncate_inode_pages.  But we needn't bother
574                          * if it's being fully truncated to zero-length: the
575                          * nrpages check is efficient enough in that case.
576                          */
577                         if (attr->ia_size) {
578                                 struct shmem_inode_info *info = SHMEM_I(inode);
579                                 spin_lock(&info->lock);
580                                 info->flags &= ~SHMEM_PAGEIN;
581                                 spin_unlock(&info->lock);
582                         }
583                 }
584         }
585
586         error = inode_change_ok(inode, attr);
587         if (!error)
588                 error = inode_setattr(inode, attr);
589         if (page)
590                 page_cache_release(page);
591         return error;
592 }
593
594 static void shmem_delete_inode(struct inode *inode)
595 {
596         struct shmem_sb_info *sbinfo = SHMEM_SB(inode->i_sb);
597         struct shmem_inode_info *info = SHMEM_I(inode);
598
599         if (inode->i_op->truncate == shmem_truncate) {
600                 spin_lock(&shmem_ilock);
601                 list_del(&info->list);
602                 spin_unlock(&shmem_ilock);
603                 shmem_unacct_size(info->flags, inode->i_size);
604                 inode->i_size = 0;
605                 shmem_truncate(inode);
606         }
607         BUG_ON(inode->i_blocks);
608         spin_lock(&sbinfo->stat_lock);
609         sbinfo->free_inodes++;
610         spin_unlock(&sbinfo->stat_lock);
611         clear_inode(inode);
612 }
613
614 static inline int shmem_find_swp(swp_entry_t entry, swp_entry_t *dir, swp_entry_t *edir)
615 {
616         swp_entry_t *ptr;
617
618         for (ptr = dir; ptr < edir; ptr++) {
619                 if (ptr->val == entry.val)
620                         return ptr - dir;
621         }
622         return -1;
623 }
624
625 static int shmem_unuse_inode(struct shmem_inode_info *info, swp_entry_t entry, struct page *page)
626 {
627         struct inode *inode;
628         unsigned long idx;
629         unsigned long size;
630         unsigned long limit;
631         unsigned long stage;
632         struct page **dir;
633         struct page *subdir;
634         swp_entry_t *ptr;
635         int offset;
636
637         idx = 0;
638         ptr = info->i_direct;
639         spin_lock(&info->lock);
640         limit = info->next_index;
641         size = limit;
642         if (size > SHMEM_NR_DIRECT)
643                 size = SHMEM_NR_DIRECT;
644         offset = shmem_find_swp(entry, ptr, ptr+size);
645         if (offset >= 0) {
646                 shmem_swp_balance_unmap();
647                 goto found;
648         }
649         if (!info->i_indirect)
650                 goto lost2;
651         /* we might be racing with shmem_truncate */
652         if (limit <= SHMEM_NR_DIRECT)
653                 goto lost2;
654
655         dir = shmem_dir_map(info->i_indirect);
656         stage = SHMEM_NR_DIRECT + ENTRIES_PER_PAGEPAGE/2;
657
658         for (idx = SHMEM_NR_DIRECT; idx < limit; idx += ENTRIES_PER_PAGE, dir++) {
659                 if (unlikely(idx == stage)) {
660                         shmem_dir_unmap(dir-1);
661                         dir = shmem_dir_map(info->i_indirect) +
662                             ENTRIES_PER_PAGE/2 + idx/ENTRIES_PER_PAGEPAGE;
663                         while (!*dir) {
664                                 dir++;
665                                 idx += ENTRIES_PER_PAGEPAGE;
666                                 if (idx >= limit)
667                                         goto lost1;
668                         }
669                         stage = idx + ENTRIES_PER_PAGEPAGE;
670                         subdir = *dir;
671                         shmem_dir_unmap(dir);
672                         dir = shmem_dir_map(subdir);
673                 }
674                 subdir = *dir;
675                 if (subdir && subdir->nr_swapped) {
676                         ptr = shmem_swp_map(subdir);
677                         size = limit - idx;
678                         if (size > ENTRIES_PER_PAGE)
679                                 size = ENTRIES_PER_PAGE;
680                         offset = shmem_find_swp(entry, ptr, ptr+size);
681                         if (offset >= 0) {
682                                 shmem_dir_unmap(dir);
683                                 goto found;
684                         }
685                         shmem_swp_unmap(ptr);
686                 }
687         }
688 lost1:
689         shmem_dir_unmap(dir-1);
690 lost2:
691         spin_unlock(&info->lock);
692         return 0;
693 found:
694         idx += offset;
695         inode = &info->vfs_inode;
696         if (move_from_swap_cache(page, idx, inode->i_mapping) == 0) {
697                 info->flags |= SHMEM_PAGEIN;
698                 shmem_swp_set(info, ptr + offset, 0);
699         }
700         shmem_swp_unmap(ptr);
701         spin_unlock(&info->lock);
702         /*
703          * Decrement swap count even when the entry is left behind:
704          * try_to_unuse will skip over mms, then reincrement count.
705          */
706         swap_free(entry);
707         return 1;
708 }
709
710 /*
711  * shmem_unuse() search for an eventually swapped out shmem page.
712  */
713 int shmem_unuse(swp_entry_t entry, struct page *page)
714 {
715         struct list_head *p;
716         struct shmem_inode_info *info;
717         int found = 0;
718
719         spin_lock(&shmem_ilock);
720         list_for_each(p, &shmem_inodes) {
721                 info = list_entry(p, struct shmem_inode_info, list);
722
723                 if (info->swapped && shmem_unuse_inode(info, entry, page)) {
724                         /* move head to start search for next from here */
725                         list_move_tail(&shmem_inodes, &info->list);
726                         found = 1;
727                         break;
728                 }
729         }
730         spin_unlock(&shmem_ilock);
731         return found;
732 }
733
734 /*
735  * Move the page from the page cache to the swap cache.
736  */
737 static int shmem_writepage(struct page *page, struct writeback_control *wbc)
738 {
739         struct shmem_inode_info *info;
740         swp_entry_t *entry, swap;
741         struct address_space *mapping;
742         unsigned long index;
743         struct inode *inode;
744
745         BUG_ON(!PageLocked(page));
746         BUG_ON(page_mapped(page));
747
748         mapping = page->mapping;
749         index = page->index;
750         inode = mapping->host;
751         info = SHMEM_I(inode);
752         if (info->flags & VM_LOCKED)
753                 goto redirty;
754         swap = get_swap_page();
755         if (!swap.val)
756                 goto redirty;
757
758         spin_lock(&info->lock);
759         shmem_recalc_inode(inode);
760         if (index >= info->next_index) {
761                 BUG_ON(!(info->flags & SHMEM_TRUNCATE));
762                 goto unlock;
763         }
764         entry = shmem_swp_entry(info, index, NULL);
765         BUG_ON(!entry);
766         BUG_ON(entry->val);
767
768         if (move_to_swap_cache(page, swap) == 0) {
769                 shmem_swp_set(info, entry, swap.val);
770                 shmem_swp_unmap(entry);
771                 spin_unlock(&info->lock);
772                 unlock_page(page);
773                 return 0;
774         }
775
776         shmem_swp_unmap(entry);
777 unlock:
778         spin_unlock(&info->lock);
779         swap_free(swap);
780 redirty:
781         set_page_dirty(page);
782         return WRITEPAGE_ACTIVATE;      /* Return with the page locked */
783 }
784
785 #ifdef CONFIG_NUMA
786 static struct page *shmem_swapin_async(struct shared_policy *p,
787                                        swp_entry_t entry, unsigned long idx)
788 {
789         struct page *page;
790         struct vm_area_struct pvma;
791
792         /* Create a pseudo vma that just contains the policy */
793         memset(&pvma, 0, sizeof(struct vm_area_struct));
794         pvma.vm_end = PAGE_SIZE;
795         pvma.vm_pgoff = idx;
796         pvma.vm_policy = mpol_shared_policy_lookup(p, idx);
797         page = read_swap_cache_async(entry, &pvma, 0);
798         mpol_free(pvma.vm_policy);
799         return page;
800 }
801
802 struct page *shmem_swapin(struct shmem_inode_info *info, swp_entry_t entry,
803                           unsigned long idx)
804 {
805         struct shared_policy *p = &info->policy;
806         int i, num;
807         struct page *page;
808         unsigned long offset;
809
810         num = valid_swaphandles(entry, &offset);
811         for (i = 0; i < num; offset++, i++) {
812                 page = shmem_swapin_async(p,
813                                 swp_entry(swp_type(entry), offset), idx);
814                 if (!page)
815                         break;
816                 page_cache_release(page);
817         }
818         lru_add_drain();        /* Push any new pages onto the LRU now */
819         return shmem_swapin_async(p, entry, idx);
820 }
821
822 static struct page *
823 shmem_alloc_page(unsigned long gfp, struct shmem_inode_info *info,
824                  unsigned long idx)
825 {
826         struct vm_area_struct pvma;
827         struct page *page;
828
829         memset(&pvma, 0, sizeof(struct vm_area_struct));
830         pvma.vm_policy = mpol_shared_policy_lookup(&info->policy, idx);
831         pvma.vm_pgoff = idx;
832         pvma.vm_end = PAGE_SIZE;
833         page = alloc_page_vma(gfp, &pvma, 0);
834         mpol_free(pvma.vm_policy);
835         return page;
836 }
837 #else
838 static inline struct page *
839 shmem_swapin(struct shmem_inode_info *info,swp_entry_t entry,unsigned long idx)
840 {
841         swapin_readahead(entry, 0, NULL);
842         return read_swap_cache_async(entry, NULL, 0);
843 }
844
845 static inline struct page *
846 shmem_alloc_page(unsigned long gfp,struct shmem_inode_info *info,
847                                  unsigned long idx)
848 {
849         return alloc_page(gfp);
850 }
851 #endif
852
853 /*
854  * shmem_getpage - either get the page from swap or allocate a new one
855  *
856  * If we allocate a new one we do not mark it dirty. That's up to the
857  * vm. If we swap it in we mark it dirty since we also free the swap
858  * entry since a page cannot live in both the swap and page cache
859  */
860 static int shmem_getpage(struct inode *inode, unsigned long idx,
861                         struct page **pagep, enum sgp_type sgp, int *type)
862 {
863         struct address_space *mapping = inode->i_mapping;
864         struct shmem_inode_info *info = SHMEM_I(inode);
865         struct shmem_sb_info *sbinfo;
866         struct page *filepage = *pagep;
867         struct page *swappage;
868         swp_entry_t *entry;
869         swp_entry_t swap;
870         int error, majmin = VM_FAULT_MINOR;
871
872         if (idx >= SHMEM_MAX_INDEX)
873                 return -EFBIG;
874         /*
875          * Normally, filepage is NULL on entry, and either found
876          * uptodate immediately, or allocated and zeroed, or read
877          * in under swappage, which is then assigned to filepage.
878          * But shmem_prepare_write passes in a locked filepage,
879          * which may be found not uptodate by other callers too,
880          * and may need to be copied from the swappage read in.
881          */
882 repeat:
883         if (!filepage)
884                 filepage = find_lock_page(mapping, idx);
885         if (filepage && PageUptodate(filepage))
886                 goto done;
887         error = 0;
888         if (sgp == SGP_QUICK)
889                 goto failed;
890
891         spin_lock(&info->lock);
892         shmem_recalc_inode(inode);
893         entry = shmem_swp_alloc(info, idx, sgp);
894         if (IS_ERR(entry)) {
895                 spin_unlock(&info->lock);
896                 error = PTR_ERR(entry);
897                 goto failed;
898         }
899         swap = *entry;
900
901         if (swap.val) {
902                 /* Look it up and read it in.. */
903                 swappage = lookup_swap_cache(swap);
904                 if (!swappage) {
905                         shmem_swp_unmap(entry);
906                         spin_unlock(&info->lock);
907                         /* here we actually do the io */
908                         if (majmin == VM_FAULT_MINOR && type)
909                                 inc_page_state(pgmajfault);
910                         majmin = VM_FAULT_MAJOR;
911                         swappage = shmem_swapin(info, swap, idx);
912                         if (!swappage) {
913                                 spin_lock(&info->lock);
914                                 entry = shmem_swp_alloc(info, idx, sgp);
915                                 if (IS_ERR(entry))
916                                         error = PTR_ERR(entry);
917                                 else {
918                                         if (entry->val == swap.val)
919                                                 error = -ENOMEM;
920                                         shmem_swp_unmap(entry);
921                                 }
922                                 spin_unlock(&info->lock);
923                                 if (error)
924                                         goto failed;
925                                 goto repeat;
926                         }
927                         wait_on_page_locked(swappage);
928                         page_cache_release(swappage);
929                         goto repeat;
930                 }
931
932                 /* We have to do this with page locked to prevent races */
933                 if (TestSetPageLocked(swappage)) {
934                         shmem_swp_unmap(entry);
935                         spin_unlock(&info->lock);
936                         wait_on_page_locked(swappage);
937                         page_cache_release(swappage);
938                         goto repeat;
939                 }
940                 if (PageWriteback(swappage)) {
941                         shmem_swp_unmap(entry);
942                         spin_unlock(&info->lock);
943                         wait_on_page_writeback(swappage);
944                         unlock_page(swappage);
945                         page_cache_release(swappage);
946                         goto repeat;
947                 }
948                 if (!PageUptodate(swappage)) {
949                         shmem_swp_unmap(entry);
950                         spin_unlock(&info->lock);
951                         unlock_page(swappage);
952                         page_cache_release(swappage);
953                         error = -EIO;
954                         goto failed;
955                 }
956
957                 if (filepage) {
958                         shmem_swp_set(info, entry, 0);
959                         shmem_swp_unmap(entry);
960                         delete_from_swap_cache(swappage);
961                         spin_unlock(&info->lock);
962                         copy_highpage(filepage, swappage);
963                         unlock_page(swappage);
964                         page_cache_release(swappage);
965                         flush_dcache_page(filepage);
966                         SetPageUptodate(filepage);
967                         set_page_dirty(filepage);
968                         swap_free(swap);
969                 } else if (!(error = move_from_swap_cache(
970                                 swappage, idx, mapping))) {
971                         info->flags |= SHMEM_PAGEIN;
972                         shmem_swp_set(info, entry, 0);
973                         shmem_swp_unmap(entry);
974                         spin_unlock(&info->lock);
975                         filepage = swappage;
976                         swap_free(swap);
977                 } else {
978                         shmem_swp_unmap(entry);
979                         spin_unlock(&info->lock);
980                         unlock_page(swappage);
981                         page_cache_release(swappage);
982                         if (error == -ENOMEM) {
983                                 /* let kswapd refresh zone for GFP_ATOMICs */
984                                 blk_congestion_wait(WRITE, HZ/50);
985                         }
986                         goto repeat;
987                 }
988         } else if (sgp == SGP_READ && !filepage) {
989                 shmem_swp_unmap(entry);
990                 filepage = find_get_page(mapping, idx);
991                 if (filepage &&
992                     (!PageUptodate(filepage) || TestSetPageLocked(filepage))) {
993                         spin_unlock(&info->lock);
994                         wait_on_page_locked(filepage);
995                         page_cache_release(filepage);
996                         filepage = NULL;
997                         goto repeat;
998                 }
999                 spin_unlock(&info->lock);
1000         } else {
1001                 shmem_swp_unmap(entry);
1002                 sbinfo = SHMEM_SB(inode->i_sb);
1003                 spin_lock(&sbinfo->stat_lock);
1004                 if (sbinfo->free_blocks == 0 || shmem_acct_block(info->flags)) {
1005                         spin_unlock(&sbinfo->stat_lock);
1006                         spin_unlock(&info->lock);
1007                         error = -ENOSPC;
1008                         goto failed;
1009                 }
1010                 sbinfo->free_blocks--;
1011                 inode->i_blocks += BLOCKS_PER_PAGE;
1012                 spin_unlock(&sbinfo->stat_lock);
1013
1014                 if (!filepage) {
1015                         spin_unlock(&info->lock);
1016                         filepage = shmem_alloc_page(mapping_gfp_mask(mapping),
1017                                                     info,
1018                                                     idx);
1019                         if (!filepage) {
1020                                 shmem_unacct_blocks(info->flags, 1);
1021                                 shmem_free_block(inode);
1022                                 error = -ENOMEM;
1023                                 goto failed;
1024                         }
1025
1026                         spin_lock(&info->lock);
1027                         entry = shmem_swp_alloc(info, idx, sgp);
1028                         if (IS_ERR(entry))
1029                                 error = PTR_ERR(entry);
1030                         else {
1031                                 swap = *entry;
1032                                 shmem_swp_unmap(entry);
1033                         }
1034                         if (error || swap.val || 0 != add_to_page_cache_lru(
1035                                         filepage, mapping, idx, GFP_ATOMIC)) {
1036                                 spin_unlock(&info->lock);
1037                                 page_cache_release(filepage);
1038                                 shmem_unacct_blocks(info->flags, 1);
1039                                 shmem_free_block(inode);
1040                                 filepage = NULL;
1041                                 if (error)
1042                                         goto failed;
1043                                 goto repeat;
1044                         }
1045                         info->flags |= SHMEM_PAGEIN;
1046                 }
1047
1048                 info->alloced++;
1049                 spin_unlock(&info->lock);
1050                 clear_highpage(filepage);
1051                 flush_dcache_page(filepage);
1052                 SetPageUptodate(filepage);
1053         }
1054 done:
1055         if (!*pagep) {
1056                 if (filepage) {
1057                         unlock_page(filepage);
1058                         *pagep = filepage;
1059                 } else
1060                         *pagep = ZERO_PAGE(0);
1061         }
1062         if (type)
1063                 *type = majmin;
1064         return 0;
1065
1066 failed:
1067         if (*pagep != filepage) {
1068                 unlock_page(filepage);
1069                 page_cache_release(filepage);
1070         }
1071         return error;
1072 }
1073
1074 struct page *shmem_nopage(struct vm_area_struct *vma, unsigned long address, int *type)
1075 {
1076         struct inode *inode = vma->vm_file->f_dentry->d_inode;
1077         struct page *page = NULL;
1078         unsigned long idx;
1079         int error;
1080
1081         idx = (address - vma->vm_start) >> PAGE_SHIFT;
1082         idx += vma->vm_pgoff;
1083         idx >>= PAGE_CACHE_SHIFT - PAGE_SHIFT;
1084
1085         error = shmem_getpage(inode, idx, &page, SGP_CACHE, type);
1086         if (error)
1087                 return (error == -ENOMEM)? NOPAGE_OOM: NOPAGE_SIGBUS;
1088
1089         mark_page_accessed(page);
1090         return page;
1091 }
1092
1093 static int shmem_populate(struct vm_area_struct *vma,
1094         unsigned long addr, unsigned long len,
1095         pgprot_t prot, unsigned long pgoff, int nonblock)
1096 {
1097         struct inode *inode = vma->vm_file->f_dentry->d_inode;
1098         struct mm_struct *mm = vma->vm_mm;
1099         enum sgp_type sgp = nonblock? SGP_QUICK: SGP_CACHE;
1100         unsigned long size;
1101
1102         size = (i_size_read(inode) + PAGE_SIZE - 1) >> PAGE_SHIFT;
1103         if (pgoff >= size || pgoff + (len >> PAGE_SHIFT) > size)
1104                 return -EINVAL;
1105
1106         while ((long) len > 0) {
1107                 struct page *page = NULL;
1108                 int err;
1109                 /*
1110                  * Will need changing if PAGE_CACHE_SIZE != PAGE_SIZE
1111                  */
1112                 err = shmem_getpage(inode, pgoff, &page, sgp, NULL);
1113                 if (err)
1114                         return err;
1115                 if (page) {
1116                         mark_page_accessed(page);
1117                         err = install_page(mm, vma, addr, page, prot);
1118                         if (err) {
1119                                 page_cache_release(page);
1120                                 return err;
1121                         }
1122                 } else if (nonblock) {
1123                         err = install_file_pte(mm, vma, addr, pgoff, prot);
1124                         if (err)
1125                                 return err;
1126                 }
1127
1128                 len -= PAGE_SIZE;
1129                 addr += PAGE_SIZE;
1130                 pgoff++;
1131         }
1132         return 0;
1133 }
1134
1135 #ifdef CONFIG_NUMA
1136 int shmem_set_policy(struct vm_area_struct *vma, struct mempolicy *new)
1137 {
1138         struct inode *i = vma->vm_file->f_dentry->d_inode;
1139         return mpol_set_shared_policy(&SHMEM_I(i)->policy, vma, new);
1140 }
1141
1142 struct mempolicy *
1143 shmem_get_policy(struct vm_area_struct *vma, unsigned long addr)
1144 {
1145         struct inode *i = vma->vm_file->f_dentry->d_inode;
1146         unsigned long idx;
1147
1148         idx = ((addr - vma->vm_start) >> PAGE_SHIFT) + vma->vm_pgoff;
1149         return mpol_shared_policy_lookup(&SHMEM_I(i)->policy, idx);
1150 }
1151 #endif
1152
1153 void shmem_lock(struct file *file, int lock)
1154 {
1155         struct inode *inode = file->f_dentry->d_inode;
1156         struct shmem_inode_info *info = SHMEM_I(inode);
1157
1158         spin_lock(&info->lock);
1159         if (lock)
1160                 info->flags |= VM_LOCKED;
1161         else
1162                 info->flags &= ~VM_LOCKED;
1163         spin_unlock(&info->lock);
1164 }
1165
1166 static int shmem_mmap(struct file *file, struct vm_area_struct *vma)
1167 {
1168         file_accessed(file);
1169         vma->vm_ops = &shmem_vm_ops;
1170         return 0;
1171 }
1172
1173 static struct inode *
1174 shmem_get_inode(struct super_block *sb, int mode, dev_t dev)
1175 {
1176         struct inode *inode;
1177         struct shmem_inode_info *info;
1178         struct shmem_sb_info *sbinfo = SHMEM_SB(sb);
1179
1180         spin_lock(&sbinfo->stat_lock);
1181         if (!sbinfo->free_inodes) {
1182                 spin_unlock(&sbinfo->stat_lock);
1183                 return NULL;
1184         }
1185         sbinfo->free_inodes--;
1186         spin_unlock(&sbinfo->stat_lock);
1187
1188         inode = new_inode(sb);
1189         if (inode) {
1190                 inode->i_mode = mode;
1191                 inode->i_uid = current->fsuid;
1192                 inode->i_gid = current->fsgid;
1193                 inode->i_blksize = PAGE_CACHE_SIZE;
1194                 inode->i_blocks = 0;
1195                 inode->i_mapping->a_ops = &shmem_aops;
1196                 inode->i_mapping->backing_dev_info = &shmem_backing_dev_info;
1197                 inode->i_atime = inode->i_mtime = inode->i_ctime = CURRENT_TIME;
1198                 info = SHMEM_I(inode);
1199                 memset(info, 0, (char *)inode - (char *)info);
1200                 spin_lock_init(&info->lock);
1201                 mpol_shared_policy_init(&info->policy);
1202                 switch (mode & S_IFMT) {
1203                 default:
1204                         init_special_inode(inode, mode, dev);
1205                         break;
1206                 case S_IFREG:
1207                         inode->i_op = &shmem_inode_operations;
1208                         inode->i_fop = &shmem_file_operations;
1209                         spin_lock(&shmem_ilock);
1210                         list_add_tail(&info->list, &shmem_inodes);
1211                         spin_unlock(&shmem_ilock);
1212                         break;
1213                 case S_IFDIR:
1214                         inode->i_nlink++;
1215                         /* Some things misbehave if size == 0 on a directory */
1216                         inode->i_size = 2 * BOGO_DIRENT_SIZE;
1217                         inode->i_op = &shmem_dir_inode_operations;
1218                         inode->i_fop = &simple_dir_operations;
1219                         break;
1220                 case S_IFLNK:
1221                         break;
1222                 }
1223         }
1224         return inode;
1225 }
1226
1227 static int shmem_set_size(struct shmem_sb_info *info,
1228                           unsigned long max_blocks, unsigned long max_inodes)
1229 {
1230         int error;
1231         unsigned long blocks, inodes;
1232
1233         spin_lock(&info->stat_lock);
1234         blocks = info->max_blocks - info->free_blocks;
1235         inodes = info->max_inodes - info->free_inodes;
1236         error = -EINVAL;
1237         if (max_blocks < blocks)
1238                 goto out;
1239         if (max_inodes < inodes)
1240                 goto out;
1241         error = 0;
1242         info->max_blocks  = max_blocks;
1243         info->free_blocks = max_blocks - blocks;
1244         info->max_inodes  = max_inodes;
1245         info->free_inodes = max_inodes - inodes;
1246 out:
1247         spin_unlock(&info->stat_lock);
1248         return error;
1249 }
1250
1251 #ifdef CONFIG_TMPFS
1252
1253 static struct inode_operations shmem_symlink_inode_operations;
1254 static struct inode_operations shmem_symlink_inline_operations;
1255
1256 /*
1257  * Normally tmpfs makes no use of shmem_prepare_write, but it
1258  * lets a tmpfs file be used read-write below the loop driver.
1259  */
1260 static int
1261 shmem_prepare_write(struct file *file, struct page *page, unsigned offset, unsigned to)
1262 {
1263         struct inode *inode = page->mapping->host;
1264         return shmem_getpage(inode, page->index, &page, SGP_WRITE, NULL);
1265 }
1266
1267 static ssize_t
1268 shmem_file_write(struct file *file, const char __user *buf, size_t count, loff_t *ppos)
1269 {
1270         struct inode    *inode = file->f_dentry->d_inode;
1271         loff_t          pos;
1272         unsigned long   written;
1273         int             err;
1274
1275         if ((ssize_t) count < 0)
1276                 return -EINVAL;
1277
1278         if (!access_ok(VERIFY_READ, buf, count))
1279                 return -EFAULT;
1280
1281         down(&inode->i_sem);
1282
1283         pos = *ppos;
1284         written = 0;
1285
1286         err = generic_write_checks(file, &pos, &count, 0);
1287         if (err || !count)
1288                 goto out;
1289
1290         err = remove_suid(file->f_dentry);
1291         if (err)
1292                 goto out;
1293
1294         inode->i_ctime = inode->i_mtime = CURRENT_TIME;
1295
1296         do {
1297                 struct page *page = NULL;
1298                 unsigned long bytes, index, offset;
1299                 char *kaddr;
1300                 int left;
1301
1302                 offset = (pos & (PAGE_CACHE_SIZE -1)); /* Within page */
1303                 index = pos >> PAGE_CACHE_SHIFT;
1304                 bytes = PAGE_CACHE_SIZE - offset;
1305                 if (bytes > count)
1306                         bytes = count;
1307
1308                 /*
1309                  * We don't hold page lock across copy from user -
1310                  * what would it guard against? - so no deadlock here.
1311                  * But it still may be a good idea to prefault below.
1312                  */
1313
1314                 err = shmem_getpage(inode, index, &page, SGP_WRITE, NULL);
1315                 if (err)
1316                         break;
1317
1318                 left = bytes;
1319                 if (PageHighMem(page)) {
1320                         volatile unsigned char dummy;
1321                         __get_user(dummy, buf);
1322                         __get_user(dummy, buf + bytes - 1);
1323
1324                         kaddr = kmap_atomic(page, KM_USER0);
1325                         left = __copy_from_user(kaddr + offset, buf, bytes);
1326                         kunmap_atomic(kaddr, KM_USER0);
1327                 }
1328                 if (left) {
1329                         kaddr = kmap(page);
1330                         left = __copy_from_user(kaddr + offset, buf, bytes);
1331                         kunmap(page);
1332                 }
1333
1334                 written += bytes;
1335                 count -= bytes;
1336                 pos += bytes;
1337                 buf += bytes;
1338                 if (pos > inode->i_size)
1339                         i_size_write(inode, pos);
1340
1341                 flush_dcache_page(page);
1342                 set_page_dirty(page);
1343                 mark_page_accessed(page);
1344                 page_cache_release(page);
1345
1346                 if (left) {
1347                         pos -= left;
1348                         written -= left;
1349                         err = -EFAULT;
1350                         break;
1351                 }
1352
1353                 /*
1354                  * Our dirty pages are not counted in nr_dirty,
1355                  * and we do not attempt to balance dirty pages.
1356                  */
1357
1358                 cond_resched();
1359         } while (count);
1360
1361         *ppos = pos;
1362         if (written)
1363                 err = written;
1364 out:
1365         up(&inode->i_sem);
1366         return err;
1367 }
1368
1369 static void do_shmem_file_read(struct file *filp, loff_t *ppos, read_descriptor_t *desc, read_actor_t actor)
1370 {
1371         struct inode *inode = filp->f_dentry->d_inode;
1372         struct address_space *mapping = inode->i_mapping;
1373         unsigned long index, offset;
1374
1375         index = *ppos >> PAGE_CACHE_SHIFT;
1376         offset = *ppos & ~PAGE_CACHE_MASK;
1377
1378         for (;;) {
1379                 struct page *page = NULL;
1380                 unsigned long end_index, nr, ret;
1381                 loff_t i_size = i_size_read(inode);
1382
1383                 end_index = i_size >> PAGE_CACHE_SHIFT;
1384                 if (index > end_index)
1385                         break;
1386                 if (index == end_index) {
1387                         nr = i_size & ~PAGE_CACHE_MASK;
1388                         if (nr <= offset)
1389                                 break;
1390                 }
1391
1392                 desc->error = shmem_getpage(inode, index, &page, SGP_READ, NULL);
1393                 if (desc->error) {
1394                         if (desc->error == -EINVAL)
1395                                 desc->error = 0;
1396                         break;
1397                 }
1398
1399                 /*
1400                  * We must evaluate after, since reads (unlike writes)
1401                  * are called without i_sem protection against truncate
1402                  */
1403                 nr = PAGE_CACHE_SIZE;
1404                 i_size = i_size_read(inode);
1405                 end_index = i_size >> PAGE_CACHE_SHIFT;
1406                 if (index == end_index) {
1407                         nr = i_size & ~PAGE_CACHE_MASK;
1408                         if (nr <= offset) {
1409                                 page_cache_release(page);
1410                                 break;
1411                         }
1412                 }
1413                 nr -= offset;
1414
1415                 if (page != ZERO_PAGE(0)) {
1416                         /*
1417                          * If users can be writing to this page using arbitrary
1418                          * virtual addresses, take care about potential aliasing
1419                          * before reading the page on the kernel side.
1420                          */
1421                         if (mapping_writably_mapped(mapping))
1422                                 flush_dcache_page(page);
1423                         /*
1424                          * Mark the page accessed if we read the beginning.
1425                          */
1426                         if (!offset)
1427                                 mark_page_accessed(page);
1428                 }
1429
1430                 /*
1431                  * Ok, we have the page, and it's up-to-date, so
1432                  * now we can copy it to user space...
1433                  *
1434                  * The actor routine returns how many bytes were actually used..
1435                  * NOTE! This may not be the same as how much of a user buffer
1436                  * we filled up (we may be padding etc), so we can only update
1437                  * "pos" here (the actor routine has to update the user buffer
1438                  * pointers and the remaining count).
1439                  */
1440                 ret = actor(desc, page, offset, nr);
1441                 offset += ret;
1442                 index += offset >> PAGE_CACHE_SHIFT;
1443                 offset &= ~PAGE_CACHE_MASK;
1444
1445                 page_cache_release(page);
1446                 if (ret != nr || !desc->count)
1447                         break;
1448
1449                 cond_resched();
1450         }
1451
1452         *ppos = ((loff_t) index << PAGE_CACHE_SHIFT) + offset;
1453         file_accessed(filp);
1454 }
1455
1456 static ssize_t shmem_file_read(struct file *filp, char __user *buf, size_t count, loff_t *ppos)
1457 {
1458         read_descriptor_t desc;
1459
1460         if ((ssize_t) count < 0)
1461                 return -EINVAL;
1462         if (!access_ok(VERIFY_WRITE, buf, count))
1463                 return -EFAULT;
1464         if (!count)
1465                 return 0;
1466
1467         desc.written = 0;
1468         desc.count = count;
1469         desc.arg.buf = buf;
1470         desc.error = 0;
1471
1472         do_shmem_file_read(filp, ppos, &desc, file_read_actor);
1473         if (desc.written)
1474                 return desc.written;
1475         return desc.error;
1476 }
1477
1478 static ssize_t shmem_file_sendfile(struct file *in_file, loff_t *ppos,
1479                          size_t count, read_actor_t actor, void *target)
1480 {
1481         read_descriptor_t desc;
1482
1483         if (!count)
1484                 return 0;
1485
1486         desc.written = 0;
1487         desc.count = count;
1488         desc.arg.data = target;
1489         desc.error = 0;
1490
1491         do_shmem_file_read(in_file, ppos, &desc, actor);
1492         if (desc.written)
1493                 return desc.written;
1494         return desc.error;
1495 }
1496
1497 static int shmem_statfs(struct super_block *sb, struct kstatfs *buf)
1498 {
1499         struct shmem_sb_info *sbinfo = SHMEM_SB(sb);
1500
1501         buf->f_type = TMPFS_SUPER_MAGIC;
1502         buf->f_bsize = PAGE_CACHE_SIZE;
1503         spin_lock(&sbinfo->stat_lock);
1504         buf->f_blocks = sbinfo->max_blocks;
1505         buf->f_bavail = buf->f_bfree = sbinfo->free_blocks;
1506         buf->f_files = sbinfo->max_inodes;
1507         buf->f_ffree = sbinfo->free_inodes;
1508         spin_unlock(&sbinfo->stat_lock);
1509         buf->f_namelen = NAME_MAX;
1510         return 0;
1511 }
1512
1513 /*
1514  * File creation. Allocate an inode, and we're done..
1515  */
1516 static int
1517 shmem_mknod(struct inode *dir, struct dentry *dentry, int mode, dev_t dev)
1518 {
1519         struct inode *inode = shmem_get_inode(dir->i_sb, mode, dev);
1520         int error = -ENOSPC;
1521
1522         if (inode) {
1523                 if (dir->i_mode & S_ISGID) {
1524                         inode->i_gid = dir->i_gid;
1525                         if (S_ISDIR(mode))
1526                                 inode->i_mode |= S_ISGID;
1527                 }
1528                 dir->i_size += BOGO_DIRENT_SIZE;
1529                 dir->i_ctime = dir->i_mtime = CURRENT_TIME;
1530                 d_instantiate(dentry, inode);
1531                 dget(dentry); /* Extra count - pin the dentry in core */
1532                 error = 0;
1533         }
1534         return error;
1535 }
1536
1537 static int shmem_mkdir(struct inode *dir, struct dentry *dentry, int mode)
1538 {
1539         int error;
1540
1541         if ((error = shmem_mknod(dir, dentry, mode | S_IFDIR, 0)))
1542                 return error;
1543         dir->i_nlink++;
1544         return 0;
1545 }
1546
1547 static int shmem_create(struct inode *dir, struct dentry *dentry, int mode,
1548                 struct nameidata *nd)
1549 {
1550         return shmem_mknod(dir, dentry, mode | S_IFREG, 0);
1551 }
1552
1553 /*
1554  * Link a file..
1555  */
1556 static int shmem_link(struct dentry *old_dentry, struct inode *dir, struct dentry *dentry)
1557 {
1558         struct inode *inode = old_dentry->d_inode;
1559
1560         dir->i_size += BOGO_DIRENT_SIZE;
1561         inode->i_ctime = dir->i_ctime = dir->i_mtime = CURRENT_TIME;
1562         inode->i_nlink++;
1563         atomic_inc(&inode->i_count);    /* New dentry reference */
1564         dget(dentry);           /* Extra pinning count for the created dentry */
1565         d_instantiate(dentry, inode);
1566         return 0;
1567 }
1568
1569 static int shmem_unlink(struct inode *dir, struct dentry *dentry)
1570 {
1571         struct inode *inode = dentry->d_inode;
1572
1573         dir->i_size -= BOGO_DIRENT_SIZE;
1574         inode->i_ctime = dir->i_ctime = dir->i_mtime = CURRENT_TIME;
1575         inode->i_nlink--;
1576         dput(dentry);   /* Undo the count from "create" - this does all the work */
1577         return 0;
1578 }
1579
1580 static int shmem_rmdir(struct inode *dir, struct dentry *dentry)
1581 {
1582         if (!simple_empty(dentry))
1583                 return -ENOTEMPTY;
1584
1585         dir->i_nlink--;
1586         return shmem_unlink(dir, dentry);
1587 }
1588
1589 /*
1590  * The VFS layer already does all the dentry stuff for rename,
1591  * we just have to decrement the usage count for the target if
1592  * it exists so that the VFS layer correctly free's it when it
1593  * gets overwritten.
1594  */
1595 static int shmem_rename(struct inode *old_dir, struct dentry *old_dentry, struct inode *new_dir, struct dentry *new_dentry)
1596 {
1597         struct inode *inode = old_dentry->d_inode;
1598         int they_are_dirs = S_ISDIR(inode->i_mode);
1599
1600         if (!simple_empty(new_dentry))
1601                 return -ENOTEMPTY;
1602
1603         if (new_dentry->d_inode) {
1604                 (void) shmem_unlink(new_dir, new_dentry);
1605                 if (they_are_dirs)
1606                         old_dir->i_nlink--;
1607         } else if (they_are_dirs) {
1608                 old_dir->i_nlink--;
1609                 new_dir->i_nlink++;
1610         }
1611
1612         old_dir->i_size -= BOGO_DIRENT_SIZE;
1613         new_dir->i_size += BOGO_DIRENT_SIZE;
1614         old_dir->i_ctime = old_dir->i_mtime =
1615         new_dir->i_ctime = new_dir->i_mtime =
1616         inode->i_ctime = CURRENT_TIME;
1617         return 0;
1618 }
1619
1620 static int shmem_symlink(struct inode *dir, struct dentry *dentry, const char *symname)
1621 {
1622         int error;
1623         int len;
1624         struct inode *inode;
1625         struct page *page = NULL;
1626         char *kaddr;
1627         struct shmem_inode_info *info;
1628
1629         len = strlen(symname) + 1;
1630         if (len > PAGE_CACHE_SIZE)
1631                 return -ENAMETOOLONG;
1632
1633         inode = shmem_get_inode(dir->i_sb, S_IFLNK|S_IRWXUGO, 0);
1634         if (!inode)
1635                 return -ENOSPC;
1636
1637         info = SHMEM_I(inode);
1638         inode->i_size = len-1;
1639         if (len <= (char *)inode - (char *)info) {
1640                 /* do it inline */
1641                 memcpy(info, symname, len);
1642                 inode->i_op = &shmem_symlink_inline_operations;
1643         } else {
1644                 error = shmem_getpage(inode, 0, &page, SGP_WRITE, NULL);
1645                 if (error) {
1646                         iput(inode);
1647                         return error;
1648                 }
1649                 inode->i_op = &shmem_symlink_inode_operations;
1650                 spin_lock(&shmem_ilock);
1651                 list_add_tail(&info->list, &shmem_inodes);
1652                 spin_unlock(&shmem_ilock);
1653                 kaddr = kmap_atomic(page, KM_USER0);
1654                 memcpy(kaddr, symname, len);
1655                 kunmap_atomic(kaddr, KM_USER0);
1656                 set_page_dirty(page);
1657                 page_cache_release(page);
1658         }
1659         if (dir->i_mode & S_ISGID)
1660                 inode->i_gid = dir->i_gid;
1661         dir->i_size += BOGO_DIRENT_SIZE;
1662         dir->i_ctime = dir->i_mtime = CURRENT_TIME;
1663         d_instantiate(dentry, inode);
1664         dget(dentry);
1665         return 0;
1666 }
1667
1668 static int shmem_follow_link_inline(struct dentry *dentry, struct nameidata *nd)
1669 {
1670         nd_set_link(nd, (char *)SHMEM_I(dentry->d_inode));
1671         return 0;
1672 }
1673
1674 static int shmem_follow_link(struct dentry *dentry, struct nameidata *nd)
1675 {
1676         struct page *page = NULL;
1677         int res = shmem_getpage(dentry->d_inode, 0, &page, SGP_READ, NULL);
1678         nd_set_link(nd, res ? ERR_PTR(res) : kmap(page));
1679         return 0;
1680 }
1681
1682 static void shmem_put_link(struct dentry *dentry, struct nameidata *nd)
1683 {
1684         if (!IS_ERR(nd_get_link(nd))) {
1685                 struct page *page;
1686
1687                 page = find_get_page(dentry->d_inode->i_mapping, 0);
1688                 if (!page)
1689                         BUG();
1690                 kunmap(page);
1691                 mark_page_accessed(page);
1692                 page_cache_release(page);
1693                 page_cache_release(page);
1694         }
1695 }
1696
1697 static struct inode_operations shmem_symlink_inline_operations = {
1698         .readlink       = generic_readlink,
1699         .follow_link    = shmem_follow_link_inline,
1700 };
1701
1702 static struct inode_operations shmem_symlink_inode_operations = {
1703         .truncate       = shmem_truncate,
1704         .readlink       = generic_readlink,
1705         .follow_link    = shmem_follow_link,
1706         .put_link       = shmem_put_link,
1707 };
1708
1709 static int shmem_parse_options(char *options, int *mode, uid_t *uid, gid_t *gid, unsigned long *blocks, unsigned long *inodes)
1710 {
1711         char *this_char, *value, *rest;
1712
1713         while ((this_char = strsep(&options, ",")) != NULL) {
1714                 if (!*this_char)
1715                         continue;
1716                 if ((value = strchr(this_char,'=')) != NULL) {
1717                         *value++ = 0;
1718                 } else {
1719                         printk(KERN_ERR
1720                             "tmpfs: No value for mount option '%s'\n",
1721                             this_char);
1722                         return 1;
1723                 }
1724
1725                 if (!strcmp(this_char,"size")) {
1726                         unsigned long long size;
1727                         size = memparse(value,&rest);
1728                         if (*rest == '%') {
1729                                 size <<= PAGE_SHIFT;
1730                                 size *= totalram_pages;
1731                                 do_div(size, 100);
1732                                 rest++;
1733                         }
1734                         if (*rest)
1735                                 goto bad_val;
1736                         *blocks = size >> PAGE_CACHE_SHIFT;
1737                 } else if (!strcmp(this_char,"nr_blocks")) {
1738                         *blocks = memparse(value,&rest);
1739                         if (*rest)
1740                                 goto bad_val;
1741                 } else if (!strcmp(this_char,"nr_inodes")) {
1742                         *inodes = memparse(value,&rest);
1743                         if (*rest)
1744                                 goto bad_val;
1745                 } else if (!strcmp(this_char,"mode")) {
1746                         if (!mode)
1747                                 continue;
1748                         *mode = simple_strtoul(value,&rest,8);
1749                         if (*rest)
1750                                 goto bad_val;
1751                 } else if (!strcmp(this_char,"uid")) {
1752                         if (!uid)
1753                                 continue;
1754                         *uid = simple_strtoul(value,&rest,0);
1755                         if (*rest)
1756                                 goto bad_val;
1757                 } else if (!strcmp(this_char,"gid")) {
1758                         if (!gid)
1759                                 continue;
1760                         *gid = simple_strtoul(value,&rest,0);
1761                         if (*rest)
1762                                 goto bad_val;
1763                 } else {
1764                         printk(KERN_ERR "tmpfs: Bad mount option %s\n",
1765                                this_char);
1766                         return 1;
1767                 }
1768         }
1769         return 0;
1770
1771 bad_val:
1772         printk(KERN_ERR "tmpfs: Bad value '%s' for mount option '%s'\n",
1773                value, this_char);
1774         return 1;
1775
1776 }
1777
1778 static int shmem_remount_fs(struct super_block *sb, int *flags, char *data)
1779 {
1780         struct shmem_sb_info *sbinfo = SHMEM_SB(sb);
1781         unsigned long max_blocks = sbinfo->max_blocks;
1782         unsigned long max_inodes = sbinfo->max_inodes;
1783
1784         if (shmem_parse_options(data, NULL, NULL, NULL, &max_blocks, &max_inodes))
1785                 return -EINVAL;
1786         return shmem_set_size(sbinfo, max_blocks, max_inodes);
1787 }
1788 #endif
1789
1790 static int shmem_fill_super(struct super_block *sb,
1791                             void *data, int silent)
1792 {
1793         struct inode *inode;
1794         struct dentry *root;
1795         unsigned long blocks, inodes;
1796         int mode   = S_IRWXUGO | S_ISVTX;
1797         uid_t uid = current->fsuid;
1798         gid_t gid = current->fsgid;
1799         struct shmem_sb_info *sbinfo;
1800         int err = -ENOMEM;
1801
1802         sbinfo = kmalloc(sizeof(struct shmem_sb_info), GFP_KERNEL);
1803         if (!sbinfo)
1804                 return -ENOMEM;
1805         sb->s_fs_info = sbinfo;
1806         memset(sbinfo, 0, sizeof(struct shmem_sb_info));
1807
1808         /*
1809          * Per default we only allow half of the physical ram per
1810          * tmpfs instance
1811          */
1812         blocks = inodes = totalram_pages / 2;
1813
1814 #ifdef CONFIG_TMPFS
1815         if (shmem_parse_options(data, &mode, &uid, &gid, &blocks, &inodes)) {
1816                 err = -EINVAL;
1817                 goto failed;
1818         }
1819 #else
1820         sb->s_flags |= MS_NOUSER;
1821 #endif
1822
1823         spin_lock_init(&sbinfo->stat_lock);
1824         sbinfo->max_blocks = blocks;
1825         sbinfo->free_blocks = blocks;
1826         sbinfo->max_inodes = inodes;
1827         sbinfo->free_inodes = inodes;
1828         sb->s_maxbytes = SHMEM_MAX_BYTES;
1829         sb->s_blocksize = PAGE_CACHE_SIZE;
1830         sb->s_blocksize_bits = PAGE_CACHE_SHIFT;
1831         sb->s_magic = TMPFS_SUPER_MAGIC;
1832         sb->s_op = &shmem_ops;
1833         inode = shmem_get_inode(sb, S_IFDIR | mode, 0);
1834         if (!inode)
1835                 goto failed;
1836         inode->i_uid = uid;
1837         inode->i_gid = gid;
1838         root = d_alloc_root(inode);
1839         if (!root)
1840                 goto failed_iput;
1841         sb->s_root = root;
1842         return 0;
1843
1844 failed_iput:
1845         iput(inode);
1846 failed:
1847         kfree(sbinfo);
1848         sb->s_fs_info = NULL;
1849         return err;
1850 }
1851
1852 static void shmem_put_super(struct super_block *sb)
1853 {
1854         kfree(sb->s_fs_info);
1855         sb->s_fs_info = NULL;
1856 }
1857
1858 static kmem_cache_t *shmem_inode_cachep;
1859
1860 static struct inode *shmem_alloc_inode(struct super_block *sb)
1861 {
1862         struct shmem_inode_info *p;
1863         p = (struct shmem_inode_info *)kmem_cache_alloc(shmem_inode_cachep, SLAB_KERNEL);
1864         if (!p)
1865                 return NULL;
1866         return &p->vfs_inode;
1867 }
1868
1869 static void shmem_destroy_inode(struct inode *inode)
1870 {
1871         mpol_free_shared_policy(&SHMEM_I(inode)->policy);
1872         kmem_cache_free(shmem_inode_cachep, SHMEM_I(inode));
1873 }
1874
1875 static void init_once(void *foo, kmem_cache_t *cachep, unsigned long flags)
1876 {
1877         struct shmem_inode_info *p = (struct shmem_inode_info *) foo;
1878
1879         if ((flags & (SLAB_CTOR_VERIFY|SLAB_CTOR_CONSTRUCTOR)) ==
1880             SLAB_CTOR_CONSTRUCTOR) {
1881                 inode_init_once(&p->vfs_inode);
1882         }
1883 }
1884
1885 static int init_inodecache(void)
1886 {
1887         shmem_inode_cachep = kmem_cache_create("shmem_inode_cache",
1888                                 sizeof(struct shmem_inode_info),
1889                                 0, SLAB_HWCACHE_ALIGN|SLAB_RECLAIM_ACCOUNT,
1890                                 init_once, NULL);
1891         if (shmem_inode_cachep == NULL)
1892                 return -ENOMEM;
1893         return 0;
1894 }
1895
1896 static void destroy_inodecache(void)
1897 {
1898         if (kmem_cache_destroy(shmem_inode_cachep))
1899                 printk(KERN_INFO "shmem_inode_cache: not all structures were freed\n");
1900 }
1901
1902 static struct address_space_operations shmem_aops = {
1903         .writepage      = shmem_writepage,
1904         .set_page_dirty = __set_page_dirty_nobuffers,
1905 #ifdef CONFIG_TMPFS
1906         .prepare_write  = shmem_prepare_write,
1907         .commit_write   = simple_commit_write,
1908 #endif
1909 };
1910
1911 static struct file_operations shmem_file_operations = {
1912         .mmap           = shmem_mmap,
1913 #ifdef CONFIG_TMPFS
1914         .llseek         = generic_file_llseek,
1915         .read           = shmem_file_read,
1916         .write          = shmem_file_write,
1917         .fsync          = simple_sync_file,
1918         .sendfile       = shmem_file_sendfile,
1919 #endif
1920 };
1921
1922 static struct inode_operations shmem_inode_operations = {
1923         .truncate       = shmem_truncate,
1924         .setattr        = shmem_notify_change,
1925 };
1926
1927 static struct inode_operations shmem_dir_inode_operations = {
1928 #ifdef CONFIG_TMPFS
1929         .create         = shmem_create,
1930         .lookup         = simple_lookup,
1931         .link           = shmem_link,
1932         .unlink         = shmem_unlink,
1933         .symlink        = shmem_symlink,
1934         .mkdir          = shmem_mkdir,
1935         .rmdir          = shmem_rmdir,
1936         .mknod          = shmem_mknod,
1937         .rename         = shmem_rename,
1938 #endif
1939 };
1940
1941 static struct super_operations shmem_ops = {
1942         .alloc_inode    = shmem_alloc_inode,
1943         .destroy_inode  = shmem_destroy_inode,
1944 #ifdef CONFIG_TMPFS
1945         .statfs         = shmem_statfs,
1946         .remount_fs     = shmem_remount_fs,
1947 #endif
1948         .delete_inode   = shmem_delete_inode,
1949         .drop_inode     = generic_delete_inode,
1950         .put_super      = shmem_put_super,
1951 };
1952
1953 static struct vm_operations_struct shmem_vm_ops = {
1954         .nopage         = shmem_nopage,
1955         .populate       = shmem_populate,
1956 #ifdef CONFIG_NUMA
1957         .set_policy     = shmem_set_policy,
1958         .get_policy     = shmem_get_policy,
1959 #endif
1960 };
1961
1962 static struct super_block *shmem_get_sb(struct file_system_type *fs_type,
1963         int flags, const char *dev_name, void *data)
1964 {
1965         return get_sb_nodev(fs_type, flags, data, shmem_fill_super);
1966 }
1967
1968 static struct file_system_type tmpfs_fs_type = {
1969         .owner          = THIS_MODULE,
1970         .name           = "tmpfs",
1971         .get_sb         = shmem_get_sb,
1972         .kill_sb        = kill_litter_super,
1973 };
1974 static struct vfsmount *shm_mnt;
1975
1976 static int __init init_tmpfs(void)
1977 {
1978         int error;
1979
1980         error = init_inodecache();
1981         if (error)
1982                 goto out3;
1983
1984         error = register_filesystem(&tmpfs_fs_type);
1985         if (error) {
1986                 printk(KERN_ERR "Could not register tmpfs\n");
1987                 goto out2;
1988         }
1989 #ifdef CONFIG_TMPFS
1990         devfs_mk_dir("shm");
1991 #endif
1992         shm_mnt = kern_mount(&tmpfs_fs_type);
1993         if (IS_ERR(shm_mnt)) {
1994                 error = PTR_ERR(shm_mnt);
1995                 printk(KERN_ERR "Could not kern_mount tmpfs\n");
1996                 goto out1;
1997         }
1998
1999         /* The internal instance should not do size checking */
2000         shmem_set_size(SHMEM_SB(shm_mnt->mnt_sb), ULONG_MAX, ULONG_MAX);
2001         return 0;
2002
2003 out1:
2004         unregister_filesystem(&tmpfs_fs_type);
2005 out2:
2006         destroy_inodecache();
2007 out3:
2008         shm_mnt = ERR_PTR(error);
2009         return error;
2010 }
2011 module_init(init_tmpfs)
2012
2013 /*
2014  * shmem_file_setup - get an unlinked file living in tmpfs
2015  *
2016  * @name: name for dentry (to be seen in /proc/<pid>/maps
2017  * @size: size to be set for the file
2018  *
2019  */
2020 struct file *shmem_file_setup(char *name, loff_t size, unsigned long flags)
2021 {
2022         int error;
2023         struct file *file;
2024         struct inode *inode;
2025         struct dentry *dentry, *root;
2026         struct qstr this;
2027
2028         if (IS_ERR(shm_mnt))
2029                 return (void *)shm_mnt;
2030
2031         if (size > SHMEM_MAX_BYTES)
2032                 return ERR_PTR(-EINVAL);
2033
2034         if (shmem_acct_size(flags, size))
2035                 return ERR_PTR(-ENOMEM);
2036
2037         error = -ENOMEM;
2038         this.name = name;
2039         this.len = strlen(name);
2040         this.hash = 0; /* will go */
2041         root = shm_mnt->mnt_root;
2042         dentry = d_alloc(root, &this);
2043         if (!dentry)
2044                 goto put_memory;
2045
2046         error = -ENFILE;
2047         file = get_empty_filp();
2048         if (!file)
2049                 goto put_dentry;
2050
2051         error = -ENOSPC;
2052         inode = shmem_get_inode(root->d_sb, S_IFREG | S_IRWXUGO, 0);
2053         if (!inode)
2054                 goto close_file;
2055
2056         SHMEM_I(inode)->flags = flags & VM_ACCOUNT;
2057         d_instantiate(dentry, inode);
2058         inode->i_size = size;
2059         inode->i_nlink = 0;     /* It is unlinked */
2060         file->f_vfsmnt = mntget(shm_mnt);
2061         file->f_dentry = dentry;
2062         file->f_mapping = inode->i_mapping;
2063         file->f_op = &shmem_file_operations;
2064         file->f_mode = FMODE_WRITE | FMODE_READ;
2065         return(file);
2066
2067 close_file:
2068         put_filp(file);
2069 put_dentry:
2070         dput(dentry);
2071 put_memory:
2072         shmem_unacct_size(flags, size);
2073         return ERR_PTR(error);
2074 }
2075
2076 /*
2077  * shmem_zero_setup - setup a shared anonymous mapping
2078  *
2079  * @vma: the vma to be mmapped is prepared by do_mmap_pgoff
2080  */
2081 int shmem_zero_setup(struct vm_area_struct *vma)
2082 {
2083         struct file *file;
2084         loff_t size = vma->vm_end - vma->vm_start;
2085
2086         file = shmem_file_setup("dev/zero", size, vma->vm_flags);
2087         if (IS_ERR(file))
2088                 return PTR_ERR(file);
2089
2090         if (vma->vm_file)
2091                 fput(vma->vm_file);
2092         vma->vm_file = file;
2093         vma->vm_ops = &shmem_vm_ops;
2094         return 0;
2095 }
2096
2097 EXPORT_SYMBOL(shmem_file_setup);