New commits:
http://git.directfb.org/?p=core/linux-fusion.git;a=commit;h=cf93cdf6ab5052264fc30e575b547b94860a791c
commit cf93cdf6ab5052264fc30e575b547b94860a791c
Author: Andreas Shimokawa <[email protected]>
Date:   Mon Oct 22 14:28:16 2012 +0200

    merge linux-one

 Makefile                  |   76 +++--
 one/.gitignore            |    1 +
 one/Kconfig               |    4 +
 one/Makefile-2.4          |    6 +
 one/Makefile-2.6          |    3 +
 one/OneTypes.h            |   92 ++++++
 one/app.c                 |  385 ++++++++++++++++++++++
 one/app.h                 |   74 +++++
 one/debug.c               |   81 +++++
 one/debug.h               |   91 ++++++
 one/entries.c             |  431 +++++++++++++++++++++++++
 one/entries.h             |  155 +++++++++
 one/fifo.c                |   41 +++
 one/fifo.h                |   33 ++
 one/list.c                |   20 ++
 one/list.h                |  282 +++++++++++++++++
 one/one_udp.c             |  374 ++++++++++++++++++++++
 one/one_udp.h             |   71 +++++
 one/onecore.h             |   85 +++++
 one/onedev.c              |  709 +++++++++++++++++++++++++++++++++++++++++
 one/onedev.h              |   56 ++++
 one/packet.c              |  197 ++++++++++++
 one/packet.h              |   47 +++
 one/queue.c               |  774 +++++++++++++++++++++++++++++++++++++++++++++
 one/queue.h               |   95 ++++++
 one/single/onecore_impl.c |  281 ++++++++++++++++
 one/single/onecore_impl.h |   46 +++
 one/target.c              |   83 +++++
 one/target.h              |   53 ++++
 one/types.h               |   31 ++
 src/.gitignore            |    1 -
 src/Kconfig               |    4 -
 src/Makefile-2.4          |    6 -
 src/Makefile-2.6          |    3 -
 src/app.c                 |  385 ----------------------
 src/app.h                 |   74 -----
 src/debug.c               |   81 -----
 src/debug.h               |   91 ------
 src/entries.c             |  431 -------------------------
 src/entries.h             |  155 ---------
 src/fifo.c                |   41 ---
 src/fifo.h                |   33 --
 src/list.c                |   20 --
 src/list.h                |  282 -----------------
 src/one_udp.c             |  374 ----------------------
 src/one_udp.h             |   71 -----
 src/onecore.h             |   85 -----
 src/onedev.c              |  709 -----------------------------------------
 src/onedev.h              |   56 ----
 src/packet.c              |  197 ------------
 src/packet.h              |   47 ---
 src/queue.c               |  774 ---------------------------------------------
 src/queue.h               |   95 ------
 src/single/onecore_impl.c |  281 ----------------
 src/single/onecore_impl.h |   46 ---
 src/target.c              |   83 -----
 src/target.h              |   53 ----
 src/types.h               |   31 --
 58 files changed, 4650 insertions(+), 4536 deletions(-)




http://git.directfb.org/?p=core/linux-fusion.git;a=commit;h=a4dbc395128e3f13b8cf4a1f22cbf8c92999f1e8
commit a4dbc395128e3f13b8cf4a1f22cbf8c92999f1e8
Author: Denis Oliver Kropp <[email protected]>
Date:   Fri Aug 31 00:49:37 2012 +0200

    One: In OneAppTarget_Destroy() remove from receiving list if needed.

 src/app.c |    3 +++
 1 file changed, 3 insertions(+)

http://git.directfb.org/?p=core/linux-fusion.git;a=commit;h=7d9dd5e106c53ec910d894cd46c341e55ff82cf2
commit 7d9dd5e106c53ec910d894cd46c341e55ff82cf2
Author: Denis Oliver Kropp <[email protected]>
Date:   Tue Aug 28 11:44:13 2012 +0200

    One: Use direct_list_foreach_safe() when iterating through receiving list.

 src/app.c |    4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

http://git.directfb.org/?p=core/linux-fusion.git;a=commit;h=43e0a4723acaa48eba44a15ab96e5feab95b3b1c
commit 43e0a4723acaa48eba44a15ab96e5feab95b3b1c
Author: Denis Oliver Kropp <[email protected]>
Date:   Thu Jun 14 17:23:50 2012 +0200

    linux-one: Reset magic values to zero after non-zeroing malloc.

 src/app.c |    3 +++
 1 file changed, 3 insertions(+)

http://git.directfb.org/?p=core/linux-fusion.git;a=commit;h=7105e1a26b75af5149244422eb1613588c6e3784
commit 7105e1a26b75af5149244422eb1613588c6e3784
Author: Andreas Shimokawa <[email protected]>
Date:   Wed Jun 6 17:03:10 2012 +0200

    linux-one: increase max packet size to 32768 bytes (from 16384)

 include/linux/one.h |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

http://git.directfb.org/?p=core/linux-fusion.git;a=commit;h=152c382a6d53aa4ce23772e9ddec7a5c854a23b5
commit 152c382a6d53aa4ce23772e9ddec7a5c854a23b5
Author: Denis Oliver Kropp <[email protected]>
Date:   Fri Mar 16 15:22:39 2012 +0100

    One: Add more debug info about apps and queues to /proc.

 src/app.c                 |    2 ++
 src/debug.c               |    2 +-
 src/debug.h               |    6 +++++
 src/onecore.h             |    2 ++
 src/onedev.c              |   60 +++++++++++++++++++++++++++++++++++++++++++++
 src/queue.c               |   46 ++++++++++++++++++++++++++++++++--
 src/queue.h               |    9 +++++++
 src/single/onecore_impl.c |    6 +++++
 8 files changed, 130 insertions(+), 3 deletions(-)

http://git.directfb.org/?p=core/linux-fusion.git;a=commit;h=cacb6e53354948b7824dac942e468e62fd356a3e
commit cacb6e53354948b7824dac942e468e62fd356a3e
Author: Denis Oliver Kropp <[email protected]>
Date:   Wed Jan 11 12:12:33 2012 +0100

    queue: init link magic with 0 to avoid assumption failure due to 
non-clearing malloc

 src/queue.c |    4 ++++
 1 file changed, 4 insertions(+)


http://git.directfb.org/?p=core/linux-fusion.git;a=commit;h=f97410d43d8d92c857f01f25703d3b49faa02443
commit f97410d43d8d92c857f01f25703d3b49faa02443
Author: Denis Oliver Kropp <[email protected]>
Date:   Fri Nov 18 15:02:39 2011 +0100

    One: Print pending packet count for each queue, print attached QIDs, more 
error logging.

 src/app.c   |   13 -------------
 src/app.h   |   16 ++++++++++++++++
 src/queue.c |   38 ++++++++++++++++++++++++++++++--------
 3 files changed, 46 insertions(+), 21 deletions(-)



http://git.directfb.org/?p=core/linux-fusion.git;a=commit;h=3a970f42110f4cd543a6600aefa7779a782bc70e
commit 3a970f42110f4cd543a6600aefa7779a782bc70e
Author: Denis Oliver Kropp <[email protected]>
Date:   Thu Oct 27 11:34:22 2011 +0200

    One: Start dynamic IDs at 1000 to reserve 1-999 for static IDs.

 src/single/onecore_impl.c |    3 +++
 1 file changed, 3 insertions(+)

http://git.directfb.org/?p=core/linux-fusion.git;a=commit;h=3790aa71ec263fdfc1d135e70018b8313d5674cd
commit 3790aa71ec263fdfc1d135e70018b8313d5674cd
Author: Denis Oliver Kropp <[email protected]>
Date:   Fri Oct 21 21:43:34 2011 +0200

    One: Add optional receive timeout, 0 = no timeout, -1 = return immediately 
if nothing to receive

 include/linux/one.h       |    2 ++
 src/app.c                 |   19 ++++++++++++++++---
 src/app.h                 |    3 ++-
 src/queue.c               |    3 ++-
 src/single/onecore_impl.c |   35 +++++++++++++++++++++++++++++++----
 5 files changed, 53 insertions(+), 9 deletions(-)

http://git.directfb.org/?p=core/linux-fusion.git;a=commit;h=cae26c9d7c43ee6b41e3b8d186aee6fb9121831f
commit cae26c9d7c43ee6b41e3b8d186aee6fb9121831f
Author: Denis Oliver Kropp <[email protected]>
Date:   Tue Oct 11 16:45:50 2011 +0200

    One: Allow attaching remote queue to local queue, needs refactoring...

 src/queue.c |   32 +++++++++++++++++++++++++++++---
 1 file changed, 29 insertions(+), 3 deletions(-)

http://git.directfb.org/?p=core/linux-fusion.git;a=commit;h=c932c9f4aee50369298852ec3da78b1eeec8ee05
commit c932c9f4aee50369298852ec3da78b1eeec8ee05
Author: Denis Oliver Kropp <[email protected]>
Date:   Tue Oct 11 16:45:21 2011 +0200

    One: Keep a list of OneApps.

 src/app.h    |    2 ++
 src/onedev.c |    4 ++++
 src/onedev.h |    2 ++
 3 files changed, 8 insertions(+)

http://git.directfb.org/?p=core/linux-fusion.git;a=commit;h=28abdf22db14025ac0d059e22d1e7746b392d4c4
commit 28abdf22db14025ac0d059e22d1e7746b392d4c4
Author: Denis Oliver Kropp <[email protected]>
Date:   Mon Oct 10 21:54:22 2011 +0200

    One: Disable packet append for now

 src/app.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

http://git.directfb.org/?p=core/linux-fusion.git;a=commit;h=451906a3058b17be0b68a6a20dfbe5b957568b28
commit 451906a3058b17be0b68a6a20dfbe5b957568b28
Author: Denis Oliver Kropp <[email protected]>
Date:   Mon Oct 10 20:35:40 2011 +0200

    One: Don't clear magic in one_core_cleanup().

 src/single/onecore_impl.c |    3 ---
 1 file changed, 3 deletions(-)

http://git.directfb.org/?p=core/linux-fusion.git;a=commit;h=f9e4360856119989593952ec28c31336144eb27d
commit f9e4360856119989593952ec28c31336144eb27d
Author: Denis Oliver Kropp <[email protected]>
Date:   Mon Oct 10 20:32:10 2011 +0200

    One: Add missing one_core_cleanup() to kernel module.

 src/single/onecore_impl.c |   11 +++++++++++
 1 file changed, 11 insertions(+)


_______________________________________________
directfb-cvs mailing list
[email protected]
http://mail.directfb.org/cgi-bin/mailman/listinfo/directfb-cvs

Reply via email to