Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 140202
b: refs/heads/master
c: 726dd7f
h: refs/heads/master
v: v3
  • Loading branch information
David Howells committed Apr 3, 2009
1 parent 986f7f3 commit 85a9350
Show file tree
Hide file tree
Showing 4 changed files with 114 additions and 3 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 955d00917f0c094e0f2fb88df967e980ab66b8ca
refs/heads/master: 726dd7ff10c217dd74329c94643dc8ebea27334b
3 changes: 2 additions & 1 deletion trunk/fs/fscache/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@ fscache-y := \
cache.o \
cookie.o \
fsdef.o \
main.o
main.o \
netfs.o

fscache-$(CONFIG_PROC_FS) += proc.o
fscache-$(CONFIG_FSCACHE_STATS) += stats.o
Expand Down
103 changes: 103 additions & 0 deletions trunk/fs/fscache/netfs.c
Original file line number Diff line number Diff line change
@@ -0,0 +1,103 @@
/* FS-Cache netfs (client) registration
*
* Copyright (C) 2008 Red Hat, Inc. All Rights Reserved.
* Written by David Howells (dhowells@redhat.com)
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public Licence
* as published by the Free Software Foundation; either version
* 2 of the Licence, or (at your option) any later version.
*/

#define FSCACHE_DEBUG_LEVEL COOKIE
#include <linux/module.h>
#include <linux/slab.h>
#include "internal.h"

static LIST_HEAD(fscache_netfs_list);

/*
* register a network filesystem for caching
*/
int __fscache_register_netfs(struct fscache_netfs *netfs)
{
struct fscache_netfs *ptr;
int ret;

_enter("{%s}", netfs->name);

INIT_LIST_HEAD(&netfs->link);

/* allocate a cookie for the primary index */
netfs->primary_index =
kmem_cache_zalloc(fscache_cookie_jar, GFP_KERNEL);

if (!netfs->primary_index) {
_leave(" = -ENOMEM");
return -ENOMEM;
}

/* initialise the primary index cookie */
atomic_set(&netfs->primary_index->usage, 1);
atomic_set(&netfs->primary_index->n_children, 0);

netfs->primary_index->def = &fscache_fsdef_netfs_def;
netfs->primary_index->parent = &fscache_fsdef_index;
netfs->primary_index->netfs_data = netfs;

atomic_inc(&netfs->primary_index->parent->usage);
atomic_inc(&netfs->primary_index->parent->n_children);

spin_lock_init(&netfs->primary_index->lock);
INIT_HLIST_HEAD(&netfs->primary_index->backing_objects);

/* check the netfs type is not already present */
down_write(&fscache_addremove_sem);

ret = -EEXIST;
list_for_each_entry(ptr, &fscache_netfs_list, link) {
if (strcmp(ptr->name, netfs->name) == 0)
goto already_registered;
}

list_add(&netfs->link, &fscache_netfs_list);
ret = 0;

printk(KERN_NOTICE "FS-Cache: Netfs '%s' registered for caching\n",
netfs->name);

already_registered:
up_write(&fscache_addremove_sem);

if (ret < 0) {
netfs->primary_index->parent = NULL;
__fscache_cookie_put(netfs->primary_index);
netfs->primary_index = NULL;
}

_leave(" = %d", ret);
return ret;
}
EXPORT_SYMBOL(__fscache_register_netfs);

/*
* unregister a network filesystem from the cache
* - all cookies must have been released first
*/
void __fscache_unregister_netfs(struct fscache_netfs *netfs)
{
_enter("{%s.%u}", netfs->name, netfs->version);

down_write(&fscache_addremove_sem);

list_del(&netfs->link);
fscache_relinquish_cookie(netfs->primary_index, 0);

up_write(&fscache_addremove_sem);

printk(KERN_NOTICE "FS-Cache: Netfs '%s' unregistered from caching\n",
netfs->name);

_leave("");
}
EXPORT_SYMBOL(__fscache_unregister_netfs);
9 changes: 8 additions & 1 deletion trunk/include/linux/fscache.h
Original file line number Diff line number Diff line change
Expand Up @@ -173,6 +173,8 @@ struct fscache_netfs {
* - these are undefined symbols when FS-Cache is not configured and the
* optimiser takes care of not using them
*/
extern int __fscache_register_netfs(struct fscache_netfs *);
extern void __fscache_unregister_netfs(struct fscache_netfs *);
extern struct fscache_cache_tag *__fscache_lookup_cache_tag(const char *);
extern void __fscache_release_cache_tag(struct fscache_cache_tag *);

Expand All @@ -188,7 +190,10 @@ extern void __fscache_release_cache_tag(struct fscache_cache_tag *);
static inline
int fscache_register_netfs(struct fscache_netfs *netfs)
{
return 0;
if (fscache_available())
return __fscache_register_netfs(netfs);
else
return 0;
}

/**
Expand All @@ -205,6 +210,8 @@ int fscache_register_netfs(struct fscache_netfs *netfs)
static inline
void fscache_unregister_netfs(struct fscache_netfs *netfs)
{
if (fscache_available())
__fscache_unregister_netfs(netfs);
}

/**
Expand Down

0 comments on commit 85a9350

Please sign in to comment.