Lines Matching defs:retry
5017 static int ipw2100_set_short_retry(struct ipw2100_priv *priv, u32 retry)
5026 cmd.host_command_parameters[0] = retry;
5032 priv->short_retry_limit = retry;
5037 static int ipw2100_set_long_retry(struct ipw2100_priv *priv, u32 retry)
5046 cmd.host_command_parameters[0] = retry;
5052 priv->long_retry_limit = retry;
6832 // range->retry_capa; /* What retry options are supported */
6833 // range->retry_flags; /* How to decode max/min retry limit */
6834 // range->r_time_flags; /* How to decode max/min retry life */
6837 // range->min_r_time; /* Minimal retry lifetime */
6838 // range->max_r_time; /* Maximal retry lifetime */
7317 if (wrqu->retry.flags & IW_RETRY_LIFETIME || wrqu->retry.disabled)
7320 if (!(wrqu->retry.flags & IW_RETRY_LIMIT))
7329 if (wrqu->retry.flags & IW_RETRY_SHORT) {
7330 err = ipw2100_set_short_retry(priv, wrqu->retry.value);
7332 wrqu->retry.value);
7336 if (wrqu->retry.flags & IW_RETRY_LONG) {
7337 err = ipw2100_set_long_retry(priv, wrqu->retry.value);
7339 wrqu->retry.value);
7343 err = ipw2100_set_short_retry(priv, wrqu->retry.value);
7345 err = ipw2100_set_long_retry(priv, wrqu->retry.value);
7347 IPW_DEBUG_WX("SET Both Retry Limits -> %d\n", wrqu->retry.value);
7364 wrqu->retry.disabled = 0; /* can't be disabled */
7366 if ((wrqu->retry.flags & IW_RETRY_TYPE) == IW_RETRY_LIFETIME)
7369 if (wrqu->retry.flags & IW_RETRY_LONG) {
7370 wrqu->retry.flags = IW_RETRY_LIMIT | IW_RETRY_LONG;
7371 wrqu->retry.value = priv->long_retry_limit;
7373 wrqu->retry.flags =
7378 wrqu->retry.value = priv->short_retry_limit;
7381 IPW_DEBUG_WX("GET Retry -> %d\n", wrqu->retry.value);