Page MenuHomeFreeBSD

implement initial Hyperv keyboard synthetic driver
ClosedPublic

Authored by honzhan_microsoft.com on Mar 30 2017, 5:59 AM.
Tags
None
Referenced Files
Unknown Object (File)
Tue, Mar 24, 4:55 PM
Unknown Object (File)
Mon, Mar 23, 7:57 PM
Unknown Object (File)
Sun, Mar 22, 5:40 PM
Unknown Object (File)
Sat, Mar 21, 3:02 PM
Unknown Object (File)
Sat, Mar 7, 5:04 AM
Unknown Object (File)
Sat, Mar 7, 12:04 AM
Unknown Object (File)
Thu, Mar 5, 5:22 AM
Unknown Object (File)
Feb 28 2026, 5:42 AM
Subscribers
None

Details

Summary

This patch implements synthetic keyboard driver for FreeBSD on Hyper-V Gen2. In Gen2 mode, the legacy keyboard does not work.

Diff Detail

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

Event Timeline

Looks pretty good to me. Some minor code style suggestion.

sys/dev/hyperv/input/hv_kbdc.c
107–118 ↗(On Diff #26810)

May be we should use more consistent style of comment?

/*
 *
 */

or your preference:

/**
 *
 */
307 ↗(On Diff #26810)

I'd prefer for (;;)

331–342 ↗(On Diff #26810)

We don't indent switch-case:

switch () {
case XXX:
    aaaa;
case YYY:
    bbbb;
default:
    cccc;
}
67–69 ↗(On Diff #26807)

Better use C style comment, or '#if 0 ... #endif'

This revision is now accepted and ready to land.Mar 30 2017, 7:54 AM
This revision now requires review to proceed.Mar 30 2017, 8:08 AM
This revision was automatically updated to reflect the committed changes.