== Progress ==
* Juno CI loop added and tested (CARD-1611 50%)
* qemu job to docker migration finished (20%)
* Ended TC2 kvm testing - not all needed code mainline (20%)
* started converting my CI jobs to use jenkins-job-builder (10%)
== Plans ==
* mocve my jobs to jenkins-job-builder and docker where applicable
* highbank slave upgrade to trusty
== Issues ==
* Xen juno support not ready, need to split CARD-1611
== Progress ==
* Release (20%)
* add links for bare metal toolchain (Bug 719)
* fix permission issue for 14.06 toolchain (Bug 745)
* remove some more launchpad references
* release note updates
* OE baseline work (CARD-787: 80%)
* All builds seem to be OK
* Going through all the warnings and fix them
== Plans ==
* ELC-E
--
Koen Kooi
Builds and Baselines | Release Manager
Linaro.org | Open source software for ARM SoCs
Just realized I forgot to send the report last week, so I'm combining them.
== Progress ==
* Got AOSP to build with clang for all Nexus devices
* Submitted all related patches upstream, most are accepted, 34 remaining
in the queue
* Wrote a script that pulls related patches directly from AOSP's gerrit
* Looked at boot failure with clang-built init; no final results yet
(clang-built init does
start up properly, but reboots at some point that needs to be identified)
* Looked at UI startup failure with clang-built AOSP; no final results yet
(building the most suspected components such as surfaceflinger, opengl,
hwui, ... with gcc doesn't help)
* Started preparing for my Linux Plumbers Conf talks
* Looked at installjammer and NSIS to replace the Windoze installer for
toolchain binaries (cbuild1 built this automatically, cbuild2 currently
doesn't). Picked NSIS.
== Plans ==
* Finish preparations for my Linux Plumbers Conf talks
* Attend Linux Plumbers Conf
* Toolchain releases
== Issues ==
* none
Signed-off-by: Sanjay Singh Rawat <sanjay.rawat(a)linaro.org>
---
below are the leaks which this patch clears
72 bytes in 3 blocks are definitely lost in loss record 2 of 9
at 0x4C2ABBD: malloc (vg_replace_malloc.c:296)
by 0x4C2CA8B: realloc (vg_replace_malloc.c:692)
by 0x403636: store_data (idlestat.c:836)
72 bytes in 2 blocks are definitely lost in loss record 4 of 9
at 0x4C2CB0A: realloc (vg_replace_malloc.c:692)
by 0x403820: store_irq (idlestat.c:882)
32,136 bytes in 9 blocks are definitely lost in loss record 9 of 9
at 0x4C2CB0A: realloc (vg_replace_malloc.c:692)
by 0x403636: store_data (idlestat.c:836)
by 0x403E2D: idlestat_load (idlestat.c:1015)
---
idlestat.c | 7 +++++++
1 file changed, 7 insertions(+)
diff --git a/idlestat.c b/idlestat.c
index da615cb..4d38d57 100644
--- a/idlestat.c
+++ b/idlestat.c
@@ -459,9 +459,16 @@ static void release_cstate_info(struct cpuidle_cstates *cstates, int nrcpus)
struct cpuidle_cstate *c = &(cstates[cpu].cstate[i]);
if (c->name)
free(c->name);
+ if (c->data)
+ free(c->data);
}
}
+ if (cstates->wakeinfo.irqinfo)
+ free(cstates->wakeinfo.irqinfo);
+ if (cstates->wakeirq)
+ free(cstates->wakeirq);
+
/* free the cstates array */
free(cstates);
}
--
1.8.3.2
== Progress ==
* CARD 1103: Flash support on u-boot fastboot (CARD-1103: 100%)
- Fastboot flash framework by Steve Rae was accepted in Upstream
- v4 can't be submitted due the code present in upstream
- Working enabling the existing framework for BBB and
Panda to complete the card
== Plans ==
* CARD 1103: fastboot flash command (CARD-1103: 70%)
- submit the changes made for support of BBB and Panda
* Enabling UEFI Fastboot on Panda (CARD-198: 30%)
- work on the task
== Issues ==
* 2 days holiday in India in last week
Regards,
Dileep