diff options
author | Johannes Berg <johannes.berg@intel.com> | 2015-01-16 11:37:12 +0100 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2015-01-16 17:04:24 -0500 |
commit | f555f3d76aaade29c7e221a37ee64fe722955c09 (patch) | |
tree | 402f988d7aae0a8f14b068bb429c89941074a1a3 /include/net | |
parent | ac64da0b83d82abe62f78b3d0e21cca31aea24fa (diff) | |
download | linux-f555f3d76aaade29c7e221a37ee64fe722955c09.tar.bz2 |
genetlink: document parallel_ops
The kernel-doc for the parallel_ops family struct member is
missing, add it.
Signed-off-by: Johannes Berg <johannes.berg@intel.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/net')
-rw-r--r-- | include/net/genetlink.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/net/genetlink.h b/include/net/genetlink.h index 84125088c309..2ea2c55bdc87 100644 --- a/include/net/genetlink.h +++ b/include/net/genetlink.h @@ -27,6 +27,8 @@ struct genl_info; * @maxattr: maximum number of attributes supported * @netnsok: set to true if the family can handle network * namespaces and should be presented in all of them + * @parallel_ops: operations can be called in parallel and aren't + * synchronized by the core genetlink code * @pre_doit: called before an operation's doit callback, it may * do additional, common, filtering and return an error * @post_doit: called after an operation's doit callback, it may |