Skip to content

Commit 538f127

Browse files
liuwKAGA-KOKO
authored andcommitted
x86/hyper-v: Add "polling" bit to hv_synic_sint
That bit is documented in TLFS 5.0c as follows: Setting the polling bit will have the effect of unmasking an interrupt source, except that an actual interrupt is not generated. Signed-off-by: Wei Liu <[email protected]> Signed-off-by: Thomas Gleixner <[email protected]> Reviewed-by: Michael Kelley <[email protected]> Link: https://lore.kernel.org/r/[email protected]
1 parent 4df4cb9 commit 538f127

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

arch/x86/include/asm/hyperv-tlfs.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -809,7 +809,8 @@ union hv_synic_sint {
809809
u64 reserved1:8;
810810
u64 masked:1;
811811
u64 auto_eoi:1;
812-
u64 reserved2:46;
812+
u64 polling:1;
813+
u64 reserved2:45;
813814
} __packed;
814815
};
815816

0 commit comments

Comments
 (0)