qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PULL 0/4] slirp updates
@ 2016-05-16 19:25 Samuel Thibault
  2016-05-16 19:25 ` [Qemu-devel] [PULL 1/4] slirp: Clean up slirp_config.h Samuel Thibault
                   ` (4 more replies)
  0 siblings, 5 replies; 11+ messages in thread
From: Samuel Thibault @ 2016-05-16 19:25 UTC (permalink / raw)
  To: qemu-devel, peter.maydell; +Cc: Samuel Thibault, jan.kiszka

  Merge remote-tracking branch 'remotes/kraxel/tags/pull-ui-20160513-1' into staging (2016-05-13 13:39:38 +0100)

are available in the git repository at:

  http://people.debian.org/~sthibault/qemu.git tags/samuel-thibault

for you to fetch changes up to 9892663dc486755b5534ff8a77913edc5ea28c79:

  slirp: Clean up osdep.h related header inclusions (2016-05-16 21:01:16 +0200)

----------------------------------------------------------------
slirp updates

----------------------------------------------------------------
Thomas Huth (4):
      slirp: Clean up slirp_config.h
      slirp: Remove obsolete backward-compatibility cruft
      slirp: Remove some unused code from slirp.h
      slirp: Clean up osdep.h related header inclusions

 slirp/ip6_icmp.c     |  1 -
 slirp/ip_input.c     |  1 -
 slirp/misc.c         | 21 -----------
 slirp/slirp.h        | 50 --------------------------
 slirp/slirp_config.h | 99 ----------------------------------------------------
 slirp/udp6.c         |  1 -
 6 files changed, 173 deletions(-)

^ permalink raw reply	[flat|nested] 11+ messages in thread
* [Qemu-devel] [PULL 0/4] slirp updates
@ 2017-07-15 12:30 Samuel Thibault
  2017-07-15 12:40 ` no-reply
  2017-07-17 10:14 ` Peter Maydell
  0 siblings, 2 replies; 11+ messages in thread
From: Samuel Thibault @ 2017-07-15 12:30 UTC (permalink / raw)
  To: qemu-devel; +Cc: Samuel Thibault, stefanha, jan.kiszka

warning: redirection vers https://people.debian.org/~sthibault/qemu.git/
The following changes since commit 4871b51b9241b10f4fd8e04bbb21577886795e25:

  vmgenid-test: use boot-sector infrastructure (2017-07-14 17:03:03 +0100)

are available in the git repository at:

  http://people.debian.org/~sthibault/qemu.git tags/samuel-thibault

for you to fetch changes up to 75cb298d905030fca897ea1d80e409c7f7e3e5ea:

  slirp: Handle error returns from sosendoob() (2017-07-15 14:28:25 +0200)

----------------------------------------------------------------
slirp updates

----------------------------------------------------------------
Marc-André Lureau (1):
      slirp: use DIV_ROUND_UP

Peter Maydell (3):
      slirp: fork_exec(): Don't close() a negative number in fork_exec()
      slirp: Handle error returns from slirp_send() in sosendoob()
      slirp: Handle error returns from sosendoob()

 slirp/ip6.h    |  6 +++---
 slirp/misc.c   |  4 +++-
 slirp/sbuf.c   |  2 +-
 slirp/socket.c | 52 +++++++++++++++++++++++++++++++++++-----------------
 4 files changed, 42 insertions(+), 22 deletions(-)

^ permalink raw reply	[flat|nested] 11+ messages in thread
* [Qemu-devel] [PULL 0/4] slirp updates
@ 2018-11-10 14:09 Samuel Thibault
  2018-11-12 10:58 ` Peter Maydell
  0 siblings, 1 reply; 11+ messages in thread
From: Samuel Thibault @ 2018-11-10 14:09 UTC (permalink / raw)
  To: qemu-devel, peter.maydell; +Cc: Samuel Thibault, stefanha, jan.kiszka

The following changes since commit 160e5c22e55b3f775c2003dfc626fa872ee4a7a1:

  Merge remote-tracking branch 'remotes/gkurz/tags/for-upstream' into staging (2018-11-09 10:54:10 +0000)

are available in the Git repository at:

  https://people.debian.org/~sthibault/qemu.git tags/samuel-thibault

for you to fetch changes up to 5c75f3adbbfcdf8fae6e74875b44efb8d928974a:

  slirp: fork_exec(): create and connect child socket before fork() (2018-11-10 15:07:53 +0100)

----------------------------------------------------------------
slirp updates

Peter Maydell (4):
  slirp: Don't pass possibly -1 fd to send()
  slirp: Use g_new() to allocate sockets in socreate()
  slirp: Remove code that handles socreate() failure
  slirp: fork_exec(): create and connect child socket before fork()

----------------------------------------------------------------
Peter Maydell (4):
      slirp: Don't pass possibly -1 fd to send()
      slirp: Use g_new() to allocate sockets in socreate()
      slirp: Remove code that handles socreate() failure
      slirp: fork_exec(): create and connect child socket before fork()

 slirp/ip_icmp.c   |  2 +-
 slirp/misc.c      | 55 ++++++++++++++++++++++++++++++++++---------------------
 slirp/slirp.c     | 14 +++++++++++---
 slirp/socket.c    | 17 ++++++-----------
 slirp/tcp_input.c |  7 +++----
 slirp/tcp_subr.c  |  7 +------
 slirp/udp.c       |  6 ------
 slirp/udp6.c      |  3 ---
 8 files changed, 56 insertions(+), 55 deletions(-)

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

end of thread, other threads:[~2018-11-12 10:59 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-05-16 19:25 [Qemu-devel] [PULL 0/4] slirp updates Samuel Thibault
2016-05-16 19:25 ` [Qemu-devel] [PULL 1/4] slirp: Clean up slirp_config.h Samuel Thibault
2016-05-16 19:25 ` [Qemu-devel] [PULL 2/4] slirp: Remove obsolete backward-compatibility cruft Samuel Thibault
2016-05-16 19:25 ` [Qemu-devel] [PULL 3/4] slirp: Remove some unused code from slirp.h Samuel Thibault
2016-05-16 19:25 ` [Qemu-devel] [PULL 4/4] slirp: Clean up osdep.h related header inclusions Samuel Thibault
2016-05-17  9:35 ` [Qemu-devel] [PULL 0/4] slirp updates Peter Maydell
  -- strict thread matches above, loose matches on Subject: below --
2017-07-15 12:30 Samuel Thibault
2017-07-15 12:40 ` no-reply
2017-07-17 10:14 ` Peter Maydell
2018-11-10 14:09 Samuel Thibault
2018-11-12 10:58 ` Peter Maydell

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).