/* time in seconds between reconnect tries, default to 30 s */ #define RECONNECT_DELAY 30 /* * Number of times to reconnect on error before giving up, 0 for * disabled, * -1 for forever
*/ #define MAX_RECONNECTS -1
struct rnbd_iu { union { struct request *rq; /* for block io */ void *buf; /* for user messages */
}; struct rtrs_permit *permit; union { /* use to send msg associated with a dev */ struct rnbd_clt_dev *dev; /* use to send msg associated with a sess */ struct rnbd_clt_session *sess;
}; struct sg_table sgt; struct work_struct work; int errno; struct rnbd_iu_comp comp;
atomic_t refcount; struct scatterlist first_sgl[]; /* must be the last one */
};
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.