Commit aa5c0144 authored by Boaz Harrosh's avatar Boaz Harrosh Committed by Trond Myklebust

pnfs-obj: pnfs_osd_xdr: Remove dead code and cleanup

* Some leftovers from ancient times.
* This file will only define common types and client API.
  Remove server from comments

Signed-off-by: Boaz Harrosh <Boaz Harrosh bharrosh@panasas.com>
Signed-off-by: default avatarTrond Myklebust <Trond.Myklebust@netapp.com>
parent 7c24d948
...@@ -41,9 +41,6 @@ ...@@ -41,9 +41,6 @@
#include <linux/nfs_fs.h> #include <linux/nfs_fs.h>
#include <linux/nfs_page.h> #include <linux/nfs_page.h>
#include <scsi/osd_protocol.h>
#define PNFS_OSD_OSDNAME_MAXSIZE 256
/* /*
* draft-ietf-nfsv4-minorversion-22 * draft-ietf-nfsv4-minorversion-22
...@@ -99,12 +96,6 @@ struct pnfs_osd_objid { ...@@ -99,12 +96,6 @@ struct pnfs_osd_objid {
#define _DEVID_HI(oid_device_id) \ #define _DEVID_HI(oid_device_id) \
(unsigned long long)be64_to_cpup(((__be64 *)(oid_device_id)->data) + 1) (unsigned long long)be64_to_cpup(((__be64 *)(oid_device_id)->data) + 1)
static inline int
pnfs_osd_objid_xdr_sz(void)
{
return (NFS4_DEVICEID4_SIZE / 4) + 2 + 2;
}
enum pnfs_osd_version { enum pnfs_osd_version {
PNFS_OSD_MISSING = 0, PNFS_OSD_MISSING = 0,
PNFS_OSD_VERSION_1 = 1, PNFS_OSD_VERSION_1 = 1,
...@@ -189,8 +180,6 @@ struct pnfs_osd_targetid { ...@@ -189,8 +180,6 @@ struct pnfs_osd_targetid {
struct nfs4_string oti_scsi_device_id; struct nfs4_string oti_scsi_device_id;
}; };
enum { PNFS_OSD_TARGETID_MAX = 1 + PNFS_OSD_OSDNAME_MAXSIZE / 4 };
/* struct netaddr4 { /* struct netaddr4 {
* // see struct rpcb in RFC1833 * // see struct rpcb in RFC1833
* string r_netid<>; // network id * string r_netid<>; // network id
...@@ -207,12 +196,6 @@ struct pnfs_osd_targetaddr { ...@@ -207,12 +196,6 @@ struct pnfs_osd_targetaddr {
struct pnfs_osd_net_addr ota_netaddr; struct pnfs_osd_net_addr ota_netaddr;
}; };
enum {
NETWORK_ID_MAX = 16 / 4,
UNIVERSAL_ADDRESS_MAX = 64 / 4,
PNFS_OSD_TARGETADDR_MAX = 3 + NETWORK_ID_MAX + UNIVERSAL_ADDRESS_MAX,
};
struct pnfs_osd_deviceaddr { struct pnfs_osd_deviceaddr {
struct pnfs_osd_targetid oda_targetid; struct pnfs_osd_targetid oda_targetid;
struct pnfs_osd_targetaddr oda_targetaddr; struct pnfs_osd_targetaddr oda_targetaddr;
...@@ -222,15 +205,6 @@ struct pnfs_osd_deviceaddr { ...@@ -222,15 +205,6 @@ struct pnfs_osd_deviceaddr {
struct nfs4_string oda_osdname; struct nfs4_string oda_osdname;
}; };
enum {
ODA_OSDNAME_MAX = PNFS_OSD_OSDNAME_MAXSIZE / 4,
PNFS_OSD_DEVICEADDR_MAX =
PNFS_OSD_TARGETID_MAX + PNFS_OSD_TARGETADDR_MAX +
2 /*oda_lun*/ +
1 + OSD_SYSTEMID_LEN +
1 + ODA_OSDNAME_MAX,
};
/* LAYOUTCOMMIT: layoutupdate */ /* LAYOUTCOMMIT: layoutupdate */
/* union pnfs_osd_deltaspaceused4 switch (bool dsu_valid) { /* union pnfs_osd_deltaspaceused4 switch (bool dsu_valid) {
...@@ -279,7 +253,7 @@ struct pnfs_osd_ioerr { ...@@ -279,7 +253,7 @@ struct pnfs_osd_ioerr {
u32 oer_errno; u32 oer_errno;
}; };
/* OSD XDR API */ /* OSD XDR Client API */
/* Layout helpers */ /* Layout helpers */
/* Layout decoding is done in two parts: /* Layout decoding is done in two parts:
* 1. First Call pnfs_osd_xdr_decode_layout_map to read in only the header part * 1. First Call pnfs_osd_xdr_decode_layout_map to read in only the header part
...@@ -337,8 +311,7 @@ extern int ...@@ -337,8 +311,7 @@ extern int
pnfs_osd_xdr_encode_layoutupdate(struct xdr_stream *xdr, pnfs_osd_xdr_encode_layoutupdate(struct xdr_stream *xdr,
struct pnfs_osd_layoutupdate *lou); struct pnfs_osd_layoutupdate *lou);
/* osd_ioerror encoding/decoding (layout_return) */ /* osd_ioerror encoding (layout_return) */
/* Client */
extern __be32 *pnfs_osd_xdr_ioerr_reserve_space(struct xdr_stream *xdr); extern __be32 *pnfs_osd_xdr_ioerr_reserve_space(struct xdr_stream *xdr);
extern void pnfs_osd_xdr_encode_ioerr(__be32 *p, struct pnfs_osd_ioerr *ioerr); extern void pnfs_osd_xdr_encode_ioerr(__be32 *p, struct pnfs_osd_ioerr *ioerr);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment