qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PATCH microblaze v1 0/6] Microblaze Cleanups
@ 2015-04-26 19:10 Peter Crosthwaite
  2015-04-26 19:10 ` [Qemu-devel] [PATCH microblaze v1 1/6] defconfigs: Piggyback microblazeel on microblaze Peter Crosthwaite
                   ` (6 more replies)
  0 siblings, 7 replies; 14+ messages in thread
From: Peter Crosthwaite @ 2015-04-26 19:10 UTC (permalink / raw)
  To: qemu-devel; +Cc: qemu-trivial, edgari, Peter Crosthwaite

Hi Edgar,

This is some code cleanup of Microblaze. Mainly unused code
deletion but also code share of the defconfig (P1).

Regards,
Peter

Peter Crosthwaite (6):
  defconfigs: Piggyback microblazeel on microblaze
  mb: mmu: Delete flip_um fn prototype
  mb: cpu: Remote unused cpu_get_pc
  mb: cpu: Remove unused CC_OP enum
  mb: cpu: Delete EXCP_NMI
  mb: cpu: delete unused cpu_interrupts_enabled

 default-configs/microblazeel-softmmu.mak | 10 +---------
 target-microblaze/cpu.h                  | 17 -----------------
 target-microblaze/mmu.h                  |  1 -
 3 files changed, 1 insertion(+), 27 deletions(-)

-- 
1.9.1

^ permalink raw reply	[flat|nested] 14+ messages in thread

* [Qemu-devel] [PATCH microblaze v1 1/6] defconfigs: Piggyback microblazeel on microblaze
  2015-04-26 19:10 [Qemu-devel] [PATCH microblaze v1 0/6] Microblaze Cleanups Peter Crosthwaite
@ 2015-04-26 19:10 ` Peter Crosthwaite
  2015-04-26 19:10 ` [Qemu-devel] [PATCH microblaze v1 2/6] mb: mmu: Delete flip_um fn prototype Peter Crosthwaite
                   ` (5 subsequent siblings)
  6 siblings, 0 replies; 14+ messages in thread
From: Peter Crosthwaite @ 2015-04-26 19:10 UTC (permalink / raw)
  To: qemu-devel; +Cc: qemu-trivial, edgari, Peter Crosthwaite

Theres no difference in defconfig. Going forward microblazeel should
superset microblaze so use an include.

Signed-off-by: Peter Crosthwaite <crosthwaite.peter@gmail.com>
---
 default-configs/microblazeel-softmmu.mak | 10 +---------
 1 file changed, 1 insertion(+), 9 deletions(-)

diff --git a/default-configs/microblazeel-softmmu.mak b/default-configs/microblazeel-softmmu.mak
index acf22c5..2fcf442 100644
--- a/default-configs/microblazeel-softmmu.mak
+++ b/default-configs/microblazeel-softmmu.mak
@@ -1,11 +1,3 @@
 # Default configuration for microblazeel-softmmu
 
-CONFIG_PTIMER=y
-CONFIG_PFLASH_CFI01=y
-CONFIG_SERIAL=y
-CONFIG_XILINX=y
-CONFIG_XILINX_AXI=y
-CONFIG_XILINX_SPI=y
-CONFIG_XILINX_ETHLITE=y
-CONFIG_SSI=y
-CONFIG_SSI_M25P80=y
+include microblaze-softmmu.mak
-- 
1.9.1

^ permalink raw reply related	[flat|nested] 14+ messages in thread

* [Qemu-devel] [PATCH microblaze v1 2/6] mb: mmu: Delete flip_um fn prototype
  2015-04-26 19:10 [Qemu-devel] [PATCH microblaze v1 0/6] Microblaze Cleanups Peter Crosthwaite
  2015-04-26 19:10 ` [Qemu-devel] [PATCH microblaze v1 1/6] defconfigs: Piggyback microblazeel on microblaze Peter Crosthwaite
@ 2015-04-26 19:10 ` Peter Crosthwaite
  2015-04-26 19:10 ` [Qemu-devel] [PATCH microblaze v1 3/6] mb: cpu: Remote unused cpu_get_pc Peter Crosthwaite
                   ` (4 subsequent siblings)
  6 siblings, 0 replies; 14+ messages in thread
From: Peter Crosthwaite @ 2015-04-26 19:10 UTC (permalink / raw)
  To: qemu-devel; +Cc: qemu-trivial, edgari, Peter Crosthwaite

This is not implemented or used.

Signed-off-by: Peter Crosthwaite <crosthwaite.peter@gmail.com>
---
 target-microblaze/mmu.h | 1 -
 1 file changed, 1 deletion(-)

diff --git a/target-microblaze/mmu.h b/target-microblaze/mmu.h
index 3f74dda..3b7a998 100644
--- a/target-microblaze/mmu.h
+++ b/target-microblaze/mmu.h
@@ -82,7 +82,6 @@ struct microblaze_mmu_lookup
     } err;
 };
 
-void mmu_flip_um(CPUMBState *env, unsigned int um);
 unsigned int mmu_translate(struct microblaze_mmu *mmu,
                            struct microblaze_mmu_lookup *lu,
                            target_ulong vaddr, int rw, int mmu_idx);
-- 
1.9.1

^ permalink raw reply related	[flat|nested] 14+ messages in thread

* [Qemu-devel] [PATCH microblaze v1 3/6] mb: cpu: Remote unused cpu_get_pc
  2015-04-26 19:10 [Qemu-devel] [PATCH microblaze v1 0/6] Microblaze Cleanups Peter Crosthwaite
  2015-04-26 19:10 ` [Qemu-devel] [PATCH microblaze v1 1/6] defconfigs: Piggyback microblazeel on microblaze Peter Crosthwaite
  2015-04-26 19:10 ` [Qemu-devel] [PATCH microblaze v1 2/6] mb: mmu: Delete flip_um fn prototype Peter Crosthwaite
@ 2015-04-26 19:10 ` Peter Crosthwaite
  2015-04-30  8:43   ` Alex Bennée
  2015-04-26 19:10 ` [Qemu-devel] [PATCH microblaze v1 4/6] mb: cpu: Remove unused CC_OP enum Peter Crosthwaite
                   ` (3 subsequent siblings)
  6 siblings, 1 reply; 14+ messages in thread
From: Peter Crosthwaite @ 2015-04-26 19:10 UTC (permalink / raw)
  To: qemu-devel; +Cc: qemu-trivial, edgari, Peter Crosthwaite

This function is not used by anything. Remove.

Signed-off-by: Peter Crosthwaite <crosthwaite.peter@gmail.com>
---
 target-microblaze/cpu.h | 5 -----
 1 file changed, 5 deletions(-)

diff --git a/target-microblaze/cpu.h b/target-microblaze/cpu.h
index 7d06227..2c18b49 100644
--- a/target-microblaze/cpu.h
+++ b/target-microblaze/cpu.h
@@ -333,11 +333,6 @@ static inline int cpu_interrupts_enabled(CPUMBState *env)
 
 #include "exec/cpu-all.h"
 
-static inline target_ulong cpu_get_pc(CPUMBState *env)
-{
-    return env->sregs[SR_PC];
-}
-
 static inline void cpu_get_tb_cpu_state(CPUMBState *env, target_ulong *pc,
                                         target_ulong *cs_base, int *flags)
 {
-- 
1.9.1

^ permalink raw reply related	[flat|nested] 14+ messages in thread

* [Qemu-devel] [PATCH microblaze v1 4/6] mb: cpu: Remove unused CC_OP enum
  2015-04-26 19:10 [Qemu-devel] [PATCH microblaze v1 0/6] Microblaze Cleanups Peter Crosthwaite
                   ` (2 preceding siblings ...)
  2015-04-26 19:10 ` [Qemu-devel] [PATCH microblaze v1 3/6] mb: cpu: Remote unused cpu_get_pc Peter Crosthwaite
@ 2015-04-26 19:10 ` Peter Crosthwaite
  2015-04-26 19:10 ` [Qemu-devel] [PATCH microblaze v1 5/6] mb: cpu: Delete EXCP_NMI Peter Crosthwaite
                   ` (2 subsequent siblings)
  6 siblings, 0 replies; 14+ messages in thread
From: Peter Crosthwaite @ 2015-04-26 19:10 UTC (permalink / raw)
  To: qemu-devel; +Cc: qemu-trivial, edgari, Peter Crosthwaite

This enum is not used by anything. Remove.

Signed-off-by: Peter Crosthwaite <crosthwaite.peter@gmail.com>
---
 target-microblaze/cpu.h | 6 ------
 1 file changed, 6 deletions(-)

diff --git a/target-microblaze/cpu.h b/target-microblaze/cpu.h
index 2c18b49..f21da2f 100644
--- a/target-microblaze/cpu.h
+++ b/target-microblaze/cpu.h
@@ -284,12 +284,6 @@ int cpu_mb_exec(CPUMBState *s);
 int cpu_mb_signal_handler(int host_signum, void *pinfo,
                           void *puc);
 
-enum {
-    CC_OP_DYNAMIC, /* Use env->cc_op  */
-    CC_OP_FLAGS,
-    CC_OP_CMP,
-};
-
 /* FIXME: MB uses variable pages down to 1K but linux only uses 4k.  */
 #define TARGET_PAGE_BITS 12
 #define MMAP_SHIFT TARGET_PAGE_BITS
-- 
1.9.1

^ permalink raw reply related	[flat|nested] 14+ messages in thread

* [Qemu-devel] [PATCH microblaze v1 5/6] mb: cpu: Delete EXCP_NMI
  2015-04-26 19:10 [Qemu-devel] [PATCH microblaze v1 0/6] Microblaze Cleanups Peter Crosthwaite
                   ` (3 preceding siblings ...)
  2015-04-26 19:10 ` [Qemu-devel] [PATCH microblaze v1 4/6] mb: cpu: Remove unused CC_OP enum Peter Crosthwaite
@ 2015-04-26 19:10 ` Peter Crosthwaite
  2015-04-27  9:28   ` Edgar E. Iglesias
  2015-04-26 19:10 ` [Qemu-devel] [PATCH microblaze v1 6/6] mb: cpu: delete unused cpu_interrupts_enabled Peter Crosthwaite
  2015-04-27 14:47 ` [Qemu-devel] [PATCH microblaze v1 0/6] Microblaze Cleanups Michael Tokarev
  6 siblings, 1 reply; 14+ messages in thread
From: Peter Crosthwaite @ 2015-04-26 19:10 UTC (permalink / raw)
  To: qemu-devel; +Cc: qemu-trivial, edgari, Peter Crosthwaite

This define is unused. Remove.

Signed-off-by: Peter Crosthwaite <crosthwaite.peter@gmail.com>
---
 target-microblaze/cpu.h | 1 -
 1 file changed, 1 deletion(-)

diff --git a/target-microblaze/cpu.h b/target-microblaze/cpu.h
index f21da2f..6522af7 100644
--- a/target-microblaze/cpu.h
+++ b/target-microblaze/cpu.h
@@ -36,7 +36,6 @@ typedef struct CPUMBState CPUMBState;
 
 #define ELF_MACHINE	EM_MICROBLAZE
 
-#define EXCP_NMI        1
 #define EXCP_MMU        2
 #define EXCP_IRQ        3
 #define EXCP_BREAK      4
-- 
1.9.1

^ permalink raw reply related	[flat|nested] 14+ messages in thread

* [Qemu-devel] [PATCH microblaze v1 6/6] mb: cpu: delete unused cpu_interrupts_enabled
  2015-04-26 19:10 [Qemu-devel] [PATCH microblaze v1 0/6] Microblaze Cleanups Peter Crosthwaite
                   ` (4 preceding siblings ...)
  2015-04-26 19:10 ` [Qemu-devel] [PATCH microblaze v1 5/6] mb: cpu: Delete EXCP_NMI Peter Crosthwaite
@ 2015-04-26 19:10 ` Peter Crosthwaite
  2015-04-27 14:47 ` [Qemu-devel] [PATCH microblaze v1 0/6] Microblaze Cleanups Michael Tokarev
  6 siblings, 0 replies; 14+ messages in thread
From: Peter Crosthwaite @ 2015-04-26 19:10 UTC (permalink / raw)
  To: qemu-devel; +Cc: qemu-trivial, edgari, Peter Crosthwaite

This function is unused. Remove.

Signed-off-by: Peter Crosthwaite <crosthwaite.peter@gmail.com>
---
 target-microblaze/cpu.h | 5 -----
 1 file changed, 5 deletions(-)

diff --git a/target-microblaze/cpu.h b/target-microblaze/cpu.h
index 6522af7..56d3403 100644
--- a/target-microblaze/cpu.h
+++ b/target-microblaze/cpu.h
@@ -319,11 +319,6 @@ static inline int cpu_mmu_index (CPUMBState *env)
 int mb_cpu_handle_mmu_fault(CPUState *cpu, vaddr address, int rw,
                             int mmu_idx);
 
-static inline int cpu_interrupts_enabled(CPUMBState *env)
-{
-    return env->sregs[SR_MSR] & MSR_IE;
-}
-
 #include "exec/cpu-all.h"
 
 static inline void cpu_get_tb_cpu_state(CPUMBState *env, target_ulong *pc,
-- 
1.9.1

^ permalink raw reply related	[flat|nested] 14+ messages in thread

* Re: [Qemu-devel] [PATCH microblaze v1 5/6] mb: cpu: Delete EXCP_NMI
  2015-04-26 19:10 ` [Qemu-devel] [PATCH microblaze v1 5/6] mb: cpu: Delete EXCP_NMI Peter Crosthwaite
@ 2015-04-27  9:28   ` Edgar E. Iglesias
  2015-04-27 13:41     ` Michael Tokarev
  0 siblings, 1 reply; 14+ messages in thread
From: Edgar E. Iglesias @ 2015-04-27  9:28 UTC (permalink / raw)
  To: Peter Crosthwaite; +Cc: qemu-trivial, edgari, qemu-devel, Peter Crosthwaite

On Sun, Apr 26, 2015 at 12:10:23PM -0700, Peter Crosthwaite wrote:
> This define is unused. Remove.
> 
> Signed-off-by: Peter Crosthwaite <crosthwaite.peter@gmail.com>

Hi,

Any reason not to shift down the numbering?

Otherwise the whole series looks good to me.

Thanks,
Edgar


> ---
>  target-microblaze/cpu.h | 1 -
>  1 file changed, 1 deletion(-)
> 
> diff --git a/target-microblaze/cpu.h b/target-microblaze/cpu.h
> index f21da2f..6522af7 100644
> --- a/target-microblaze/cpu.h
> +++ b/target-microblaze/cpu.h
> @@ -36,7 +36,6 @@ typedef struct CPUMBState CPUMBState;
>  
>  #define ELF_MACHINE	EM_MICROBLAZE
>  
> -#define EXCP_NMI        1
>  #define EXCP_MMU        2
>  #define EXCP_IRQ        3
>  #define EXCP_BREAK      4
> -- 
> 1.9.1
> 
> 

^ permalink raw reply	[flat|nested] 14+ messages in thread

* Re: [Qemu-devel] [PATCH microblaze v1 5/6] mb: cpu: Delete EXCP_NMI
  2015-04-27  9:28   ` Edgar E. Iglesias
@ 2015-04-27 13:41     ` Michael Tokarev
  2015-04-27 14:13       ` Peter Crosthwaite
  2015-04-27 23:25       ` Edgar E. Iglesias
  0 siblings, 2 replies; 14+ messages in thread
From: Michael Tokarev @ 2015-04-27 13:41 UTC (permalink / raw)
  To: Edgar E. Iglesias, Peter Crosthwaite
  Cc: qemu-trivial, edgari, qemu-devel, Peter Crosthwaite

27.04.2015 12:28, Edgar E. Iglesias wrote:
> On Sun, Apr 26, 2015 at 12:10:23PM -0700, Peter Crosthwaite wrote:
>> This define is unused. Remove.
>>
>> Signed-off-by: Peter Crosthwaite <crosthwaite.peter@gmail.com>
> 
> Hi,
> 
> Any reason not to shift down the numbering?
> 
> Otherwise the whole series looks good to me.

What does this mean, "looks good", is it your R-b? :)

>> @@ -36,7 +36,6 @@ typedef struct CPUMBState CPUMBState;
>>  
>>  #define ELF_MACHINE	EM_MICROBLAZE
>>  
>> -#define EXCP_NMI        1
>>  #define EXCP_MMU        2
>>  #define EXCP_IRQ        3
>>  #define EXCP_BREAK      4

I can renumber this on commit just fine, there's no need
to resend whole thing, is it okay with you Peter?

Thanks,

/mjt

^ permalink raw reply	[flat|nested] 14+ messages in thread

* Re: [Qemu-devel] [PATCH microblaze v1 5/6] mb: cpu: Delete EXCP_NMI
  2015-04-27 13:41     ` Michael Tokarev
@ 2015-04-27 14:13       ` Peter Crosthwaite
  2015-04-27 23:25       ` Edgar E. Iglesias
  1 sibling, 0 replies; 14+ messages in thread
From: Peter Crosthwaite @ 2015-04-27 14:13 UTC (permalink / raw)
  To: Michael Tokarev
  Cc: Peter Crosthwaite, qemu-trivial, Edgar Iglesias,
	qemu-devel@nongnu.org Developers, Peter Crosthwaite,
	Edgar E. Iglesias

On Mon, Apr 27, 2015 at 6:41 AM, Michael Tokarev <mjt@tls.msk.ru> wrote:
> 27.04.2015 12:28, Edgar E. Iglesias wrote:
>> On Sun, Apr 26, 2015 at 12:10:23PM -0700, Peter Crosthwaite wrote:
>>> This define is unused. Remove.
>>>
>>> Signed-off-by: Peter Crosthwaite <crosthwaite.peter@gmail.com>
>>
>> Hi,
>>
>> Any reason not to shift down the numbering?

None. Although my goal was to make no code change in the trivial patch series.

>>
>> Otherwise the whole series looks good to me.
>
> What does this mean, "looks good", is it your R-b? :)
>
>>> @@ -36,7 +36,6 @@ typedef struct CPUMBState CPUMBState;
>>>
>>>  #define ELF_MACHINE EM_MICROBLAZE
>>>
>>> -#define EXCP_NMI        1
>>>  #define EXCP_MMU        2
>>>  #define EXCP_IRQ        3
>>>  #define EXCP_BREAK      4
>
> I can renumber this on commit just fine, there's no need
> to resend whole thing, is it okay with you Peter?
>

It's ok with me. Thanks.

Regards,
Peter

> Thanks,
>
> /mjt
>

^ permalink raw reply	[flat|nested] 14+ messages in thread

* Re: [Qemu-devel] [PATCH microblaze v1 0/6] Microblaze Cleanups
  2015-04-26 19:10 [Qemu-devel] [PATCH microblaze v1 0/6] Microblaze Cleanups Peter Crosthwaite
                   ` (5 preceding siblings ...)
  2015-04-26 19:10 ` [Qemu-devel] [PATCH microblaze v1 6/6] mb: cpu: delete unused cpu_interrupts_enabled Peter Crosthwaite
@ 2015-04-27 14:47 ` Michael Tokarev
  2015-04-29  5:46   ` Michael Tokarev
  6 siblings, 1 reply; 14+ messages in thread
From: Michael Tokarev @ 2015-04-27 14:47 UTC (permalink / raw)
  To: Peter Crosthwaite, qemu-devel; +Cc: qemu-trivial, edgari, Peter Crosthwaite

26.04.2015 22:10, Peter Crosthwaite wrote:
> Hi Edgar,
> 
> This is some code cleanup of Microblaze. Mainly unused code
> deletion but also code share of the defconfig (P1).

Applied all 6 to -trivial, as is, since the whole series
does not perform any code changes.  Renumbering EXCP_*
constants can be done later.

Thanks,

/mjt

^ permalink raw reply	[flat|nested] 14+ messages in thread

* Re: [Qemu-devel] [PATCH microblaze v1 5/6] mb: cpu: Delete EXCP_NMI
  2015-04-27 13:41     ` Michael Tokarev
  2015-04-27 14:13       ` Peter Crosthwaite
@ 2015-04-27 23:25       ` Edgar E. Iglesias
  1 sibling, 0 replies; 14+ messages in thread
From: Edgar E. Iglesias @ 2015-04-27 23:25 UTC (permalink / raw)
  To: Michael Tokarev
  Cc: qemu-trivial, Peter Crosthwaite, Peter Crosthwaite, edgari,
	qemu-devel

On Mon, Apr 27, 2015 at 04:41:13PM +0300, Michael Tokarev wrote:
> 27.04.2015 12:28, Edgar E. Iglesias wrote:
> > On Sun, Apr 26, 2015 at 12:10:23PM -0700, Peter Crosthwaite wrote:
> >> This define is unused. Remove.
> >>
> >> Signed-off-by: Peter Crosthwaite <crosthwaite.peter@gmail.com>
> > 
> > Hi,
> > 
> > Any reason not to shift down the numbering?
> > 
> > Otherwise the whole series looks good to me.
> 
> What does this mean, "looks good", is it your R-b? :)

Sure, with the change:

Reviewed-by: Edgar E. Iglesias <edgar.iglesias@xilinx.com>

> 
> >> @@ -36,7 +36,6 @@ typedef struct CPUMBState CPUMBState;
> >>  
> >>  #define ELF_MACHINE	EM_MICROBLAZE
> >>  
> >> -#define EXCP_NMI        1
> >>  #define EXCP_MMU        2
> >>  #define EXCP_IRQ        3
> >>  #define EXCP_BREAK      4
> 
> I can renumber this on commit just fine, there's no need
> to resend whole thing, is it okay with you Peter?
> 
> Thanks,
> 
> /mjt

^ permalink raw reply	[flat|nested] 14+ messages in thread

* Re: [Qemu-devel] [PATCH microblaze v1 0/6] Microblaze Cleanups
  2015-04-27 14:47 ` [Qemu-devel] [PATCH microblaze v1 0/6] Microblaze Cleanups Michael Tokarev
@ 2015-04-29  5:46   ` Michael Tokarev
  0 siblings, 0 replies; 14+ messages in thread
From: Michael Tokarev @ 2015-04-29  5:46 UTC (permalink / raw)
  To: Peter Crosthwaite, qemu-devel; +Cc: qemu-trivial, edgari, Peter Crosthwaite

27.04.2015 17:47, Michael Tokarev wrote:
> 26.04.2015 22:10, Peter Crosthwaite wrote:
>> Hi Edgar,
>>
>> This is some code cleanup of Microblaze. Mainly unused code
>> deletion but also code share of the defconfig (P1).
> 
> Applied all 6 to -trivial, as is, since the whole series
> does not perform any code changes.  Renumbering EXCP_*
> constants can be done later.

(Just sent the renumbering change separately, to hopefully
get final R-b from Edgar ;)

But one more thing.  I'd like to rename "mb:" in subjects
to be "microblaze:", since the top message (this 0/6) wont
be in git and "mb:" prefix is somewhat too short ;)

Thanks,

/mjt

^ permalink raw reply	[flat|nested] 14+ messages in thread

* Re: [Qemu-devel] [PATCH microblaze v1 3/6] mb: cpu: Remote unused cpu_get_pc
  2015-04-26 19:10 ` [Qemu-devel] [PATCH microblaze v1 3/6] mb: cpu: Remote unused cpu_get_pc Peter Crosthwaite
@ 2015-04-30  8:43   ` Alex Bennée
  0 siblings, 0 replies; 14+ messages in thread
From: Alex Bennée @ 2015-04-30  8:43 UTC (permalink / raw)
  To: Peter Crosthwaite; +Cc: qemu-trivial, edgari, qemu-devel, Peter Crosthwaite


Peter Crosthwaite <crosthwaitepeter@gmail.com> writes:

> This function is not used by anything. Remove.
>
> Signed-off-by: Peter Crosthwaite <crosthwaite.peter@gmail.com>
> ---
>  target-microblaze/cpu.h | 5 -----
>  1 file changed, 5 deletions(-)
>
> diff --git a/target-microblaze/cpu.h b/target-microblaze/cpu.h
> index 7d06227..2c18b49 100644
> --- a/target-microblaze/cpu.h
> +++ b/target-microblaze/cpu.h
> @@ -333,11 +333,6 @@ static inline int cpu_interrupts_enabled(CPUMBState *env)
>  
>  #include "exec/cpu-all.h"
>  
> -static inline target_ulong cpu_get_pc(CPUMBState *env)
> -{
> -    return env->sregs[SR_PC];
> -}
> -
>  static inline void cpu_get_tb_cpu_state(CPUMBState *env, target_ulong *pc,
>                                          target_ulong *cs_base, int *flags)
>  {

Ahh I see that now ;-)

Reviewed-by: Alex Bennée <alex.bennee@linaro.org>


-- 
Alex Bennée

^ permalink raw reply	[flat|nested] 14+ messages in thread

end of thread, other threads:[~2015-04-30  8:43 UTC | newest]

Thread overview: 14+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-04-26 19:10 [Qemu-devel] [PATCH microblaze v1 0/6] Microblaze Cleanups Peter Crosthwaite
2015-04-26 19:10 ` [Qemu-devel] [PATCH microblaze v1 1/6] defconfigs: Piggyback microblazeel on microblaze Peter Crosthwaite
2015-04-26 19:10 ` [Qemu-devel] [PATCH microblaze v1 2/6] mb: mmu: Delete flip_um fn prototype Peter Crosthwaite
2015-04-26 19:10 ` [Qemu-devel] [PATCH microblaze v1 3/6] mb: cpu: Remote unused cpu_get_pc Peter Crosthwaite
2015-04-30  8:43   ` Alex Bennée
2015-04-26 19:10 ` [Qemu-devel] [PATCH microblaze v1 4/6] mb: cpu: Remove unused CC_OP enum Peter Crosthwaite
2015-04-26 19:10 ` [Qemu-devel] [PATCH microblaze v1 5/6] mb: cpu: Delete EXCP_NMI Peter Crosthwaite
2015-04-27  9:28   ` Edgar E. Iglesias
2015-04-27 13:41     ` Michael Tokarev
2015-04-27 14:13       ` Peter Crosthwaite
2015-04-27 23:25       ` Edgar E. Iglesias
2015-04-26 19:10 ` [Qemu-devel] [PATCH microblaze v1 6/6] mb: cpu: delete unused cpu_interrupts_enabled Peter Crosthwaite
2015-04-27 14:47 ` [Qemu-devel] [PATCH microblaze v1 0/6] Microblaze Cleanups Michael Tokarev
2015-04-29  5:46   ` Michael Tokarev

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).