KVM: x86: support XSAVES usage in the host
[deliverable/linux.git] / fs / coredump.c
index a93f7e6ea4cf935aea64e8266b221a2c53477628..b5c86ffd5033420523934c7153080d8cdc605bea 100644 (file)
@@ -199,6 +199,14 @@ static int format_corename(struct core_name *cn, struct coredump_params *cprm)
                                err = cn_printf(cn, "%d",
                                              task_tgid_nr(current));
                                break;
+                       case 'i':
+                               err = cn_printf(cn, "%d",
+                                             task_pid_vnr(current));
+                               break;
+                       case 'I':
+                               err = cn_printf(cn, "%d",
+                                             task_pid_nr(current));
+                               break;
                        /* uid */
                        case 'u':
                                err = cn_printf(cn, "%d", cred->uid);
This page took 0.027341 seconds and 5 git commands to generate.