]> xenbits.xensource.com Git - xtf.git/commitdiff
Fix some typos in comments
authorFrediano Ziglio <frediano.ziglio@cloud.com>
Thu, 1 Feb 2024 14:59:43 +0000 (14:59 +0000)
committerAndrew Cooper <andrew.cooper3@citrix.com>
Thu, 1 Feb 2024 19:06:24 +0000 (19:06 +0000)
Signed-off-by: Frediano Ziglio <frediano.ziglio@cloud.com>
Reviewed-by: Andrew Cooper <andrew.cooper3@citrix.com>
arch/x86/include/arch/processor.h
include/xen/hvm/params.h
include/xtf/console.h
include/xtf/extable.h

index 0c33545eb4b2828d0f28c6f7c7492c9d9e62ef17..1c7e6554681cdec6b9b3731d3846f3b205ec2fab 100644 (file)
 #define X86_EXC_TS            10 /* Invalid TSS. */
 #define X86_EXC_NP            11 /* Segment Not Present. */
 #define X86_EXC_SS            12 /* Stack-Segment Fault. */
-#define X86_EXC_GP            13 /* General Porection Fault. */
+#define X86_EXC_GP            13 /* General Protection Fault. */
 #define X86_EXC_PF            14 /* Page Fault. */
 #define X86_EXC_SPV           15 /* PIC Spurious Interrupt Vector. */
 #define X86_EXC_MF            16 /* Maths fault (x87 FPU). */
index 886b986bcee39e2d7b96ca3b124e65da05737bd3..0b7c05b57ee21601c3c5d7afe7945ca0f8538634 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Xen public hvm paramter index
+ * Xen public hvm parameter index
  */
 
 #ifndef XEN_PUBLIC_HVM_PARAMS_H
index caec790c78e90e37d76c3754654d262fbda3af02..16a6a23e3f568401424c41f7f5e86c9aaec0674b 100644 (file)
@@ -11,7 +11,7 @@
 typedef void (*cons_output_cb)(const char *buf, size_t len);
 
 /*
- * Register a console callback.  Several callbacks can be registered for usful
+ * Register a console callback.  Several callbacks can be registered for useful
  * destinations of console text.
  */
 void register_console_callback(cons_output_cb cb);
index e93331e7cadb69e96cc070fe106100c92a906a1c..0668b7dfd3b6a33057bba5cf87f6011d4c59f077 100644 (file)
@@ -4,8 +4,8 @@
  * Exception table support.
  *
  * Allows code to tag an instruction which might fault, and where to jump to
- * in order to recover.  For more complicated recovery, a cusom handler
- * handler can be registerd.
+ * in order to recover.  For more complicated recovery, a custom handler
+ * can be registered.
  */
 #ifndef XTF_EXTABLE_H
 #define XTF_EXTABLE_H