linuxvfs.c (0612ec48762bf8712db1925b2e67246d2237ebab) | linuxvfs.c (1a1d92c10dd24bbdc28b3d6e2d03ec199dd3a65b) |
---|---|
1/* 2 * linux/fs/befs/linuxvfs.c 3 * 4 * Copyright (C) 2001 Will Dyson <will_dyson@pobox.com 5 * 6 */ 7 8#include <linux/module.h> --- 432 unchanged lines hidden (view full) --- 441 442/* Called at fs teardown. 443 * 444 * Taken from NFS implementation by Al Viro. 445 */ 446static void 447befs_destroy_inodecache(void) 448{ | 1/* 2 * linux/fs/befs/linuxvfs.c 3 * 4 * Copyright (C) 2001 Will Dyson <will_dyson@pobox.com 5 * 6 */ 7 8#include <linux/module.h> --- 432 unchanged lines hidden (view full) --- 441 442/* Called at fs teardown. 443 * 444 * Taken from NFS implementation by Al Viro. 445 */ 446static void 447befs_destroy_inodecache(void) 448{ |
449 if (kmem_cache_destroy(befs_inode_cachep)) 450 printk(KERN_ERR "befs_destroy_inodecache: " 451 "not all structures were freed\n"); | 449 kmem_cache_destroy(befs_inode_cachep); |
452} 453 454/* 455 * The inode of symbolic link is different to data stream. 456 * The data stream become link name. Unless the LONG_SYMLINK 457 * flag is set. 458 */ 459static void * --- 505 unchanged lines hidden --- | 450} 451 452/* 453 * The inode of symbolic link is different to data stream. 454 * The data stream become link name. Unless the LONG_SYMLINK 455 * flag is set. 456 */ 457static void * --- 505 unchanged lines hidden --- |