aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJiri Pirko <jpirko@redhat.com>2012-06-19 05:54:07 +0000
committerDavid S. Miller <davem@davemloft.net>2012-06-19 15:00:23 -0700
commitf82b959d26557fe4ce283d3b27050d4b8268ef1e (patch)
tree692ae82da402951d5f429ad95ff5fd6dcaf863c0
parentteam: lb: push hash counting into separate function (diff)
downloadlinux-dev-f82b959d26557fe4ce283d3b27050d4b8268ef1e.tar.xz
linux-dev-f82b959d26557fe4ce283d3b27050d4b8268ef1e.zip
team: allow read/write-only options
Signed-off-by: Jiri Pirko <jpirko@redhat.com> Signed-off-by: David S. Miller <davem@davemloft.net>
-rw-r--r--drivers/net/team/team.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/drivers/net/team/team.c b/drivers/net/team/team.c
index dea2d8afa2f4..f50b8ca8dc94 100644
--- a/drivers/net/team/team.c
+++ b/drivers/net/team/team.c
@@ -346,6 +346,8 @@ static int team_option_get(struct team *team,
struct team_option_inst *opt_inst,
struct team_gsetter_ctx *ctx)
{
+ if (!opt_inst->option->getter)
+ return -EOPNOTSUPP;
return opt_inst->option->getter(team, ctx);
}
@@ -355,6 +357,8 @@ static int team_option_set(struct team *team,
{
int err;
+ if (!opt_inst->option->setter)
+ return -EOPNOTSUPP;
err = opt_inst->option->setter(team, ctx);
if (err)
return err;