Displaying 3 results from an estimated 3 matches for "dump_type".
2011 Sep 02
5
Linux kernel crash due to ocfs2
Hello,
we have a pair of IBM P570 servers running RHEL5.2
kernel 2.6.18-92.el5.ppc64
We have Oracle RAC on ocfs2 storage
ocfs2 is 1.4.7-1 for the above kernel (downloaded from oracle oss site)
Recently both servers have been crashing with the following error:
Assertion failure in journal_dirty_metadata() at
fs/jbd/transaction.c:1130: "handle->h_buffer_credits > 0"
kernel BUG in
2014 Jul 25
0
Wine release 1.7.23
...ent GEO_PARENT for GetGeoInfo().
      kernel32: Properly implement EnumSystemGeoID().
      kernel32/tests: Skip working tests properly.
      wshom.ocx: Implement get_Item() for IWshEnvironment.
      t2embed: Added TTDeleteEmbeddedFont() stub.
Piotr Caban (6):
      usp10: Limit trace length in dump_types.
      usp10: Limit trace length in iso_dump_types.
      msi: Don't publish features with non positive install level.
      msi: Fix feature actions overriding in process_state_property.
      msi: Don't check feature install level on features specified in arguments.
      msi: Add more f...
2013 Jul 12
14
[LLVMdev] [Proposal] Parallelize post-IPO stage.
...r I = Part.begin(), E = Part.end();
+       I != E; I++)
+    CollectGlobalSymbol(*I, New, VMap);
+}
+
+void __attribute__((used)) dump_module(Module *M) {
+  std::string EI;
+  tool_output_file f("module.ll", EI);
+  f.keep();
+
+  M->print(f.os(), 0);
+}
+
+void __attribute__((used)) dump_type(Type *T) {
+  T->dump();
+}
+
+// Splitting the merged module by moving the specified functions to the
+// new module
+IPOPartition *ModPartXform::PerformTransform(ModPartScheme &PartScheme) {
+  std::string FN;
+  raw_string_ostream OS(FN);
+  OS << "partition" << Next...