]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - fs/afs/vlclient.h
Linux-2.6.12-rc2
[mirror_ubuntu-artful-kernel.git] / fs / afs / vlclient.h
Content-type: text/html ]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - fs/afs/vlclient.h


500 - Internal Server Error

Malformed UTF-8 character (fatal) at (eval 6) line 1, <$fd> line 97.
CommitLineData
1da177e4
LT
1/* vlclient.h: Volume Location Service client interface
2 *
3 * Copyright (C) 2002 Red Hat, Inc. All Rights Reserved.
4 * Written by David Howells (dhowells@redhat.com)
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version
9 * 2 of the License, or (at your option) any later version.
10 */
11
12#ifndef _LINUX_AFS_VLCLIENT_H
13#define _LINUX_AFS_VLCLIENT_H
14
15#include "types.h"
16
17enum AFSVL_Errors {
18 AFSVL_IDEXIST = 363520, /* Volume Id entry exists in vl database */
19 AFSVL_IO = 363521, /* I/O related error */
20 AFSVL_NAMEEXIST = 363522, /* Volume name entry exists in vl database */
21 AFSVL_CREATEFAIL = 363523, /* Internal creation failure */
22 AFSVL_NOENT = 363524, /* No such entry */
23 AFSVL_EMPTY = 363525, /* Vl database is empty */
24 AFSVL_ENTDELETED = 363526, /* Entry is deleted (soft delete) */
25 AFSVL_BADNAME = 363527, /* Volume name is illegal */
26 AFSVL_BADINDEX = 363528, /* Index is out of range */
27 AFSVL_BADVOLTYPE = 363529, /* Bad volume type */
28 AFSVL_BADSERVER = 363530, /* Illegal server number (out of range) */
29 AFSVL_BADPARTITION = 363531, /* Bad partition number */
30 AFSVL_REPSFULL = 363532, /* Run out of space for Replication sites */
31 AFSVL_NOREPSERVER = 363533, /* No such Replication server site exists */
32 AFSVL_DUPREPSERVER = 363534, /* Replication site already exists */
33 AFSVL_RWNOTFOUND = 363535, /* Parent R/W entry not found */
34 AFSVL_BADREFCOUNT = 363536, /* Illegal Reference Count number */
35 AFSVL_SIZEEXCEEDED = 363537, /* Vl size for attributes exceeded */
36 AFSVL_BADENTRY = 363538, /* Bad incoming vl entry */
37 AFSVL_BADVOLIDBUMP = 363539, /* Illegal max volid increment */
38 AFSVL_IDALREADYHASHED = 363540, /* RO/BACK id already hashed */
39 AFSVL_ENTRYLOCKED = 363541, /* Vl entry is already locked */
40 AFSVL_BADVOLOPER = 363542, /* Bad volume operation code */
41 AFSVL_BADRELLOCKTYPE = 363543, /* Bad release lock type */
42 AFSVL_RERELEASE = 363544, /* Status report: last release was aborted */
43