<?xml version="1.0"?>
<?xml-stylesheet type="text/xsl" href="/rss.xsl.xml"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
<channel>
    <title>Changes in Makefile</title>
    <description></description>
    <language>en</language>
    <copyright>Copyright 2015</copyright>
    <generator>Java</generator><item>
        <title>c9f721ed - KVM: s390: move some gmap shadowing functions away from mm/gmap.c</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/arch/s390/kvm/Makefile#c9f721ed</link>
        <description>KVM: s390: move some gmap shadowing functions away from mm/gmap.cMove some gmap shadowing functions from mm/gmap.c to kvm/kvm-s390.c andthe newly created kvm/gmap-vsie.cThis is a step toward removing gmap from mm.Reviewed-by: Janosch Frank &lt;frankja@linux.ibm.com&gt;Reviewed-by: Christoph Schlameuss &lt;schlameuss@linux.ibm.com&gt;Link: https://lore.kernel.org/r/20250123144627.312456-10-imbrenda@linux.ibm.comSigned-off-by: Claudio Imbrenda &lt;imbrenda@linux.ibm.com&gt;Message-ID: &lt;20250123144627.312456-10-imbrenda@linux.ibm.com&gt;

            List of files:
            /linux-6.15/arch/s390/kvm/Makefile</description>
        <pubDate>Thu, 23 Jan 2025 14:46:21 +0000</pubDate>
        <dc:creator>Claudio Imbrenda &lt;imbrenda@linux.ibm.com&gt;</dc:creator>
    </item>
<item>
        <title>5cbe2435 - KVM: s390: move pv gmap functions into kvm</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/arch/s390/kvm/Makefile#5cbe2435</link>
        <description>KVM: s390: move pv gmap functions into kvmMove gmap related functions from kernel/uv into kvm.Create a new file to collect gmap-related functions.Reviewed-by: Janosch Frank &lt;frankja@linux.ibm.com&gt;Reviewed-by: Christoph Schlameuss &lt;schlameuss@linux.ibm.com&gt;[fixed unpack_one(), thanks mhartmay@linux.ibm.com]Link: https://lore.kernel.org/r/20250123144627.312456-6-imbrenda@linux.ibm.comSigned-off-by: Claudio Imbrenda &lt;imbrenda@linux.ibm.com&gt;Message-ID: &lt;20250123144627.312456-6-imbrenda@linux.ibm.com&gt;

            List of files:
            /linux-6.15/arch/s390/kvm/Makefile</description>
        <pubDate>Thu, 23 Jan 2025 14:46:17 +0000</pubDate>
        <dc:creator>Claudio Imbrenda &lt;imbrenda@linux.ibm.com&gt;</dc:creator>
    </item>
<item>
        <title>6438e307 - KVM: s390: pci: add basic kvm_zdev structure</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/arch/s390/kvm/Makefile#6438e307</link>
        <description>KVM: s390: pci: add basic kvm_zdev structureThis structure will be used to carry kvm passthrough information related tozPCI devices.Reviewed-by: Niklas Schnelle &lt;schnelle@linux.ibm.com&gt;Reviewed-by: Pierre Morel &lt;pmorel@linux.ibm.com&gt;Reviewed-by: Christian Borntraeger &lt;borntraeger@linux.ibm.com&gt;Signed-off-by: Matthew Rosato &lt;mjrosato@linux.ibm.com&gt;Link: https://lore.kernel.org/r/20220606203325.110625-12-mjrosato@linux.ibm.comSigned-off-by: Christian Borntraeger &lt;borntraeger@linux.ibm.com&gt;

            List of files:
            /linux-6.15/arch/s390/kvm/Makefile</description>
        <pubDate>Mon, 06 Jun 2022 20:33:15 +0000</pubDate>
        <dc:creator>Matthew Rosato &lt;mjrosato@linux.ibm.com&gt;</dc:creator>
    </item>
<item>
        <title>f786ab1b - KVM: s390: Use Makefile.kvm for common files</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/arch/s390/kvm/Makefile#f786ab1b</link>
        <description>KVM: s390: Use Makefile.kvm for common filesSigned-off-by: David Woodhouse &lt;dwmw@amazon.co.uk&gt;Reviewed-by: Christian Borntraeger &lt;borntraeger@de.ibm.com&gt;Message-Id: &lt;20211121125451.9489-4-dwmw2@infradead.org&gt;Signed-off-by: Paolo Bonzini &lt;pbonzini@redhat.com&gt;

            List of files:
            /linux-6.15/arch/s390/kvm/Makefile</description>
        <pubDate>Sun, 21 Nov 2021 12:54:42 +0000</pubDate>
        <dc:creator>David Woodhouse &lt;dwmw@amazon.co.uk&gt;</dc:creator>
    </item>
<item>
        <title>cb082bfa - KVM: stats: Add fd-based API to read binary stats data</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/arch/s390/kvm/Makefile#cb082bfa</link>
        <description>KVM: stats: Add fd-based API to read binary stats dataThis commit defines the API for userspace and prepare the commonfunctionalities to support per VM/VCPU binary stats data readings.The KVM stats now is only accessible by debugfs, which has someshortcomings this change series are supposed to fix:1. The current debugfs stats solution in KVM could be disabled   when kernel Lockdown mode is enabled, which is a potential   rick for production.2. The current debugfs stats solution in KVM is organized as &quot;one   stats per file&quot;, it is good for debugging, but not efficient   for production.3. The stats read/clear in current debugfs solution in KVM are   protected by the global kvm_lock.Besides that, there are some other benefits with this change:1. All KVM VM/VCPU stats can be read out in a bulk by one copy   to userspace.2. A schema is used to describe KVM statistics. From userspace&apos;s   perspective, the KVM statistics are self-describing.3. With the fd-based solution, a separate telemetry would be able   to read KVM stats in a less privileged environment.4. After the initial setup by reading in stats descriptors, a   telemetry only needs to read the stats data itself, no more   parsing or setup is needed.Reviewed-by: David Matlack &lt;dmatlack@google.com&gt;Reviewed-by: Ricardo Koller &lt;ricarkol@google.com&gt;Reviewed-by: Krish Sadhukhan &lt;krish.sadhukhan@oracle.com&gt;Reviewed-by: Fuad Tabba &lt;tabba@google.com&gt;Tested-by: Fuad Tabba &lt;tabba@google.com&gt; #arm64Signed-off-by: Jing Zhang &lt;jingzhangos@google.com&gt;Message-Id: &lt;20210618222709.1858088-3-jingzhangos@google.com&gt;Signed-off-by: Paolo Bonzini &lt;pbonzini@redhat.com&gt;

            List of files:
            /linux-6.15/arch/s390/kvm/Makefile</description>
        <pubDate>Fri, 18 Jun 2021 22:27:04 +0000</pubDate>
        <dc:creator>Jing Zhang &lt;jingzhangos@google.com&gt;</dc:creator>
    </item>
<item>
        <title>29b40f10 - KVM: s390: protvirt: Add initial vm and cpu lifecycle handling</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/arch/s390/kvm/Makefile#29b40f10</link>
        <description>KVM: s390: protvirt: Add initial vm and cpu lifecycle handlingThis contains 3 main changes:1. changes in SIE control block handling for secure guests2. helper functions for create/destroy/unpack secure guests3. KVM_S390_PV_COMMAND ioctl to allow userspace dealing with securemachinesSigned-off-by: Janosch Frank &lt;frankja@linux.ibm.com&gt;Reviewed-by: David Hildenbrand &lt;david@redhat.com&gt;Reviewed-by: Cornelia Huck &lt;cohuck@redhat.com&gt;[borntraeger@de.ibm.com: patch merging, splitting, fixing]Signed-off-by: Christian Borntraeger &lt;borntraeger@de.ibm.com&gt;

            List of files:
            /linux-6.15/arch/s390/kvm/Makefile</description>
        <pubDate>Mon, 30 Sep 2019 08:19:18 +0000</pubDate>
        <dc:creator>Janosch Frank &lt;frankja@linux.ibm.com&gt;</dc:creator>
    </item>
<item>
        <title>940f89a5 - KVM: s390: Remove redundant license text</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/arch/s390/kvm/Makefile#940f89a5</link>
        <description>KVM: s390: Remove redundant license textNow that the SPDX tag is in all arch/s390/kvm/ files, that identifiesthe license in a specific and legally-defined manner.  So the extra GPLtext wording can be removed as it is no longer needed at all.This is done on a quest to remove the 700+ different ways that files inthe kernel describe the GPL license text.  And there&apos;s unneeded stufflike the address (sometimes incorrect) for the FSF which is neverneeded.No copyright headers or other non-license-description text was removed.Cc: Christian Borntraeger &lt;borntraeger@de.ibm.com&gt;Cc: Cornelia Huck &lt;cohuck@redhat.com&gt;Cc: Martin Schwidefsky &lt;schwidefsky@de.ibm.com&gt;Cc: Heiko Carstens &lt;heiko.carstens@de.ibm.com&gt;Cc: &quot;Paul E. McKenney&quot; &lt;paulmck@linux.vnet.ibm.com&gt;Signed-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;Message-Id: &lt;20171124140043.10062-9-gregkh@linuxfoundation.org&gt;Acked-by: Cornelia Huck &lt;cohuck@redhat.com&gt;Acked-by: &quot;Paul E. McKenney&quot; &lt;paulmck@linux.vnet.ibm.com&gt;Signed-off-by: Christian Borntraeger &lt;borntraeger@de.ibm.com&gt;

            List of files:
            /linux-6.15/arch/s390/kvm/Makefile</description>
        <pubDate>Fri, 24 Nov 2017 14:00:39 +0000</pubDate>
        <dc:creator>Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;</dc:creator>
    </item>
<item>
        <title>d809aa23 - KVM: s390: add SPDX identifiers to the remaining files</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/arch/s390/kvm/Makefile#d809aa23</link>
        <description>KVM: s390: add SPDX identifiers to the remaining filesIt&apos;s good to have SPDX identifiers in all files to make it easier toaudit the kernel tree for correct licenses.Update the arch/s390/kvm/ files with the correct SPDX licenseidentifier based on the license text in the file itself.  The SPDXidentifier is a legally binding shorthand, which can be used instead ofthe full boiler plate text.This work is based on a script and data from Thomas Gleixner, PhilippeOmbredanne, and Kate Stewart.Cc: Christian Borntraeger &lt;borntraeger@de.ibm.com&gt;Cc: Cornelia Huck &lt;cohuck@redhat.com&gt;Cc: Martin Schwidefsky &lt;schwidefsky@de.ibm.com&gt;Cc: Heiko Carstens &lt;heiko.carstens@de.ibm.com&gt;Cc: Thomas Gleixner &lt;tglx@linutronix.de&gt;Cc: Kate Stewart &lt;kstewart@linuxfoundation.org&gt;Cc: Philippe Ombredanne &lt;pombredanne@nexb.com&gt;Signed-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;Message-Id: &lt;20171124140043.10062-3-gregkh@linuxfoundation.org&gt;Acked-by: Cornelia Huck &lt;cohuck@redhat.com&gt;Signed-off-by: Christian Borntraeger &lt;borntraeger@de.ibm.com&gt;

            List of files:
            /linux-6.15/arch/s390/kvm/Makefile</description>
        <pubDate>Fri, 24 Nov 2017 14:00:33 +0000</pubDate>
        <dc:creator>Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;</dc:creator>
    </item>
<item>
        <title>b7c92f1a - s390/sthyi: reorganize sthyi implementation</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/arch/s390/kvm/Makefile#b7c92f1a</link>
        <description>s390/sthyi: reorganize sthyi implementationAs we need to support sthyi instruction on LPAR too, move the common codeto kernel part and kvm related code to intercept.c for better reuse.Signed-off-by: QingFeng Hao &lt;haoqf@linux.vnet.ibm.com&gt;Signed-off-by: Heiko Carstens &lt;heiko.carstens@de.ibm.com&gt;Signed-off-by: Martin Schwidefsky &lt;schwidefsky@de.ibm.com&gt;

            List of files:
            /linux-6.15/arch/s390/kvm/Makefile</description>
        <pubDate>Fri, 29 Sep 2017 10:41:50 +0000</pubDate>
        <dc:creator>QingFeng Hao &lt;haoqf@linux.vnet.ibm.com&gt;</dc:creator>
    </item>
<item>
        <title>a3508fbe - KVM: s390: vsie: initial support for nested virtualization</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/arch/s390/kvm/Makefile#a3508fbe</link>
        <description>KVM: s390: vsie: initial support for nested virtualizationThis patch adds basic support for nested virtualization on s390x, calledVSIE (virtual SIE) and allows it to be used by the guest if the necessaryfacilities are supported by the hardware and enabled for the guest.In order to make this work, we have to shadow the sie control blockprovided by guest 2. In order to gain some performance, we have toreuse the same shadow blocks as good as possible. For now, we allowas many shadow blocks as we have VCPUs (that way, every VCPU can run theVSIE concurrently).We have to watch out for the prefix getting unmapped out of our shadowgmap and properly get the VCPU out of VSIE in that case, to fault theprefix pages back in. We use the PROG_REQUEST bit for that purpose.This patch is based on an initial prototype by Tobias Elpelt.Acked-by: Christian Borntraeger &lt;borntraeger@de.ibm.com&gt;Signed-off-by: David Hildenbrand &lt;dahi@linux.vnet.ibm.com&gt;Signed-off-by: Christian Borntraeger &lt;borntraeger@de.ibm.com&gt;

            List of files:
            /linux-6.15/arch/s390/kvm/Makefile</description>
        <pubDate>Wed, 08 Jul 2015 11:19:48 +0000</pubDate>
        <dc:creator>David Hildenbrand &lt;dahi@linux.vnet.ibm.com&gt;</dc:creator>
    </item>
<item>
        <title>95ca2cb5 - KVM: s390: Add sthyi emulation</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/arch/s390/kvm/Makefile#95ca2cb5</link>
        <description>KVM: s390: Add sthyi emulationStore Hypervisor Information is an emulated z/VM instruction thatprovides a guest with basic information about the layers it is runningon. This includes information about the cpu configuration of both themachine and the lpar, as well as their names, machine model andmachine type. This information enables an application to determine themaximum capacity of CPs and IFLs available to software.The instruction is available whenever the facility bit 74 is set,otherwise executing it results in an operation exception.It is important to check the validity flags in the sections beforeusing data from any structure member. It is not guaranteed that allmembers will be valid on all machines / machine configurations.Signed-off-by: Janosch Frank &lt;frankja@linux.vnet.ibm.com&gt;Reviewed-by: David Hildenbrand &lt;dahi@linux.vnet.ibm.com&gt;Signed-off-by: Christian Borntraeger &lt;borntraeger@de.ibm.com&gt;

            List of files:
            /linux-6.15/arch/s390/kvm/Makefile</description>
        <pubDate>Mon, 23 May 2016 13:11:58 +0000</pubDate>
        <dc:creator>Janosch Frank &lt;frankja@linux.vnet.ibm.com&gt;</dc:creator>
    </item>
<item>
        <title>14b0b4ac - KVM: s390: Enable the KVM-VFIO device</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/arch/s390/kvm/Makefile#14b0b4ac</link>
        <description>KVM: s390: Enable the KVM-VFIO deviceThe KVM-VFIO device is used by the QEMU VFIO device. It is used torecord the list of in-use VFIO groups so that KVM can manipulatethem.While we don&apos;t need this on s390 currently, let&apos;s try to be likeeveryone else.Signed-off-by: Dong Jia Shi &lt;bjsdjshi@linux.vnet.ibm.com&gt;Acked-by: Cornelia Huck &lt;cornelia.huck@de.ibm.com&gt;Signed-off-by: Christian Borntraeger &lt;borntraeger@de.ibm.com&gt;

            List of files:
            /linux-6.15/arch/s390/kvm/Makefile</description>
        <pubDate>Wed, 20 Jan 2016 05:33:42 +0000</pubDate>
        <dc:creator>Dong Jia Shi &lt;bjsdjshi@linux.vnet.ibm.com&gt;</dc:creator>
    </item>
<item>
        <title>27291e21 - KVM: s390: hardware support for guest debugging</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/arch/s390/kvm/Makefile#27291e21</link>
        <description>KVM: s390: hardware support for guest debuggingThis patch adds support to debug the guest using the PER facility on s390.Single-stepping, hardware breakpoints and hardware watchpoints are supported. Inorder to use the PER facility of the guest without it noticing it, the controlregisters of the guest have to be patched and access to them has to beintercepted(stctl, stctg, lctl, lctlg).All PER program interrupts have to be intercepted and only the relevant PERinterrupts for the guest have to be given back. Special care has to be takenabout repeated exits on the same hardware breakpoint. The intervention of thehost in the guests PER configuration is not fully transparent. PER instructionnullification can not be used by the guest and too many storage alterationevents may be reported to the guest (if it is activated for special addressranges only) when the host concurrently debugging it.Signed-off-by: David Hildenbrand &lt;dahi@linux.vnet.ibm.com&gt;Signed-off-by: Christian Borntraeger &lt;borntraeger@de.ibm.com&gt;

            List of files:
            /linux-6.15/arch/s390/kvm/Makefile</description>
        <pubDate>Thu, 23 Jan 2014 11:26:52 +0000</pubDate>
        <dc:creator>David Hildenbrand &lt;dahi@linux.vnet.ibm.com&gt;</dc:creator>
    </item>
<item>
        <title>22938978 - KVM: s390: add architecture compliant guest access functions</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/arch/s390/kvm/Makefile#22938978</link>
        <description>KVM: s390: add architecture compliant guest access functionsThe new guest memory access function write_guest() and read_guest() can beused to access guest memory in an architecture compliant way.These functions will look at the vcpu&apos;s PSW and select the correct addressspace for memory access and also perform correct address wrap around.In case DAT is turned on, page tables will be walked otherwise access willhappen to real or absolute memory.Any access exception will be recognized and exception data will be storedin the vcpu&apos;s kvm_vcpu_arch.pgm member. Subsequently an exception can beinjected if necessary.Missing are:- key protection checks- access register mode support- program event recording supportThis patch also adds write_guest_real(), read_guest_real(),write_guest_absolute() and read_guest_absolute() guest functions which canbe used to access real and absolute storage. These functions currently donot perform any access checks, since there is no use case (yet?).Signed-off-by: Heiko Carstens &lt;heiko.carstens@de.ibm.com&gt;Reviewed-by: Thomas Huth &lt;thuth@linux.vnet.ibm.com&gt;Signed-off-by: Christian Borntraeger &lt;borntraeger@de.ibm.com&gt;

            List of files:
            /linux-6.15/arch/s390/kvm/Makefile</description>
        <pubDate>Wed, 01 Jan 2014 15:26:52 +0000</pubDate>
        <dc:creator>Heiko Carstens &lt;heiko.carstens@de.ibm.com&gt;</dc:creator>
    </item>
<item>
        <title>84223598 - KVM: s390: irq routing for adapter interrupts.</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/arch/s390/kvm/Makefile#84223598</link>
        <description>KVM: s390: irq routing for adapter interrupts.Introduce a new interrupt class for s390 adapter interrupts and enableirqfds for s390.This is depending on a new s390 specific vm capability, KVM_CAP_S390_IRQCHIP,that needs to be enabled by userspace.Acked-by: Christian Borntraeger &lt;borntraeger@de.ibm.com&gt;Signed-off-by: Cornelia Huck &lt;cornelia.huck@de.ibm.com&gt;

            List of files:
            /linux-6.15/arch/s390/kvm/Makefile</description>
        <pubDate>Mon, 15 Jul 2013 11:36:01 +0000</pubDate>
        <dc:creator>Cornelia Huck &lt;cornelia.huck@de.ibm.com&gt;</dc:creator>
    </item>
<item>
        <title>3c038e6b - KVM: async_pf: Async page fault support on s390</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/arch/s390/kvm/Makefile#3c038e6b</link>
        <description>KVM: async_pf: Async page fault support on s390This patch enables async page faults for s390 kvm guests.It provides the userspace API to enable and disable_wait this feature.The disable_wait will enforce that the feature is off by waiting on it.Also it includes the diagnose code, called by the guest to enable async page faults.The async page faults will use an already existing guest interface for thispurpose, as described in &quot;CP Programming Services (SC24-6084)&quot;.Signed-off-by: Dominik Dingel &lt;dingel@linux.vnet.ibm.com&gt;Signed-off-by: Christian Borntraeger &lt;borntraeger@de.ibm.com&gt;

            List of files:
            /linux-6.15/arch/s390/kvm/Makefile</description>
        <pubDate>Mon, 07 Oct 2013 15:11:48 +0000</pubDate>
        <dc:creator>Dominik Dingel &lt;dingel@linux.vnet.ibm.com&gt;</dc:creator>
    </item>
<item>
        <title>535cf7b3 - KVM: get rid of $(addprefix ../../../virt/kvm/, ...) in Makefiles</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/arch/s390/kvm/Makefile#535cf7b3</link>
        <description>KVM: get rid of $(addprefix ../../../virt/kvm/, ...) in MakefilesAs requested by the KVM maintainers, remove the addprefix used torefer to the main KVM code from the arch code, and replace it witha KVM variable that does the same thing.Tested-by: Christian Borntraeger &lt;borntraeger@de.ibm.com&gt;Cc: Paolo Bonzini &lt;pbonzini@redhat.com&gt;Cc: Gleb Natapov &lt;gleb@redhat.com&gt;Cc: Christoffer Dall &lt;cdall@cs.columbia.edu&gt;Acked-by: Xiantao Zhang &lt;xiantao.zhang@intel.com&gt;Cc: Tony Luck &lt;tony.luck@intel.com&gt;Cc: Fenghua Yu &lt;fenghua.yu@intel.com&gt;Cc: Alexander Graf &lt;agraf@suse.de&gt;Cc: Benjamin Herrenschmidt &lt;benh@kernel.crashing.org&gt;Cc: Christian Borntraeger &lt;borntraeger@de.ibm.com&gt;Cc: Cornelia Huck &lt;cornelia.huck@de.ibm.com&gt;Signed-off-by: Marc Zyngier &lt;marc.zyngier@arm.com&gt;Signed-off-by: Gleb Natapov &lt;gleb@redhat.com&gt;

            List of files:
            /linux-6.15/arch/s390/kvm/Makefile</description>
        <pubDate>Tue, 14 May 2013 13:31:02 +0000</pubDate>
        <dc:creator>Marc Zyngier &lt;marc.zyngier@arm.com&gt;</dc:creator>
    </item>
<item>
        <title>10ccaa1e - KVM: s390: Wire up ioeventfd.</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/arch/s390/kvm/Makefile#10ccaa1e</link>
        <description>KVM: s390: Wire up ioeventfd.Enable ioeventfd support on s390 and hook up diagnose 500 virtio-ccwnotifications.Signed-off-by: Cornelia Huck &lt;cornelia.huck@de.ibm.com&gt;Signed-off-by: Marcelo Tosatti &lt;mtosatti@redhat.com&gt;

            List of files:
            /linux-6.15/arch/s390/kvm/Makefile</description>
        <pubDate>Thu, 28 Feb 2013 11:33:21 +0000</pubDate>
        <dc:creator>Cornelia Huck &lt;cornelia.huck@de.ibm.com&gt;</dc:creator>
    </item>
<item>
        <title>603d1a50 - [S390] move sie code to entry.S</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/arch/s390/kvm/Makefile#603d1a50</link>
        <description>[S390] move sie code to entry.SThe entry to / exit from sie has subtle dependencies to the first levelinterrupt handler. Move the sie assembler code to entry64.S and replacethe SIE_HOOK callback with a test and the new _TIF_SIE bit.In addition this patch fixes several problems in regard to the check forthe_TIF_EXIT_SIE bits. The old code checked the TIF bits before executingthe interrupt handler and it only modified the instruction address if itpointed directly to the sie instruction. In both cases it could missa TIF bit that normally would cause an exit from the guest and wouldreenter the guest context.Signed-off-by: Martin Schwidefsky &lt;schwidefsky@de.ibm.com&gt;

            List of files:
            /linux-6.15/arch/s390/kvm/Makefile</description>
        <pubDate>Sun, 24 Jul 2011 08:48:18 +0000</pubDate>
        <dc:creator>Martin Schwidefsky &lt;schwidefsky@de.ibm.com&gt;</dc:creator>
    </item>
<item>
        <title>c73028a0 - s390: change to new flag variable</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/arch/s390/kvm/Makefile#c73028a0</link>
        <description>s390: change to new flag variableReplace EXTRA_CFLAGS with ccflags-y.Signed-off-by: matt mooney &lt;mfm@muteddisk.com&gt;Acked-by: WANG Cong &lt;xiyou.wangcong@gmail.com&gt;Signed-off-by: Michal Marek &lt;mmarek@suse.cz&gt;

            List of files:
            /linux-6.15/arch/s390/kvm/Makefile</description>
        <pubDate>Fri, 14 Jan 2011 14:12:32 +0000</pubDate>
        <dc:creator>matt mooney &lt;mfm@muteddisk.com&gt;</dc:creator>
    </item>
</channel>
</rss>
