2007-04-27 00:55:03 +02:00
|
|
|
/* AFS volume location management
|
2005-04-17 00:20:36 +02:00
|
|
|
*
|
2007-04-27 00:55:03 +02:00
|
|
|
* Copyright (C) 2002, 2007 Red Hat, Inc. All Rights Reserved.
|
2005-04-17 00:20:36 +02:00
|
|
|
* 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 License
|
|
|
|
* as published by the Free Software Foundation; either version
|
|
|
|
* 2 of the License, or (at your option) any later version.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <linux/kernel.h>
|
|
|
|
#include <linux/module.h>
|
include cleanup: Update gfp.h and slab.h includes to prepare for breaking implicit slab.h inclusion from percpu.h
percpu.h is included by sched.h and module.h and thus ends up being
included when building most .c files. percpu.h includes slab.h which
in turn includes gfp.h making everything defined by the two files
universally available and complicating inclusion dependencies.
percpu.h -> slab.h dependency is about to be removed. Prepare for
this change by updating users of gfp and slab facilities include those
headers directly instead of assuming availability. As this conversion
needs to touch large number of source files, the following script is
used as the basis of conversion.
http://userweb.kernel.org/~tj/misc/slabh-sweep.py
The script does the followings.
* Scan files for gfp and slab usages and update includes such that
only the necessary includes are there. ie. if only gfp is used,
gfp.h, if slab is used, slab.h.
* When the script inserts a new include, it looks at the include
blocks and try to put the new include such that its order conforms
to its surrounding. It's put in the include block which contains
core kernel includes, in the same order that the rest are ordered -
alphabetical, Christmas tree, rev-Xmas-tree or at the end if there
doesn't seem to be any matching order.
* If the script can't find a place to put a new include (mostly
because the file doesn't have fitting include block), it prints out
an error message indicating which .h file needs to be added to the
file.
The conversion was done in the following steps.
1. The initial automatic conversion of all .c files updated slightly
over 4000 files, deleting around 700 includes and adding ~480 gfp.h
and ~3000 slab.h inclusions. The script emitted errors for ~400
files.
2. Each error was manually checked. Some didn't need the inclusion,
some needed manual addition while adding it to implementation .h or
embedding .c file was more appropriate for others. This step added
inclusions to around 150 files.
3. The script was run again and the output was compared to the edits
from #2 to make sure no file was left behind.
4. Several build tests were done and a couple of problems were fixed.
e.g. lib/decompress_*.c used malloc/free() wrappers around slab
APIs requiring slab.h to be added manually.
5. The script was run on all .h files but without automatically
editing them as sprinkling gfp.h and slab.h inclusions around .h
files could easily lead to inclusion dependency hell. Most gfp.h
inclusion directives were ignored as stuff from gfp.h was usually
wildly available and often used in preprocessor macros. Each
slab.h inclusion directive was examined and added manually as
necessary.
6. percpu.h was updated not to include slab.h.
7. Build test were done on the following configurations and failures
were fixed. CONFIG_GCOV_KERNEL was turned off for all tests (as my
distributed build env didn't work with gcov compiles) and a few
more options had to be turned off depending on archs to make things
build (like ipr on powerpc/64 which failed due to missing writeq).
* x86 and x86_64 UP and SMP allmodconfig and a custom test config.
* powerpc and powerpc64 SMP allmodconfig
* sparc and sparc64 SMP allmodconfig
* ia64 SMP allmodconfig
* s390 SMP allmodconfig
* alpha SMP allmodconfig
* um on x86_64 SMP allmodconfig
8. percpu.h modifications were reverted so that it could be applied as
a separate patch and serve as bisection point.
Given the fact that I had only a couple of failures from tests on step
6, I'm fairly confident about the coverage of this conversion patch.
If there is a breakage, it's likely to be something in one of the arch
headers which should be easily discoverable easily on most builds of
the specific arch.
Signed-off-by: Tejun Heo <tj@kernel.org>
Guess-its-ok-by: Christoph Lameter <cl@linux-foundation.org>
Cc: Ingo Molnar <mingo@redhat.com>
Cc: Lee Schermerhorn <Lee.Schermerhorn@hp.com>
2010-03-24 09:04:11 +01:00
|
|
|
#include <linux/slab.h>
|
2005-04-17 00:20:36 +02:00
|
|
|
#include <linux/init.h>
|
Detach sched.h from mm.h
First thing mm.h does is including sched.h solely for can_do_mlock() inline
function which has "current" dereference inside. By dealing with can_do_mlock()
mm.h can be detached from sched.h which is good. See below, why.
This patch
a) removes unconditional inclusion of sched.h from mm.h
b) makes can_do_mlock() normal function in mm/mlock.c
c) exports can_do_mlock() to not break compilation
d) adds sched.h inclusions back to files that were getting it indirectly.
e) adds less bloated headers to some files (asm/signal.h, jiffies.h) that were
getting them indirectly
Net result is:
a) mm.h users would get less code to open, read, preprocess, parse, ... if
they don't need sched.h
b) sched.h stops being dependency for significant number of files:
on x86_64 allmodconfig touching sched.h results in recompile of 4083 files,
after patch it's only 3744 (-8.3%).
Cross-compile tested on
all arm defconfigs, all mips defconfigs, all powerpc defconfigs,
alpha alpha-up
arm
i386 i386-up i386-defconfig i386-allnoconfig
ia64 ia64-up
m68k
mips
parisc parisc-up
powerpc powerpc-up
s390 s390-up
sparc sparc-up
sparc64 sparc64-up
um-x86_64
x86_64 x86_64-up x86_64-defconfig x86_64-allnoconfig
as well as my two usual configs.
Signed-off-by: Alexey Dobriyan <adobriyan@gmail.com>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
2007-05-20 23:22:52 +02:00
|
|
|
#include <linux/sched.h>
|
2005-04-17 00:20:36 +02:00
|
|
|
#include "internal.h"
|
|
|
|
|
2007-10-17 08:26:41 +02:00
|
|
|
static unsigned afs_vlocation_timeout = 10; /* volume location timeout in seconds */
|
|
|
|
static unsigned afs_vlocation_update_timeout = 10 * 60;
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2007-04-27 00:55:03 +02:00
|
|
|
static void afs_vlocation_reaper(struct work_struct *);
|
|
|
|
static void afs_vlocation_updater(struct work_struct *);
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2007-04-27 00:55:03 +02:00
|
|
|
static LIST_HEAD(afs_vlocation_updates);
|
|
|
|
static LIST_HEAD(afs_vlocation_graveyard);
|
|
|
|
static DEFINE_SPINLOCK(afs_vlocation_updates_lock);
|
|
|
|
static DEFINE_SPINLOCK(afs_vlocation_graveyard_lock);
|
|
|
|
static DECLARE_DELAYED_WORK(afs_vlocation_reap, afs_vlocation_reaper);
|
|
|
|
static DECLARE_DELAYED_WORK(afs_vlocation_update, afs_vlocation_updater);
|
|
|
|
static struct workqueue_struct *afs_vlocation_update_worker;
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
/*
|
|
|
|
* iterate through the VL servers in a cell until one of them admits knowing
|
|
|
|
* about the volume in question
|
|
|
|
*/
|
2007-04-27 00:55:03 +02:00
|
|
|
static int afs_vlocation_access_vl_by_name(struct afs_vlocation *vl,
|
2007-04-27 00:57:07 +02:00
|
|
|
struct key *key,
|
2005-04-17 00:20:36 +02:00
|
|
|
struct afs_cache_vlocation *vldb)
|
|
|
|
{
|
2007-04-27 00:55:03 +02:00
|
|
|
struct afs_cell *cell = vl->cell;
|
|
|
|
struct in_addr addr;
|
2005-04-17 00:20:36 +02:00
|
|
|
int count, ret;
|
|
|
|
|
2007-04-27 00:55:03 +02:00
|
|
|
_enter("%s,%s", cell->name, vl->vldb.name);
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2007-04-27 00:55:03 +02:00
|
|
|
down_write(&vl->cell->vl_sem);
|
2005-04-17 00:20:36 +02:00
|
|
|
ret = -ENOMEDIUM;
|
|
|
|
for (count = cell->vl_naddrs; count > 0; count--) {
|
2007-04-27 00:55:03 +02:00
|
|
|
addr = cell->vl_addrs[cell->vl_curr_svix];
|
|
|
|
|
|
|
|
_debug("CellServ[%hu]: %08x", cell->vl_curr_svix, addr.s_addr);
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
/* attempt to access the VL server */
|
2007-04-27 00:57:07 +02:00
|
|
|
ret = afs_vl_get_entry_by_name(&addr, key, vl->vldb.name, vldb,
|
2007-04-27 00:55:03 +02:00
|
|
|
&afs_sync_call);
|
2005-04-17 00:20:36 +02:00
|
|
|
switch (ret) {
|
|
|
|
case 0:
|
|
|
|
goto out;
|
|
|
|
case -ENOMEM:
|
|
|
|
case -ENONET:
|
|
|
|
case -ENETUNREACH:
|
|
|
|
case -EHOSTUNREACH:
|
|
|
|
case -ECONNREFUSED:
|
|
|
|
if (ret == -ENOMEM || ret == -ENONET)
|
|
|
|
goto out;
|
|
|
|
goto rotate;
|
|
|
|
case -ENOMEDIUM:
|
2009-06-16 22:36:49 +02:00
|
|
|
case -EKEYREJECTED:
|
|
|
|
case -EKEYEXPIRED:
|
2005-04-17 00:20:36 +02:00
|
|
|
goto out;
|
|
|
|
default:
|
2007-04-27 00:55:03 +02:00
|
|
|
ret = -EIO;
|
2005-04-17 00:20:36 +02:00
|
|
|
goto rotate;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* rotate the server records upon lookup failure */
|
|
|
|
rotate:
|
|
|
|
cell->vl_curr_svix++;
|
|
|
|
cell->vl_curr_svix %= cell->vl_naddrs;
|
|
|
|
}
|
|
|
|
|
2007-04-27 00:49:28 +02:00
|
|
|
out:
|
2007-04-27 00:55:03 +02:00
|
|
|
up_write(&vl->cell->vl_sem);
|
2005-04-17 00:20:36 +02:00
|
|
|
_leave(" = %d", ret);
|
|
|
|
return ret;
|
2007-04-27 00:49:28 +02:00
|
|
|
}
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
/*
|
|
|
|
* iterate through the VL servers in a cell until one of them admits knowing
|
|
|
|
* about the volume in question
|
|
|
|
*/
|
2007-04-27 00:55:03 +02:00
|
|
|
static int afs_vlocation_access_vl_by_id(struct afs_vlocation *vl,
|
2007-04-27 00:57:07 +02:00
|
|
|
struct key *key,
|
2005-04-17 00:20:36 +02:00
|
|
|
afs_volid_t volid,
|
|
|
|
afs_voltype_t voltype,
|
|
|
|
struct afs_cache_vlocation *vldb)
|
|
|
|
{
|
2007-04-27 00:55:03 +02:00
|
|
|
struct afs_cell *cell = vl->cell;
|
|
|
|
struct in_addr addr;
|
2005-04-17 00:20:36 +02:00
|
|
|
int count, ret;
|
|
|
|
|
|
|
|
_enter("%s,%x,%d,", cell->name, volid, voltype);
|
|
|
|
|
2007-04-27 00:55:03 +02:00
|
|
|
down_write(&vl->cell->vl_sem);
|
2005-04-17 00:20:36 +02:00
|
|
|
ret = -ENOMEDIUM;
|
|
|
|
for (count = cell->vl_naddrs; count > 0; count--) {
|
2007-04-27 00:55:03 +02:00
|
|
|
addr = cell->vl_addrs[cell->vl_curr_svix];
|
|
|
|
|
|
|
|
_debug("CellServ[%hu]: %08x", cell->vl_curr_svix, addr.s_addr);
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
/* attempt to access the VL server */
|
2007-04-27 00:57:07 +02:00
|
|
|
ret = afs_vl_get_entry_by_id(&addr, key, volid, voltype, vldb,
|
2007-04-27 00:55:03 +02:00
|
|
|
&afs_sync_call);
|
2005-04-17 00:20:36 +02:00
|
|
|
switch (ret) {
|
|
|
|
case 0:
|
|
|
|
goto out;
|
|
|
|
case -ENOMEM:
|
|
|
|
case -ENONET:
|
|
|
|
case -ENETUNREACH:
|
|
|
|
case -EHOSTUNREACH:
|
|
|
|
case -ECONNREFUSED:
|
|
|
|
if (ret == -ENOMEM || ret == -ENONET)
|
|
|
|
goto out;
|
|
|
|
goto rotate;
|
2007-04-27 00:55:03 +02:00
|
|
|
case -EBUSY:
|
|
|
|
vl->upd_busy_cnt++;
|
|
|
|
if (vl->upd_busy_cnt <= 3) {
|
|
|
|
if (vl->upd_busy_cnt > 1) {
|
|
|
|
/* second+ BUSY - sleep a little bit */
|
|
|
|
set_current_state(TASK_UNINTERRUPTIBLE);
|
|
|
|
schedule_timeout(1);
|
|
|
|
__set_current_state(TASK_RUNNING);
|
|
|
|
}
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
break;
|
2005-04-17 00:20:36 +02:00
|
|
|
case -ENOMEDIUM:
|
2007-04-27 00:55:03 +02:00
|
|
|
vl->upd_rej_cnt++;
|
|
|
|
goto rotate;
|
2005-04-17 00:20:36 +02:00
|
|
|
default:
|
2007-04-27 00:55:03 +02:00
|
|
|
ret = -EIO;
|
2005-04-17 00:20:36 +02:00
|
|
|
goto rotate;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* rotate the server records upon lookup failure */
|
|
|
|
rotate:
|
|
|
|
cell->vl_curr_svix++;
|
|
|
|
cell->vl_curr_svix %= cell->vl_naddrs;
|
2007-04-27 00:55:03 +02:00
|
|
|
vl->upd_busy_cnt = 0;
|
2005-04-17 00:20:36 +02:00
|
|
|
}
|
|
|
|
|
2007-04-27 00:49:28 +02:00
|
|
|
out:
|
2007-04-27 00:55:03 +02:00
|
|
|
if (ret < 0 && vl->upd_rej_cnt > 0) {
|
|
|
|
printk(KERN_NOTICE "kAFS:"
|
|
|
|
" Active volume no longer valid '%s'\n",
|
|
|
|
vl->vldb.name);
|
|
|
|
vl->valid = 0;
|
|
|
|
ret = -ENOMEDIUM;
|
|
|
|
}
|
|
|
|
|
|
|
|
up_write(&vl->cell->vl_sem);
|
2005-04-17 00:20:36 +02:00
|
|
|
_leave(" = %d", ret);
|
|
|
|
return ret;
|
2007-04-27 00:49:28 +02:00
|
|
|
}
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
/*
|
2007-04-27 00:55:03 +02:00
|
|
|
* allocate a volume location record
|
2005-04-17 00:20:36 +02:00
|
|
|
*/
|
2007-04-27 00:55:03 +02:00
|
|
|
static struct afs_vlocation *afs_vlocation_alloc(struct afs_cell *cell,
|
|
|
|
const char *name,
|
|
|
|
size_t namesz)
|
2005-04-17 00:20:36 +02:00
|
|
|
{
|
2007-04-27 00:55:03 +02:00
|
|
|
struct afs_vlocation *vl;
|
|
|
|
|
|
|
|
vl = kzalloc(sizeof(struct afs_vlocation), GFP_KERNEL);
|
|
|
|
if (vl) {
|
|
|
|
vl->cell = cell;
|
|
|
|
vl->state = AFS_VL_NEW;
|
|
|
|
atomic_set(&vl->usage, 1);
|
|
|
|
INIT_LIST_HEAD(&vl->link);
|
|
|
|
INIT_LIST_HEAD(&vl->grave);
|
|
|
|
INIT_LIST_HEAD(&vl->update);
|
|
|
|
init_waitqueue_head(&vl->waitq);
|
2007-04-27 05:39:14 +02:00
|
|
|
spin_lock_init(&vl->lock);
|
2007-04-27 00:55:03 +02:00
|
|
|
memcpy(vl->vldb.name, name, namesz);
|
2005-04-17 00:20:36 +02:00
|
|
|
}
|
|
|
|
|
2007-04-27 00:55:03 +02:00
|
|
|
_leave(" = %p", vl);
|
|
|
|
return vl;
|
|
|
|
}
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2007-04-27 00:55:03 +02:00
|
|
|
/*
|
|
|
|
* update record if we found it in the cache
|
|
|
|
*/
|
|
|
|
static int afs_vlocation_update_record(struct afs_vlocation *vl,
|
2007-04-27 00:57:07 +02:00
|
|
|
struct key *key,
|
2007-04-27 00:55:03 +02:00
|
|
|
struct afs_cache_vlocation *vldb)
|
|
|
|
{
|
|
|
|
afs_voltype_t voltype;
|
|
|
|
afs_volid_t vid;
|
|
|
|
int ret;
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
/* try to look up a cached volume in the cell VL databases by ID */
|
|
|
|
_debug("Locally Cached: %s %02x { %08x(%x) %08x(%x) %08x(%x) }",
|
2007-04-27 00:55:03 +02:00
|
|
|
vl->vldb.name,
|
|
|
|
vl->vldb.vidmask,
|
|
|
|
ntohl(vl->vldb.servers[0].s_addr),
|
|
|
|
vl->vldb.srvtmask[0],
|
|
|
|
ntohl(vl->vldb.servers[1].s_addr),
|
|
|
|
vl->vldb.srvtmask[1],
|
|
|
|
ntohl(vl->vldb.servers[2].s_addr),
|
|
|
|
vl->vldb.srvtmask[2]);
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
_debug("Vids: %08x %08x %08x",
|
2007-04-27 00:55:03 +02:00
|
|
|
vl->vldb.vid[0],
|
|
|
|
vl->vldb.vid[1],
|
|
|
|
vl->vldb.vid[2]);
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2007-04-27 00:55:03 +02:00
|
|
|
if (vl->vldb.vidmask & AFS_VOL_VTM_RW) {
|
|
|
|
vid = vl->vldb.vid[0];
|
2005-04-17 00:20:36 +02:00
|
|
|
voltype = AFSVL_RWVOL;
|
2007-04-27 00:55:03 +02:00
|
|
|
} else if (vl->vldb.vidmask & AFS_VOL_VTM_RO) {
|
|
|
|
vid = vl->vldb.vid[1];
|
2005-04-17 00:20:36 +02:00
|
|
|
voltype = AFSVL_ROVOL;
|
2007-04-27 00:55:03 +02:00
|
|
|
} else if (vl->vldb.vidmask & AFS_VOL_VTM_BAK) {
|
|
|
|
vid = vl->vldb.vid[2];
|
2005-04-17 00:20:36 +02:00
|
|
|
voltype = AFSVL_BACKVOL;
|
2007-04-27 00:49:28 +02:00
|
|
|
} else {
|
2005-04-17 00:20:36 +02:00
|
|
|
BUG();
|
|
|
|
vid = 0;
|
|
|
|
voltype = 0;
|
|
|
|
}
|
|
|
|
|
2007-04-27 00:55:03 +02:00
|
|
|
/* contact the server to make sure the volume is still available
|
|
|
|
* - TODO: need to handle disconnected operation here
|
|
|
|
*/
|
2007-04-27 00:57:07 +02:00
|
|
|
ret = afs_vlocation_access_vl_by_id(vl, key, vid, voltype, vldb);
|
2005-04-17 00:20:36 +02:00
|
|
|
switch (ret) {
|
|
|
|
/* net error */
|
|
|
|
default:
|
2007-04-27 00:55:03 +02:00
|
|
|
printk(KERN_WARNING "kAFS:"
|
|
|
|
" failed to update volume '%s' (%x) up in '%s': %d\n",
|
|
|
|
vl->vldb.name, vid, vl->cell->name, ret);
|
|
|
|
_leave(" = %d", ret);
|
|
|
|
return ret;
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
/* pulled from local cache into memory */
|
|
|
|
case 0:
|
2007-04-27 00:55:03 +02:00
|
|
|
_leave(" = 0");
|
|
|
|
return 0;
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
/* uh oh... looks like the volume got deleted */
|
|
|
|
case -ENOMEDIUM:
|
2007-04-27 00:55:03 +02:00
|
|
|
printk(KERN_ERR "kAFS:"
|
|
|
|
" volume '%s' (%x) does not exist '%s'\n",
|
|
|
|
vl->vldb.name, vid, vl->cell->name);
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
/* TODO: make existing record unavailable */
|
2007-04-27 00:55:03 +02:00
|
|
|
_leave(" = %d", ret);
|
|
|
|
return ret;
|
2005-04-17 00:20:36 +02:00
|
|
|
}
|
2007-04-27 00:55:03 +02:00
|
|
|
}
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2007-04-27 00:55:03 +02:00
|
|
|
/*
|
|
|
|
* apply the update to a VL record
|
|
|
|
*/
|
|
|
|
static void afs_vlocation_apply_update(struct afs_vlocation *vl,
|
|
|
|
struct afs_cache_vlocation *vldb)
|
|
|
|
{
|
|
|
|
_debug("Done VL Lookup: %s %02x { %08x(%x) %08x(%x) %08x(%x) }",
|
|
|
|
vldb->name, vldb->vidmask,
|
|
|
|
ntohl(vldb->servers[0].s_addr), vldb->srvtmask[0],
|
|
|
|
ntohl(vldb->servers[1].s_addr), vldb->srvtmask[1],
|
|
|
|
ntohl(vldb->servers[2].s_addr), vldb->srvtmask[2]);
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2007-04-27 00:55:03 +02:00
|
|
|
_debug("Vids: %08x %08x %08x",
|
|
|
|
vldb->vid[0], vldb->vid[1], vldb->vid[2]);
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2007-04-27 00:55:03 +02:00
|
|
|
if (strcmp(vldb->name, vl->vldb.name) != 0)
|
|
|
|
printk(KERN_NOTICE "kAFS:"
|
|
|
|
" name of volume '%s' changed to '%s' on server\n",
|
|
|
|
vl->vldb.name, vldb->name);
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2007-04-27 00:55:03 +02:00
|
|
|
vl->vldb = *vldb;
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2009-04-03 17:42:41 +02:00
|
|
|
#ifdef CONFIG_AFS_FSCACHE
|
|
|
|
fscache_update_cookie(vl->cache);
|
2005-04-17 00:20:36 +02:00
|
|
|
#endif
|
2007-04-27 00:49:28 +02:00
|
|
|
}
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
/*
|
2007-04-27 00:55:03 +02:00
|
|
|
* fill in a volume location record, consulting the cache and the VL server
|
|
|
|
* both
|
2005-04-17 00:20:36 +02:00
|
|
|
*/
|
2007-04-27 00:57:07 +02:00
|
|
|
static int afs_vlocation_fill_in_record(struct afs_vlocation *vl,
|
|
|
|
struct key *key)
|
2005-04-17 00:20:36 +02:00
|
|
|
{
|
2007-04-27 00:55:03 +02:00
|
|
|
struct afs_cache_vlocation vldb;
|
|
|
|
int ret;
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2007-04-27 00:55:03 +02:00
|
|
|
_enter("");
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2007-04-27 00:55:03 +02:00
|
|
|
ASSERTCMP(vl->valid, ==, 0);
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2007-04-27 00:55:03 +02:00
|
|
|
memset(&vldb, 0, sizeof(vldb));
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2007-04-27 00:55:03 +02:00
|
|
|
/* see if we have an in-cache copy (will set vl->valid if there is) */
|
2009-04-03 17:42:41 +02:00
|
|
|
#ifdef CONFIG_AFS_FSCACHE
|
|
|
|
vl->cache = fscache_acquire_cookie(vl->cell->cache,
|
|
|
|
&afs_vlocation_cache_index_def, vl);
|
2007-04-27 00:55:03 +02:00
|
|
|
#endif
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2007-04-27 00:55:03 +02:00
|
|
|
if (vl->valid) {
|
|
|
|
/* try to update a known volume in the cell VL databases by
|
|
|
|
* ID as the name may have changed */
|
|
|
|
_debug("found in cache");
|
2007-04-27 00:57:07 +02:00
|
|
|
ret = afs_vlocation_update_record(vl, key, &vldb);
|
2007-04-27 00:55:03 +02:00
|
|
|
} else {
|
|
|
|
/* try to look up an unknown volume in the cell VL databases by
|
|
|
|
* name */
|
2007-04-27 00:57:07 +02:00
|
|
|
ret = afs_vlocation_access_vl_by_name(vl, key, &vldb);
|
2007-04-27 00:55:03 +02:00
|
|
|
if (ret < 0) {
|
|
|
|
printk("kAFS: failed to locate '%s' in cell '%s'\n",
|
|
|
|
vl->vldb.name, vl->cell->name);
|
|
|
|
return ret;
|
|
|
|
}
|
2005-04-17 00:20:36 +02:00
|
|
|
}
|
|
|
|
|
2007-04-27 00:55:03 +02:00
|
|
|
afs_vlocation_apply_update(vl, &vldb);
|
|
|
|
_leave(" = 0");
|
|
|
|
return 0;
|
2007-04-27 00:49:28 +02:00
|
|
|
}
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
/*
|
2007-04-27 00:55:03 +02:00
|
|
|
* queue a vlocation record for updates
|
2005-04-17 00:20:36 +02:00
|
|
|
*/
|
2007-10-17 08:26:41 +02:00
|
|
|
static void afs_vlocation_queue_for_updates(struct afs_vlocation *vl)
|
2005-04-17 00:20:36 +02:00
|
|
|
{
|
2007-04-27 00:55:03 +02:00
|
|
|
struct afs_vlocation *xvl;
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2007-04-27 00:55:03 +02:00
|
|
|
/* wait at least 10 minutes before updating... */
|
|
|
|
vl->update_at = get_seconds() + afs_vlocation_update_timeout;
|
|
|
|
|
|
|
|
spin_lock(&afs_vlocation_updates_lock);
|
|
|
|
|
|
|
|
if (!list_empty(&afs_vlocation_updates)) {
|
|
|
|
/* ... but wait at least 1 second more than the newest record
|
|
|
|
* already queued so that we don't spam the VL server suddenly
|
|
|
|
* with lots of requests
|
|
|
|
*/
|
|
|
|
xvl = list_entry(afs_vlocation_updates.prev,
|
|
|
|
struct afs_vlocation, update);
|
|
|
|
if (vl->update_at <= xvl->update_at)
|
|
|
|
vl->update_at = xvl->update_at + 1;
|
|
|
|
} else {
|
|
|
|
queue_delayed_work(afs_vlocation_update_worker,
|
|
|
|
&afs_vlocation_update,
|
|
|
|
afs_vlocation_update_timeout * HZ);
|
2005-04-17 00:20:36 +02:00
|
|
|
}
|
2007-04-27 00:55:03 +02:00
|
|
|
|
|
|
|
list_add_tail(&vl->update, &afs_vlocation_updates);
|
|
|
|
spin_unlock(&afs_vlocation_updates_lock);
|
2007-04-27 00:49:28 +02:00
|
|
|
}
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
/*
|
2007-04-27 00:55:03 +02:00
|
|
|
* lookup volume location
|
|
|
|
* - iterate through the VL servers in a cell until one of them admits knowing
|
|
|
|
* about the volume in question
|
|
|
|
* - lookup in the local cache if not able to find on the VL server
|
|
|
|
* - insert/update in the local cache if did get a VL response
|
2005-04-17 00:20:36 +02:00
|
|
|
*/
|
2007-04-27 00:55:03 +02:00
|
|
|
struct afs_vlocation *afs_vlocation_lookup(struct afs_cell *cell,
|
2007-04-27 00:57:07 +02:00
|
|
|
struct key *key,
|
2007-04-27 00:55:03 +02:00
|
|
|
const char *name,
|
|
|
|
size_t namesz)
|
2005-04-17 00:20:36 +02:00
|
|
|
{
|
2007-04-27 00:55:03 +02:00
|
|
|
struct afs_vlocation *vl;
|
|
|
|
int ret;
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2007-04-27 00:57:07 +02:00
|
|
|
_enter("{%s},{%x},%*.*s,%zu",
|
|
|
|
cell->name, key_serial(key),
|
|
|
|
(int) namesz, (int) namesz, name, namesz);
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2007-11-05 23:50:57 +01:00
|
|
|
if (namesz >= sizeof(vl->vldb.name)) {
|
2007-04-27 00:55:03 +02:00
|
|
|
_leave(" = -ENAMETOOLONG");
|
|
|
|
return ERR_PTR(-ENAMETOOLONG);
|
|
|
|
}
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2007-04-27 00:55:03 +02:00
|
|
|
/* see if we have an in-memory copy first */
|
|
|
|
down_write(&cell->vl_sem);
|
|
|
|
spin_lock(&cell->vl_lock);
|
|
|
|
list_for_each_entry(vl, &cell->vl_list, link) {
|
|
|
|
if (vl->vldb.name[namesz] != '\0')
|
|
|
|
continue;
|
|
|
|
if (memcmp(vl->vldb.name, name, namesz) == 0)
|
|
|
|
goto found_in_memory;
|
2005-04-17 00:20:36 +02:00
|
|
|
}
|
2007-04-27 00:55:03 +02:00
|
|
|
spin_unlock(&cell->vl_lock);
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2007-04-27 00:55:03 +02:00
|
|
|
/* not in the cell's in-memory lists - create a new record */
|
|
|
|
vl = afs_vlocation_alloc(cell, name, namesz);
|
|
|
|
if (!vl) {
|
|
|
|
up_write(&cell->vl_sem);
|
|
|
|
return ERR_PTR(-ENOMEM);
|
|
|
|
}
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2007-04-27 00:55:03 +02:00
|
|
|
afs_get_cell(cell);
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2007-04-27 00:55:03 +02:00
|
|
|
list_add_tail(&vl->link, &cell->vl_list);
|
|
|
|
vl->state = AFS_VL_CREATING;
|
|
|
|
up_write(&cell->vl_sem);
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2007-04-27 00:55:03 +02:00
|
|
|
fill_in_record:
|
2007-04-27 00:57:07 +02:00
|
|
|
ret = afs_vlocation_fill_in_record(vl, key);
|
2007-04-27 00:55:03 +02:00
|
|
|
if (ret < 0)
|
|
|
|
goto error_abandon;
|
2007-04-27 05:39:14 +02:00
|
|
|
spin_lock(&vl->lock);
|
2007-04-27 00:55:03 +02:00
|
|
|
vl->state = AFS_VL_VALID;
|
2007-04-27 05:39:14 +02:00
|
|
|
spin_unlock(&vl->lock);
|
2007-04-28 00:26:30 +02:00
|
|
|
wake_up(&vl->waitq);
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2009-04-03 17:42:41 +02:00
|
|
|
/* update volume entry in local cache */
|
|
|
|
#ifdef CONFIG_AFS_FSCACHE
|
|
|
|
fscache_update_cookie(vl->cache);
|
|
|
|
#endif
|
|
|
|
|
2007-04-27 00:55:03 +02:00
|
|
|
/* schedule for regular updates */
|
|
|
|
afs_vlocation_queue_for_updates(vl);
|
|
|
|
goto success;
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2007-04-27 00:55:03 +02:00
|
|
|
found_in_memory:
|
|
|
|
/* found in memory */
|
|
|
|
_debug("found in memory");
|
|
|
|
atomic_inc(&vl->usage);
|
|
|
|
spin_unlock(&cell->vl_lock);
|
|
|
|
if (!list_empty(&vl->grave)) {
|
|
|
|
spin_lock(&afs_vlocation_graveyard_lock);
|
|
|
|
list_del_init(&vl->grave);
|
|
|
|
spin_unlock(&afs_vlocation_graveyard_lock);
|
2005-04-17 00:20:36 +02:00
|
|
|
}
|
2007-04-27 00:55:03 +02:00
|
|
|
up_write(&cell->vl_sem);
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2007-04-27 00:55:03 +02:00
|
|
|
/* see if it was an abandoned record that we might try filling in */
|
2007-04-27 05:39:14 +02:00
|
|
|
spin_lock(&vl->lock);
|
2007-04-27 00:55:03 +02:00
|
|
|
while (vl->state != AFS_VL_VALID) {
|
|
|
|
afs_vlocation_state_t state = vl->state;
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2007-04-27 00:55:03 +02:00
|
|
|
_debug("invalid [state %d]", state);
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2007-04-28 00:26:30 +02:00
|
|
|
if (state == AFS_VL_NEW || state == AFS_VL_NO_VOLUME) {
|
2007-04-27 05:39:14 +02:00
|
|
|
vl->state = AFS_VL_CREATING;
|
|
|
|
spin_unlock(&vl->lock);
|
|
|
|
goto fill_in_record;
|
2007-04-27 00:55:03 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/* must now wait for creation or update by someone else to
|
|
|
|
* complete */
|
|
|
|
_debug("wait");
|
|
|
|
|
2007-04-27 05:39:14 +02:00
|
|
|
spin_unlock(&vl->lock);
|
2007-04-28 00:26:30 +02:00
|
|
|
ret = wait_event_interruptible(vl->waitq,
|
|
|
|
vl->state == AFS_VL_NEW ||
|
|
|
|
vl->state == AFS_VL_VALID ||
|
|
|
|
vl->state == AFS_VL_NO_VOLUME);
|
2007-04-27 00:55:03 +02:00
|
|
|
if (ret < 0)
|
|
|
|
goto error;
|
2007-04-27 05:39:14 +02:00
|
|
|
spin_lock(&vl->lock);
|
2005-04-17 00:20:36 +02:00
|
|
|
}
|
2007-04-27 05:39:14 +02:00
|
|
|
spin_unlock(&vl->lock);
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2007-04-27 00:55:03 +02:00
|
|
|
success:
|
2009-04-03 17:42:41 +02:00
|
|
|
_leave(" = %p", vl);
|
2007-04-27 00:55:03 +02:00
|
|
|
return vl;
|
|
|
|
|
|
|
|
error_abandon:
|
2007-04-27 05:39:14 +02:00
|
|
|
spin_lock(&vl->lock);
|
2007-04-27 00:55:03 +02:00
|
|
|
vl->state = AFS_VL_NEW;
|
2007-04-27 05:39:14 +02:00
|
|
|
spin_unlock(&vl->lock);
|
2007-04-28 00:26:30 +02:00
|
|
|
wake_up(&vl->waitq);
|
2007-04-27 00:55:03 +02:00
|
|
|
error:
|
|
|
|
ASSERT(vl != NULL);
|
|
|
|
afs_put_vlocation(vl);
|
2005-04-17 00:20:36 +02:00
|
|
|
_leave(" = %d", ret);
|
2007-04-27 00:55:03 +02:00
|
|
|
return ERR_PTR(ret);
|
2007-04-27 00:49:28 +02:00
|
|
|
}
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
/*
|
2007-04-27 00:55:03 +02:00
|
|
|
* finish using a volume location record
|
2005-04-17 00:20:36 +02:00
|
|
|
*/
|
2007-04-27 00:55:03 +02:00
|
|
|
void afs_put_vlocation(struct afs_vlocation *vl)
|
2005-04-17 00:20:36 +02:00
|
|
|
{
|
2007-04-27 00:55:03 +02:00
|
|
|
if (!vl)
|
|
|
|
return;
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2007-04-27 00:55:03 +02:00
|
|
|
_enter("%s", vl->vldb.name);
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2007-04-27 00:55:03 +02:00
|
|
|
ASSERTCMP(atomic_read(&vl->usage), >, 0);
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2007-04-27 00:55:03 +02:00
|
|
|
if (likely(!atomic_dec_and_test(&vl->usage))) {
|
|
|
|
_leave("");
|
|
|
|
return;
|
|
|
|
}
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2007-04-27 00:55:03 +02:00
|
|
|
spin_lock(&afs_vlocation_graveyard_lock);
|
|
|
|
if (atomic_read(&vl->usage) == 0) {
|
|
|
|
_debug("buried");
|
|
|
|
list_move_tail(&vl->grave, &afs_vlocation_graveyard);
|
|
|
|
vl->time_of_death = get_seconds();
|
2011-01-14 16:56:37 +01:00
|
|
|
queue_delayed_work(afs_wq, &afs_vlocation_reap,
|
|
|
|
afs_vlocation_timeout * HZ);
|
2007-04-27 00:55:03 +02:00
|
|
|
|
|
|
|
/* suspend updates on this record */
|
|
|
|
if (!list_empty(&vl->update)) {
|
|
|
|
spin_lock(&afs_vlocation_updates_lock);
|
|
|
|
list_del_init(&vl->update);
|
|
|
|
spin_unlock(&afs_vlocation_updates_lock);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
spin_unlock(&afs_vlocation_graveyard_lock);
|
|
|
|
_leave(" [killed?]");
|
2007-04-27 00:49:28 +02:00
|
|
|
}
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
/*
|
2007-04-27 00:55:03 +02:00
|
|
|
* destroy a dead volume location record
|
2005-04-17 00:20:36 +02:00
|
|
|
*/
|
2007-04-27 00:55:03 +02:00
|
|
|
static void afs_vlocation_destroy(struct afs_vlocation *vl)
|
2005-04-17 00:20:36 +02:00
|
|
|
{
|
2007-04-27 00:55:03 +02:00
|
|
|
_enter("%p", vl);
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2009-04-03 17:42:41 +02:00
|
|
|
#ifdef CONFIG_AFS_FSCACHE
|
|
|
|
fscache_relinquish_cookie(vl->cache, 0);
|
2007-04-27 00:55:03 +02:00
|
|
|
#endif
|
|
|
|
afs_put_cell(vl->cell);
|
|
|
|
kfree(vl);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* reap dead volume location records
|
|
|
|
*/
|
|
|
|
static void afs_vlocation_reaper(struct work_struct *work)
|
|
|
|
{
|
|
|
|
LIST_HEAD(corpses);
|
|
|
|
struct afs_vlocation *vl;
|
|
|
|
unsigned long delay, expiry;
|
|
|
|
time_t now;
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2007-04-27 00:55:03 +02:00
|
|
|
_enter("");
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2007-04-27 00:55:03 +02:00
|
|
|
now = get_seconds();
|
|
|
|
spin_lock(&afs_vlocation_graveyard_lock);
|
|
|
|
|
|
|
|
while (!list_empty(&afs_vlocation_graveyard)) {
|
|
|
|
vl = list_entry(afs_vlocation_graveyard.next,
|
|
|
|
struct afs_vlocation, grave);
|
|
|
|
|
|
|
|
_debug("check %p", vl);
|
|
|
|
|
|
|
|
/* the queue is ordered most dead first */
|
|
|
|
expiry = vl->time_of_death + afs_vlocation_timeout;
|
|
|
|
if (expiry > now) {
|
|
|
|
delay = (expiry - now) * HZ;
|
|
|
|
_debug("delay %lu", delay);
|
2011-01-14 16:56:37 +01:00
|
|
|
if (!queue_delayed_work(afs_wq, &afs_vlocation_reap,
|
|
|
|
delay)) {
|
2007-04-27 00:55:03 +02:00
|
|
|
cancel_delayed_work(&afs_vlocation_reap);
|
2011-01-14 16:56:37 +01:00
|
|
|
queue_delayed_work(afs_wq, &afs_vlocation_reap,
|
|
|
|
delay);
|
2007-04-27 00:55:03 +02:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2007-04-27 00:55:03 +02:00
|
|
|
spin_lock(&vl->cell->vl_lock);
|
|
|
|
if (atomic_read(&vl->usage) > 0) {
|
|
|
|
_debug("no reap");
|
|
|
|
list_del_init(&vl->grave);
|
2007-04-27 00:49:28 +02:00
|
|
|
} else {
|
2007-04-27 00:55:03 +02:00
|
|
|
_debug("reap");
|
|
|
|
list_move_tail(&vl->grave, &corpses);
|
|
|
|
list_del_init(&vl->link);
|
2005-04-17 00:20:36 +02:00
|
|
|
}
|
2007-04-27 00:55:03 +02:00
|
|
|
spin_unlock(&vl->cell->vl_lock);
|
2005-04-17 00:20:36 +02:00
|
|
|
}
|
|
|
|
|
2007-04-27 00:55:03 +02:00
|
|
|
spin_unlock(&afs_vlocation_graveyard_lock);
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2007-04-27 00:55:03 +02:00
|
|
|
/* now reap the corpses we've extracted */
|
|
|
|
while (!list_empty(&corpses)) {
|
|
|
|
vl = list_entry(corpses.next, struct afs_vlocation, grave);
|
|
|
|
list_del(&vl->grave);
|
|
|
|
afs_vlocation_destroy(vl);
|
2005-04-17 00:20:36 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
_leave("");
|
2007-04-27 00:55:03 +02:00
|
|
|
}
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2007-04-27 00:55:03 +02:00
|
|
|
/*
|
|
|
|
* initialise the VL update process
|
|
|
|
*/
|
|
|
|
int __init afs_vlocation_update_init(void)
|
|
|
|
{
|
|
|
|
afs_vlocation_update_worker =
|
|
|
|
create_singlethread_workqueue("kafs_vlupdated");
|
|
|
|
return afs_vlocation_update_worker ? 0 : -ENOMEM;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* discard all the volume location records for rmmod
|
|
|
|
*/
|
2007-05-03 12:12:46 +02:00
|
|
|
void afs_vlocation_purge(void)
|
2007-04-27 00:55:03 +02:00
|
|
|
{
|
|
|
|
afs_vlocation_timeout = 0;
|
|
|
|
|
|
|
|
spin_lock(&afs_vlocation_updates_lock);
|
|
|
|
list_del_init(&afs_vlocation_updates);
|
|
|
|
spin_unlock(&afs_vlocation_updates_lock);
|
|
|
|
cancel_delayed_work(&afs_vlocation_update);
|
|
|
|
queue_delayed_work(afs_vlocation_update_worker,
|
|
|
|
&afs_vlocation_update, 0);
|
|
|
|
destroy_workqueue(afs_vlocation_update_worker);
|
|
|
|
|
|
|
|
cancel_delayed_work(&afs_vlocation_reap);
|
2011-01-14 16:56:37 +01:00
|
|
|
queue_delayed_work(afs_wq, &afs_vlocation_reap, 0);
|
2007-04-27 00:49:28 +02:00
|
|
|
}
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
/*
|
2007-04-27 00:55:03 +02:00
|
|
|
* update a volume location
|
2005-04-17 00:20:36 +02:00
|
|
|
*/
|
2007-04-27 00:55:03 +02:00
|
|
|
static void afs_vlocation_updater(struct work_struct *work)
|
2005-04-17 00:20:36 +02:00
|
|
|
{
|
|
|
|
struct afs_cache_vlocation vldb;
|
2007-04-27 00:55:03 +02:00
|
|
|
struct afs_vlocation *vl, *xvl;
|
|
|
|
time_t now;
|
|
|
|
long timeout;
|
2005-04-17 00:20:36 +02:00
|
|
|
int ret;
|
|
|
|
|
2007-04-27 00:55:03 +02:00
|
|
|
_enter("");
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2007-04-27 00:55:03 +02:00
|
|
|
now = get_seconds();
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2007-04-27 00:55:03 +02:00
|
|
|
/* find a record to update */
|
|
|
|
spin_lock(&afs_vlocation_updates_lock);
|
|
|
|
for (;;) {
|
|
|
|
if (list_empty(&afs_vlocation_updates)) {
|
|
|
|
spin_unlock(&afs_vlocation_updates_lock);
|
|
|
|
_leave(" [nothing]");
|
|
|
|
return;
|
|
|
|
}
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2007-04-27 00:55:03 +02:00
|
|
|
vl = list_entry(afs_vlocation_updates.next,
|
|
|
|
struct afs_vlocation, update);
|
|
|
|
if (atomic_read(&vl->usage) > 0)
|
|
|
|
break;
|
|
|
|
list_del_init(&vl->update);
|
2005-04-17 00:20:36 +02:00
|
|
|
}
|
|
|
|
|
2007-04-27 00:55:03 +02:00
|
|
|
timeout = vl->update_at - now;
|
|
|
|
if (timeout > 0) {
|
|
|
|
queue_delayed_work(afs_vlocation_update_worker,
|
|
|
|
&afs_vlocation_update, timeout * HZ);
|
|
|
|
spin_unlock(&afs_vlocation_updates_lock);
|
|
|
|
_leave(" [nothing]");
|
2005-04-17 00:20:36 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2007-04-27 00:55:03 +02:00
|
|
|
list_del_init(&vl->update);
|
|
|
|
atomic_inc(&vl->usage);
|
|
|
|
spin_unlock(&afs_vlocation_updates_lock);
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2007-04-27 00:55:03 +02:00
|
|
|
/* we can now perform the update */
|
|
|
|
_debug("update %s", vl->vldb.name);
|
|
|
|
vl->state = AFS_VL_UPDATING;
|
|
|
|
vl->upd_rej_cnt = 0;
|
|
|
|
vl->upd_busy_cnt = 0;
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2007-04-27 00:57:07 +02:00
|
|
|
ret = afs_vlocation_update_record(vl, NULL, &vldb);
|
2007-04-27 05:39:14 +02:00
|
|
|
spin_lock(&vl->lock);
|
2007-04-27 00:55:03 +02:00
|
|
|
switch (ret) {
|
|
|
|
case 0:
|
|
|
|
afs_vlocation_apply_update(vl, &vldb);
|
|
|
|
vl->state = AFS_VL_VALID;
|
|
|
|
break;
|
|
|
|
case -ENOMEDIUM:
|
|
|
|
vl->state = AFS_VL_VOLUME_DELETED;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
vl->state = AFS_VL_UNCERTAIN;
|
|
|
|
break;
|
|
|
|
}
|
2007-04-27 05:39:14 +02:00
|
|
|
spin_unlock(&vl->lock);
|
2007-04-28 00:26:30 +02:00
|
|
|
wake_up(&vl->waitq);
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2007-04-27 00:55:03 +02:00
|
|
|
/* and then reschedule */
|
|
|
|
_debug("reschedule");
|
|
|
|
vl->update_at = get_seconds() + afs_vlocation_update_timeout;
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2007-04-27 00:55:03 +02:00
|
|
|
spin_lock(&afs_vlocation_updates_lock);
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2007-04-27 00:55:03 +02:00
|
|
|
if (!list_empty(&afs_vlocation_updates)) {
|
|
|
|
/* next update in 10 minutes, but wait at least 1 second more
|
|
|
|
* than the newest record already queued so that we don't spam
|
|
|
|
* the VL server suddenly with lots of requests
|
|
|
|
*/
|
|
|
|
xvl = list_entry(afs_vlocation_updates.prev,
|
|
|
|
struct afs_vlocation, update);
|
|
|
|
if (vl->update_at <= xvl->update_at)
|
|
|
|
vl->update_at = xvl->update_at + 1;
|
|
|
|
xvl = list_entry(afs_vlocation_updates.next,
|
|
|
|
struct afs_vlocation, update);
|
|
|
|
timeout = xvl->update_at - now;
|
|
|
|
if (timeout < 0)
|
|
|
|
timeout = 0;
|
|
|
|
} else {
|
|
|
|
timeout = afs_vlocation_update_timeout;
|
2005-04-17 00:20:36 +02:00
|
|
|
}
|
|
|
|
|
2007-04-27 00:55:03 +02:00
|
|
|
ASSERT(list_empty(&vl->update));
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2007-04-27 00:55:03 +02:00
|
|
|
list_add_tail(&vl->update, &afs_vlocation_updates);
|
2005-04-17 00:20:36 +02:00
|
|
|
|
2007-04-27 00:55:03 +02:00
|
|
|
_debug("timeout %ld", timeout);
|
|
|
|
queue_delayed_work(afs_vlocation_update_worker,
|
|
|
|
&afs_vlocation_update, timeout * HZ);
|
|
|
|
spin_unlock(&afs_vlocation_updates_lock);
|
|
|
|
afs_put_vlocation(vl);
|
2007-04-27 00:49:28 +02:00
|
|
|
}
|