summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2026-07-01Revise manual editing instructions in mtabow.mduser/jakobl/mtabowJakobL-MSFT
Updated the wording for manual file editing instructions.
2026-07-01Update mtabow.mdJakobL-MSFT
2026-07-01Update mtabow.mdJakobL-MSFT
2026-07-01Update mtabow.mdJakobL-MSFT
2026-06-25Update mtabow.mdJakobL-MSFT
2026-06-24Clarify 'What' section in mtabow.mdJakobL-MSFT
2026-06-24Update Call to Action with HLK_MVHV installation stepsJakobL-MSFT
Added detailed instructions for HLK_MVHV setup.
2026-06-24Update mtabow.mdJakobL-MSFT
2026-06-24Update mtabow.mdJakobL-MSFT
2026-06-23Update mtabow.mdJakobL-MSFT
2026-06-23Update mtabow.mdJakobL-MSFT
2026-06-23Update mtabow.mdJakobL-MSFT
2026-06-23Update mtabow.mdJakobL-MSFT
2026-06-23Update mtabow.mdJakobL-MSFT
2026-06-23Update mtabow.mdJakobL-MSFT
2026-06-11Update mtabow.mdJakobL-MSFT
2026-06-11Update mtabow.mdJakobL-MSFT
2026-06-10Update mtabow.mdJakobL-MSFT
2026-06-10Update mtabow.mdJakobL-MSFT
2026-06-10Update mtabow.mdJakobL-MSFT
2026-06-09Update mtabow.mdJakobL-MSFT
2026-06-09Update mtabow.mdJakobL-MSFT
2026-06-08Update mtabow.mdJakobL-MSFT
2026-06-07Update mtabow.mdJakobL-MSFT
2026-06-07Update mtabow.mdJakobL-MSFT
2026-06-07Update mtabow.mdJakobL-MSFT
2026-06-07Update mtabow.mdJakobL-MSFT
2026-06-01Update mtabow.mdJakobL-MSFT
2026-06-01Update mtabow.mdJakobL-MSFT
2026-05-31Update mtabow.mdJakobL-MSFT
2026-05-29Update mtabow.mdJakobL-MSFT
2026-05-29Update mtabow.mdJakobL-MSFT
2026-05-29Update mtabow.mdJakobL-MSFT
Changes from MS
2026-05-29Update mtabow.mdJakobL-MSFT
2026-05-28Update mtabow.mdJakobL-MSFT
2026-05-28Update mtabow.mdJakobL-MSFT
2026-05-27Update mtabow.mdJakobL-MSFT
2026-05-22Update mtabow.mdJakobL-MSFT
2026-05-22Update mtabow title for clarityJakobL-MSFT
2026-05-22Update mtabow.mdJakobL-MSFT
2026-05-22Update mtabow.mdJakobL-MSFT
2026-05-22Create mtabow.mdJakobL-MSFT
2026-05-21Merge pull request #1386 from ↵5an7y-Microsoft
andremueiot/user/andremueiot/multiplication_converted_to_larger_type NDIS: Harden QoS bytes calculation in netvmini control path
2026-05-21Merge pull request #1383 from andremueiot/user/andremueiot/comparison_wider_type5an7y-Microsoft
netvmini/rssv2: fix mixed-width comparison in processor lookup loop
2026-05-21Merge branch 'main' into ↵5an7y-Microsoft
user/andremueiot/multiplication_converted_to_larger_type
2026-05-21Merge branch 'main' into user/andremueiot/comparison_wider_type5an7y-Microsoft
2026-05-21Change runner to windows-2025-vs2026 for analysis job5an7y-Microsoft
2026-05-20ndis: Harden QoS bytes calculation in netvmini control pathAndre Muezerie
- Replaced direct size arithmetic in NICSetQOSParameters with checked integer-safe operations. - Added overflow handling for classification table size computation: - Multiply NumClassificationElements × ClassificationElementSize via RtlULongMult. - Add the revision header size via RtlULongAdd. - Return NDIS_STATUS_INVALID_LENGTH when either checked operation fails, instead of relying on unchecked arithmetic.
2026-05-14netvmini/rssv2: fix mixed-width comparison in processor lookup loopAndre Muezerie
Summary This PR addresses a static-analysis warning in rssv2.c related to comparing values of different integer widths in a loop condition. Changes - Updated the loop index type in NICSetRSSv2FindProcessorInRssSet from UINT8 to ULONG to match RssProcessorCount width. - Added an explicit cast when returning the found index: return (UINT8)index; to preserve the function’s return type and behavior. Why Using matching integer widths in loop comparisons avoids analyzer warnings and reduces risk of subtle boundary issues. Impact No functional behavior change is intended; this is a type-safety and code-quality fix for warning cleanup.
2026-05-08Merge pull request #1382 from microsoft/user/jvalesmena/wdk2604-winget5an7y-Microsoft
Split winget DSC config into per-VS-edition files