Lines Matching defs:retry

5006 static int ipw2100_set_short_retry(struct ipw2100_priv *priv, u32 retry)
5015 cmd.host_command_parameters[0] = retry;
5021 priv->short_retry_limit = retry;
5026 static int ipw2100_set_long_retry(struct ipw2100_priv *priv, u32 retry)
5035 cmd.host_command_parameters[0] = retry;
5041 priv->long_retry_limit = retry;
6821 // range->retry_capa; /* What retry options are supported */
6822 // range->retry_flags; /* How to decode max/min retry limit */
6823 // range->r_time_flags; /* How to decode max/min retry life */
6826 // range->min_r_time; /* Minimal retry lifetime */
6827 // range->max_r_time; /* Maximal retry lifetime */
7306 if (wrqu->retry.flags & IW_RETRY_LIFETIME || wrqu->retry.disabled)
7309 if (!(wrqu->retry.flags & IW_RETRY_LIMIT))
7318 if (wrqu->retry.flags & IW_RETRY_SHORT) {
7319 err = ipw2100_set_short_retry(priv, wrqu->retry.value);
7321 wrqu->retry.value);
7325 if (wrqu->retry.flags & IW_RETRY_LONG) {
7326 err = ipw2100_set_long_retry(priv, wrqu->retry.value);
7328 wrqu->retry.value);
7332 err = ipw2100_set_short_retry(priv, wrqu->retry.value);
7334 err = ipw2100_set_long_retry(priv, wrqu->retry.value);
7336 IPW_DEBUG_WX("SET Both Retry Limits -> %d\n", wrqu->retry.value);
7353 wrqu->retry.disabled = 0; /* can't be disabled */
7355 if ((wrqu->retry.flags & IW_RETRY_TYPE) == IW_RETRY_LIFETIME)
7358 if (wrqu->retry.flags & IW_RETRY_LONG) {
7359 wrqu->retry.flags = IW_RETRY_LIMIT | IW_RETRY_LONG;
7360 wrqu->retry.value = priv->long_retry_limit;
7362 wrqu->retry.flags =
7367 wrqu->retry.value = priv->short_retry_limit;
7370 IPW_DEBUG_WX("GET Retry -> %d\n", wrqu->retry.value);