Changeset 57276 in vbox for trunk/src/VBox/Runtime/r0drv/linux/mpnotification-r0drv-linux.c
- Timestamp:
- Aug 11, 2015 2:39:19 PM (10 years ago)
- svn:sync-xref-src-repo-rev:
- 102031
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/r0drv/linux/mpnotification-r0drv-linux.c
r54808 r57276 174 174 { 175 175 int rc; 176 IPRT_LINUX_SAVE_EFL_AC(); 176 177 177 178 # ifdef CPU_DOWN_FAILED … … 180 181 181 182 rc = register_cpu_notifier(&g_NotifierBlock); 183 IPRT_LINUX_RESTORE_EFL_AC(); 182 184 AssertMsgReturn(!rc, ("%d\n", rc), RTErrConvertFromErrno(rc)); 183 185 return VINF_SUCCESS; … … 187 189 DECLHIDDEN(void) rtR0MpNotificationNativeTerm(void) 188 190 { 191 IPRT_LINUX_SAVE_EFL_AC(); 189 192 unregister_cpu_notifier(&g_NotifierBlock); 193 IPRT_LINUX_RESTORE_EFL_AC(); 190 194 } 191 195
Note:
See TracChangeset
for help on using the changeset viewer.