Page MenuHomeFreeBSD

net80211: split scan_task() (#3) (into scan_start() and scan_curchan_task() functions)
ClosedPublic

Authored by avos on Jan 30 2016, 10:41 PM.
Tags
None
Referenced Files
Unknown Object (File)
Thu, Mar 20, 5:32 AM
Unknown Object (File)
Mar 7 2025, 12:24 AM
Unknown Object (File)
Feb 23 2025, 4:17 AM
Unknown Object (File)
Feb 22 2025, 3:53 AM
Unknown Object (File)
Feb 21 2025, 10:30 PM
Unknown Object (File)
Feb 21 2025, 12:22 PM
Unknown Object (File)
Dec 17 2024, 1:39 PM
Unknown Object (File)
Dec 11 2024, 3:00 AM
Subscribers

Details

Summary

(This part should fix the problem, described in https://lists.freebsd.org/pipermail/freebsd-wireless/2016-January/006420.html)

  • Rename ss_scan_task into ss_scan_start (better describes it's current purpose)
  • Utilize taskqueue_*_timeout() functions instead of current mechanism:
    • reschedule scan_curchan_task() via taskqueue_enqueue_timeout() for every 'maxdwell' msecs (will replace infinite loop + sleeping for 'maxdwell' period via cv_wait());
    • rerun the task immediately when an external event occurs (instead of waking it up via cv_signal())

Also, use mtx_sleep() to wait for null frame transmission (allows to drop conditional variable).

Test Plan

Tested with:

  • Intel 3945BG, STA mode;
  • RTL8188EU, STA mode.

Diff Detail

Repository
rS FreeBSD src repository - subversion
Lint
Lint Not Applicable
Unit
Tests Not Applicable

Event Timeline

avos retitled this revision from to net80211: split scan_task() (#3) (into scan_start() and scan_curchan_task() functions).
avos updated this object.
avos edited the test plan for this revision. (Show Details)
avos added a reviewer: adrian.
avos set the repository for this revision to rS FreeBSD src repository - subversion.
adrian edited edge metadata.
This revision is now accepted and ready to land.Feb 29 2016, 7:28 AM
This revision was automatically updated to reflect the committed changes.