All public logs
Combined display of all available logs of QEMU. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).
- 08:08, 22 November 2024 User account ErwinJansen talk contribs was created by Paolo Bonzini talk contribs
- 08:47, 21 November 2024 User account ZhaoLiu talk contribs was created by Paolo Bonzini talk contribs
- 22:33, 15 November 2024 Paolo Bonzini talk contribs deleted page User:Paolo Bonzini/common.js
- 22:28, 15 November 2024 Paolo Bonzini talk contribs created page User:Paolo Bonzini/common.js (Created page with "// SPDX-License-Identifier: MIT // Wikipedia Vector 2022 - Better TOC // fabulous.cupcake.jp.net // Better table of contents for mediawiki vector 2022 skin // https://greasyfork.org/en/scripts/458558-wikipedia-vector-2022-better-toc function() { if (document.body.classList.contains("skin-vector-2022")) { const toc1 = document.querySelectorAll(".vector-toc-level-1"); Array.from(toc1).forEach(el => { el.classList.add("vector-toc-list-item-e...")
- 09:52, 11 October 2024 User account Densml talk contribs was created by Paolo Bonzini talk contribs (email request)
- 19:30, 14 June 2024 Paolo Bonzini talk contribs created page Features/Rust/Error (Created page with "<pre> use crate::bindings; use crate::bindings::error_setg_internal; use std::fmt; use std::fmt::Display; use std::ptr; #[derive(Debug, Default)] pub struct Error { msg: Option<String>, cause: Option<Box<dyn std::error::Error>>, location: Option<(String, u32)>, } impl std::error::Error for Error { fn source(&self) -> Option<&(dyn std::error::Error + 'static)> { self.cause.as_deref() } fn description(&self) -> &str { self.msg.as_...")
- 17:22, 14 June 2024 Paolo Bonzini talk contribs created page Features/Rust/QOM (Created page with "Rust QOM interoperability design, very loosely inspired by glib-rs. == Passing objects around == ;ObjectRef: :*trait for performing casts on objects :*upcasts safe at compile time, downcasts safe at runtime :*implemented by &T and qom::Arc<T> :*casting &T produces &U, casting qom::Arc<T> produces qom::Arc<U> ;qom::Arc<T> :*T is a struct for a QOM object :*cloning qom::Arc calls object_ref, dropping qom::Arc calls object_unref <pre> pub trait ObjectRef: Sized { //...")
- 17:05, 14 June 2024 Paolo Bonzini talk contribs moved page RustInQemu to Features/Rust
- 17:05, 14 June 2024 Paolo Bonzini talk contribs deleted page Features/Rust (content was: "#REDIRECT Features/Rust/Meson", and the only contributor was "Paolo Bonzini" (talk))
- 17:05, 14 June 2024 Paolo Bonzini talk contribs moved page Features/Rust to Features/Rust/Meson
- 17:04, 14 June 2024 Paolo Bonzini talk contribs moved page Features/Meson/Rust to Features/Rust
- 22:43, 6 February 2024 Paolo Bonzini talk contribs created page Internships/ProjectIdeas/TCGBinaryTracing (Created page with "=== Binary tracing of TCG === '''Summary:''' Right now, most logging for the TCG accelerator can only be produced on stderr: this includes input and output assembly, unoptimized and optimized TCG opcodes, and exceptions/interrupts. Text output is easy to interpret but it is more expensive to produce and harder to filter. This project will consist of integrating three new kinds of "trace events" into the "simple" trace backend: target assembly (as used by <tt>-d in_as...")
- 09:01, 15 March 2023 User account Camilla Conte talk contribs was created by Paolo Bonzini talk contribs
- 08:57, 9 May 2022 Paolo Bonzini talk contribs created page Features/CoroutineFnCleanup (Created page with "== Hand-written bdrv_co_* functions == # bdrv_pread/bdrv_pwrite have different calling convention than bdrv_co_pread/bdrv_co_pwrite #* Fix using Coccinelle? # Missing bdrv_co_...")
- 11:43, 16 March 2022 Paolo Bonzini talk contribs created page Internships/ProjectIdeas/LibclangRefactoring (Created page with "=== Automated === '''Summary:''' Automated maintenance and checking using clang-query, clang-tidy and libclang Currently QEMU is using a handwritten Perl script taken from th...")
- 12:15, 12 July 2021 Paolo Bonzini talk contribs deleted page Testing/UnitTests (obsolete, now in docs/devel)
- 10:16, 9 February 2021 Paolo Bonzini talk contribs created page Internships/ProjectIdeas/CompleteSVM (Created page with " === Complete AMD virtualization emulation === '''Summary:''' Fix bugs and add extra features for QEMU's emulation of AMD virtualization instructions. QEMU already includes...")
- 15:32, 18 January 2021 Paolo Bonzini talk contribs created page Gitlab/GitHub (Created page with "== Gitlab project == [https://gitlab.com/qemu-project gitlab project] === Instructions to create a push mirror to GitHub == #Create the new repository on https://github.com/q...")
- 15:31, 18 January 2021 Paolo Bonzini talk contribs created page GitLab/GitHub (Redirected page to Gitlab/GitHub) Tag: New redirect
- 17:57, 15 January 2021 Paolo Bonzini talk contribs created page Internships/ProjectIdeas/Meson style checker (Created page with " === Style checker for Meson === '''Summary:''' Write a style checker for QEMU's Meson-based build system QEMU is a complex program with a complex build system. The switc...")
- 10:43, 3 December 2020 Paolo Bonzini talk contribs created page Features/QOM-QAPI integration (Created page with "Separating configuration of QOM objects from their run-time state, and express the configuration as a QAPI struct. == Implementation == New input visitor function (the imple...")
- 09:05, 21 October 2020 Paolo Bonzini talk contribs created page User:Paolo Bonzini/Machine init sequence (Created page with "== Current machine init sequence == === Up to CHECKPOINT_INIT === * Runstate is RUN_STATE_PRECONFIG or RUN_STATE_INMIGRATE ** Xen looks at RUN_STATE_INMIGRATE to skip RAM init...")
- 15:03, 21 August 2020 Paolo Bonzini talk contribs moved page Features/Meson/Next to Features/Meson
- 15:03, 21 August 2020 Paolo Bonzini talk contribs deleted page Features/Meson (content was: "#REDIRECT Features/Meson/Design", and the only contributor was "Paolo Bonzini" (talk))
- 15:01, 21 August 2020 Paolo Bonzini talk contribs moved page Features/Meson to Features/Meson/Design
- 15:02, 19 August 2020 Paolo Bonzini talk contribs created page Features/Meson/Next (Created page with "What's next? == Blockers for further conversions == ;Complete moving installation rules to meson.build :Marc-André and Paolo already have patches for this. You're welcome t...")
- 13:17, 9 July 2020 Paolo Bonzini talk contribs deleted page SecurityProcess (moved to qemu-web.git)
- 11:45, 9 July 2020 Paolo Bonzini talk contribs deleted page Conservancy (moved to qemu-web.git)
- 17:31, 8 August 2019 User account Lukas Straub talk contribs was created by Paolo Bonzini talk contribs
- 15:13, 22 May 2019 Paolo Bonzini talk contribs deleted page Testing/Patchew (content was: "Patchew is an open source CI project to automate testing of patches submitted as emails on mailing lists. You may get an automatic reply after sending a patch to qemu-de..." (and the only contributor was "Fam"))
- 15:12, 22 May 2019 Paolo Bonzini talk contribs deleted page Template:Testing/CIStatus (content was: "Wrong Page!!! {{CIStatus}}" (and the only contributor was "Ajb"))
- 14:21, 23 October 2018 Paolo Bonzini talk contribs moved page Features/Kconfig to Features/Kconfig (GSoC 2013) without leaving a redirect (Project is being resurrected)
- 23:49, 24 May 2018 Paolo Bonzini talk contribs deleted page ToDo/MemoryAPI (this is now done!)
- 10:48, 19 March 2018 User account EmanueleE talk contribs was created by Paolo Bonzini talk contribs
- 00:11, 21 November 2017 Paolo Bonzini talk contribs deleted page Testing/ContinuousIntegration (content was: "#REDIRECT Testing#Continuous_Integration")
- 11:32, 26 July 2017 Paolo Bonzini talk contribs deleted page Contribute/ReportABug (moved to www.qemu.org)
- 15:26, 6 June 2017 Paolo Bonzini talk contribs moved page Features/Documentation/qemu-system-hw to Features/Documentation/specs
- 10:33, 24 February 2017 User account Yongbok Kim talk contribs was created by Paolo Bonzini talk contribs
- 10:12, 7 February 2017 Paolo Bonzini talk contribs deleted page Download (apache now redirects the URL to the download page on the website)
- 11:28, 6 February 2017 Paolo Bonzini talk contribs deleted page KVM (not needed after switch to new website)
- 08:50, 5 November 2016 Paolo Bonzini talk contribs deleted page Documentation/Platforms/ (content was: '#REDIRECT Documentation/Platforms' (and the only contributor was 'Paolo Bonzini'))
- 08:48, 5 November 2016 Paolo Bonzini talk contribs moved page Documentation/Platforms/ to Documentation/Platforms
- 21:21, 4 November 2016 Paolo Bonzini talk contribs undeleted page Ppc (1 revision restored)
- 21:21, 4 November 2016 Paolo Bonzini talk contribs undeleted page PPC (1 revision restored)
- 16:06, 17 October 2016 Paolo Bonzini talk contribs deleted page Help:Contents (content was: 'C:\Users\YAEL\Desktop\Untitled.png [http://www.example.com link title] File:C:\Users\YAEL\Desktop\Untitled.png' (and the only contributor was 'Orim'))
- 13:35, 13 October 2016 Paolo Bonzini talk contribs moved page CodeTransitions to ToDo/CodeTransitions
- 13:28, 13 October 2016 Paolo Bonzini talk contribs moved page BiteSizedTasks to Contribute/BiteSizedTasks
- 08:08, 13 October 2016 Paolo Bonzini talk contribs deleted page User talk:Pallav (content was: '#REDIRECT Features/Copy-Paste Integration' (and the only contributor was 'Pallav'))
- 08:07, 13 October 2016 Paolo Bonzini talk contribs deleted page Features-Done/w64 (content was: '#REDIRECT Features/w64' (and the only contributor was 'Paolo Bonzini'))
- 08:07, 13 October 2016 Paolo Bonzini talk contribs deleted page Guest S4 support (content was: '#REDIRECT Features/Guest S4 support' (and the only contributor was 'Paolo Bonzini'))