diff options
author | Andreas Gruenbacher <agruen@linbit.com> | 2011-06-21 14:58:22 +0400 |
---|---|---|
committer | Philipp Reisner <philipp.reisner@linbit.com> | 2012-11-08 19:57:47 +0400 |
commit | d0fa7fd680a56a3fd52817fe93c1c8abe7164ef1 (patch) | |
tree | e263271b6ff7e4c8b711c2ac9655f4141cb6ebef | |
parent | afbbfa88bc506bc13b957c3811bce299de1d31d5 (diff) | |
download | linux-d0fa7fd680a56a3fd52817fe93c1c8abe7164ef1.tar.xz |
drbd: Remove dead code
Signed-off-by: Philipp Reisner <philipp.reisner@linbit.com>
Signed-off-by: Lars Ellenberg <lars.ellenberg@linbit.com>
-rw-r--r-- | drivers/block/drbd/drbd_nl.c | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/drivers/block/drbd/drbd_nl.c b/drivers/block/drbd/drbd_nl.c index 930af5dbfa76..f92346296ae3 100644 --- a/drivers/block/drbd/drbd_nl.c +++ b/drivers/block/drbd/drbd_nl.c @@ -273,9 +273,6 @@ fail: static int drbd_adm_finish(struct genl_info *info, int retcode) { - struct nlattr *nla; - const char *resource_name = NULL; - if (adm_ctx.tconn) { kref_put(&adm_ctx.tconn->kref, &conn_destroy); adm_ctx.tconn = NULL; @@ -285,15 +282,6 @@ static int drbd_adm_finish(struct genl_info *info, int retcode) return -ENOMEM; adm_ctx.reply_dh->ret_code = retcode; - - nla = info->attrs[DRBD_NLA_CFG_CONTEXT]; - if (nla) { - int maxtype = ARRAY_SIZE(drbd_cfg_context_nl_policy) - 1; - nla = drbd_nla_find_nested(maxtype, nla, __nla_type(T_ctx_resource_name)); - if (nla && !IS_ERR(nla)) - resource_name = nla_data(nla); - } - drbd_adm_send_reply(adm_ctx.reply_skb, info); return 0; } |