Commit 116676ca authored by Andreas Gruenbacher's avatar Andreas Gruenbacher Committed by Philipp Reisner

drbd: Rename enum drbd_ret_codes to enum drbd_ret_code

Signed-off-by: default avatarPhilipp Reisner <philipp.reisner@linbit.com>
Signed-off-by: default avatarLars Ellenberg <lars.ellenberg@linbit.com>
parent 0cf9d27e
...@@ -3570,7 +3570,7 @@ void drbd_md_sync(struct drbd_conf *mdev) ...@@ -3570,7 +3570,7 @@ void drbd_md_sync(struct drbd_conf *mdev)
* @mdev: DRBD device. * @mdev: DRBD device.
* @bdev: Device from which the meta data should be read in. * @bdev: Device from which the meta data should be read in.
* *
* Return 0 (NO_ERROR) on success, and an enum drbd_ret_codes in case * Return 0 (NO_ERROR) on success, and an enum drbd_ret_code in case
* something goes wrong. Currently only: ERR_IO_MD_DISK, ERR_MD_INVALID. * something goes wrong. Currently only: ERR_IO_MD_DISK, ERR_MD_INVALID.
*/ */
int drbd_md_read(struct drbd_conf *mdev, struct drbd_backing_dev *bdev) int drbd_md_read(struct drbd_conf *mdev, struct drbd_backing_dev *bdev)
......
...@@ -849,7 +849,7 @@ static void drbd_suspend_al(struct drbd_conf *mdev) ...@@ -849,7 +849,7 @@ static void drbd_suspend_al(struct drbd_conf *mdev)
static int drbd_nl_disk_conf(struct drbd_conf *mdev, struct drbd_nl_cfg_req *nlp, static int drbd_nl_disk_conf(struct drbd_conf *mdev, struct drbd_nl_cfg_req *nlp,
struct drbd_nl_cfg_reply *reply) struct drbd_nl_cfg_reply *reply)
{ {
enum drbd_ret_codes retcode; enum drbd_ret_code retcode;
enum determine_dev_size dd; enum determine_dev_size dd;
sector_t max_possible_sectors; sector_t max_possible_sectors;
sector_t min_md_device_sectors; sector_t min_md_device_sectors;
...@@ -1278,7 +1278,7 @@ static int drbd_nl_net_conf(struct drbd_conf *mdev, struct drbd_nl_cfg_req *nlp, ...@@ -1278,7 +1278,7 @@ static int drbd_nl_net_conf(struct drbd_conf *mdev, struct drbd_nl_cfg_req *nlp,
struct drbd_nl_cfg_reply *reply) struct drbd_nl_cfg_reply *reply)
{ {
int i, ns; int i, ns;
enum drbd_ret_codes retcode; enum drbd_ret_code retcode;
struct net_conf *new_conf = NULL; struct net_conf *new_conf = NULL;
struct crypto_hash *tfm = NULL; struct crypto_hash *tfm = NULL;
struct crypto_hash *integrity_w_tfm = NULL; struct crypto_hash *integrity_w_tfm = NULL;
......
...@@ -103,7 +103,7 @@ enum drbd_on_congestion { ...@@ -103,7 +103,7 @@ enum drbd_on_congestion {
}; };
/* KEEP the order, do not delete or insert. Only append. */ /* KEEP the order, do not delete or insert. Only append. */
enum drbd_ret_codes { enum drbd_ret_code {
ERR_CODE_BASE = 100, ERR_CODE_BASE = 100,
NO_ERROR = 101, NO_ERROR = 101,
ERR_LOCAL_ADDR = 102, ERR_LOCAL_ADDR = 102,
......
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