From 171a32e147a886d104ac6abfdabd2f0d00a2790e Mon Sep 17 00:00:00 2001 From: Jukka Rissanen Date: Thu, 9 Oct 2014 14:04:57 +0300 Subject: [PATCH] doc: Updating todo/features about hwsim radio id support Lowering priority of HWSIM_ATTR_RADIO_ID task as we get the radio id in error code field. If we really want to create a new attribute for the radio id, then the TODO entry is still valid. --- TODO | 7 +++++-- doc/features.txt | 9 +++++++++ 2 files changed, 14 insertions(+), 2 deletions(-) diff --git a/TODO b/TODO index 95dff8c6..70091052 100644 --- a/TODO +++ b/TODO @@ -22,9 +22,12 @@ mac80211_hwsim The HWSIM_CMD_CREATE_RADIO command should return HWSIM_CMD_CREATE_RADIO on success so that the radio id for the created wiphy can be mapped by - test tools or when having to destroy that radio again. + test tools or when having to destroy that radio again. Note that currently + the radio is is parsed properly (commit a052cb5d3c29) as it comes in + the error code field, but if we want to create a new attribute for the + radio id, then some coding is needed. - Priority: High + Priority: Low Complexity: C1 - Add support for client tracking of HWSIM_CMD_CREATE_RADIO diff --git a/doc/features.txt b/doc/features.txt index 0177f765..ca95a171 100644 --- a/doc/features.txt +++ b/doc/features.txt @@ -12,3 +12,12 @@ command line option. Once iwmon terminates, the netlink monitor interface is removed (in case iwmon created it). + + +HWSIM +===== + +The radio id from kernel mac80211_hwsim module is parsed properly in +hwsim. The radio id is not returned as HWSIM_ATTR_RADIO_ID but instead +it is returned in error message. If the error code > 0, then that means +the radio id. If the error code < 0, then that indicates a real error.