[Git] mISDN kernel tree branch socket updated. mISDN_1_1_2-652-gc905759
[email protected] (git version ctrl) Sat, 23 May 2015 22:49:18 +0200 (CEST)
| Newsgroups | gmane.linux.isdn.i4l.devel |
|---|---|
| Message-ID | <[email protected]> |
--===============8481489104865088201==
Content-Type: text/plain
Content-Transfer-Encoding: quoted-printable
X-MIME-Autoconverted: from 8bit to quoted-printable by listserv.isdn4linux.de id t4NLxZKX017094
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "mISDN kernel tree".
The branch, socket has been updated
via c90575934a7362db951533d5bdee5aca83f0b2f0 (commit)
via 6a67090b2fbfded252ce6b60d3398e91c804a00f (commit)
via ffe238698ed2ce225595c9cb27c17fd358d7ffd9 (commit)
via d003351b771739b664606f1c3d0c1cea0a6e5957 (commit)
via 78dd93e85cbe4c92262b1ec04a056b4d10285442 (commit)
via 789579eecaab5cd1baa428da616ddfcf9fbe8b0d (commit)
via f838894a9ab3d02e46cd41de47ed7caacf147a6b (commit)
via ca3e36f6bf8ef7faeedf4178481ce9c4dc5bd6ab (commit)
via dbfa2defd20138b126c914a2d0c169665d269fbf (commit)
via 4bb47ea5f04054b24e6feffbf479617d36fccf14 (commit)
via ea83e72d2bea706323378b74a43a8b79180deb18 (commit)
via 99ab78d6f882d40caa7d7e2cb6a81f4ef51d5add (commit)
via b9acab9539e0c1ddaf1b6a9cdff3b9b0114334e6 (commit)
via c1e999c927998a6c6251cf0eae79b7d0c72a0311 (commit)
from 2489ccb0cbe83182a056a2a85976b0751981dc5e (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit c90575934a7362db951533d5bdee5aca83f0b2f0
Author: Karsten Keil <keil-shG/GajIFYqbacvFa/[email protected]>
Date: Sat May 23 22:45:06 2015 +0200
add compability series for 3.1x kernel versions
commit 6a67090b2fbfded252ce6b60d3398e91c804a00f
Author: Karsten Keil <keil-shG/GajIFYqbacvFa/[email protected]>
Date: Sat May 23 22:48:14 2015 +0200
revert chagnes done in 3.19
commit ffe238698ed2ce225595c9cb27c17fd358d7ffd9
Author: Karsten Keil <keil-shG/GajIFYqbacvFa/[email protected]>
Date: Sat May 23 22:47:49 2015 +0200
Add patch handling for kernel versions > 3.x
commit d003351b771739b664606f1c3d0c1cea0a6e5957
Author: Fabian Frederick <[email protected]>
Date: Fri Feb 20 19:12:52 2015 +0100
mISDN: replace current->state by set_current_state()
=20
Use helper function to access current->state.
Direct assignments are prone to races and therefore buggy.
=20
Thanks to Peter Zijlstra for the exact definition of the problem.
=20
Signed-off-by: Fabian Frederick <[email protected]>
Signed-off-by: David S. Miller <davem-fT/PcQaiUtIeIZ0/[email protected]>
commit 78dd93e85cbe4c92262b1ec04a056b4d10285442
Author: Wei Yongjun <[email protected]>
Date: Mon Sep 3 15:31:00 2012 +0800
mISDN: fix possible memory leak in hfcmulti_init()
=20
hc has been allocated in this function and missing free it before
leaving from some error handling cases.
=20
spatch with a semantic match is used to found this problem.
(http://coccinelle.lip6.fr/)
=20
Signed-off-by: Wei Yongjun <[email protected]>
Signed-off-by: David S. Miller <davem-fT/PcQaiUtIeIZ0/[email protected]>
commit 789579eecaab5cd1baa428da616ddfcf9fbe8b0d
Author: Masanari Iida <[email protected]>
Date: Fri Nov 9 05:02:49 2012 +0000
isdn: Fix typo in drivers/isdn
=20
Correct spelling typo in printk within drivers/isdn
=20
Signed-off-by: Masanari Iida <[email protected]>
Signed-off-by: David S. Miller <davem-fT/PcQaiUtIeIZ0/[email protected]>
commit f838894a9ab3d02e46cd41de47ed7caacf147a6b
Author: Colin Ian King <[email protected]>
Date: Fri Sep 5 14:26:11 2014 +0100
mISDN: remove DSP_NEVER_DEFINED and adjust code identation
=20
The DSP_NEVER_DEFINED #ifdef is confusing, it slips in an
extra } which is not required because the previous code is
indented incorrectly. Correct the identation and remove the
extraneous DSP_NEVER_DEFINED
=20
Signed-off-by: Colin Ian King <[email protected]>
Signed-off-by: David S. Miller <davem-fT/PcQaiUtIeIZ0/[email protected]>
commit ca3e36f6bf8ef7faeedf4178481ce9c4dc5bd6ab
Author: Arnd Bergmann <[email protected]>
Date: Tue Jan 13 17:10:58 2015 +0100
mISDN: avoid arch specific __builtin_return_address call
=20
Not all architectures are able to call __builtin_return_address().
On ARM, the mISDN code produces this warning:
=20
hardware/mISDN/w6692.c: In function 'w6692_dctrl':
hardware/mISDN/w6692.c:1181:75: warning: unsupported argument to '__b=
uiltin_return_address'
pr_debug("%s: %s dev(%d) open from %p\n", card->name, __func__,
=
^
hardware/mISDN/mISDNipac.c: In function 'open_dchannel':
hardware/mISDN/mISDNipac.c:759:75: warning: unsupported argument to '=
__builtin_return_address'
pr_debug("%s: %s dev(%d) open from %p\n", isac->name, __func__,
=
^
=20
In a lot of cases, this is relatively easy to work around by
passing the value of __builtin_return_address(0) from the
callers into the functions that want it. One exception is
the indirect 'open' function call in struct isac_hw. While it
would be possible to fix this as well, this patch only addresses
the other callers properly and lets this one return the direct
parent function, which should be good enough.
=20
Signed-off-by: Arnd Bergmann <[email protected]>
Signed-off-by: David S. Miller <davem-fT/PcQaiUtIeIZ0/[email protected]>
commit dbfa2defd20138b126c914a2d0c169665d269fbf
Author: Masanari Iida <[email protected]>
Date: Fri Feb 27 23:52:31 2015 +0900
treewide: Fix typo in printk messages
=20
This patch fix spelling typo in printk messages.
=20
Signed-off-by: Masanari Iida <[email protected]>
Acked-by: Randy Dunlap <[email protected]>
Signed-off-by: Jiri Kosina <[email protected]>
commit 4bb47ea5f04054b24e6feffbf479617d36fccf14
Author: Markus Elfring <[email protected]>
Date: Wed Nov 19 20:48:26 2014 +0100
mISDN: Deletion of unnecessary checks before the function call "vfree=
"
=20
The vfree() function performs also input parameter validation. Thus t=
he test
around the call is not needed.
=20
This issue was detected by using the Coccinelle software.
=20
Signed-off-by: Markus Elfring <[email protected]>
Signed-off-by: David S. Miller <davem-fT/PcQaiUtIeIZ0/[email protected]>
commit ea83e72d2bea706323378b74a43a8b79180deb18
Author: Masanari Iida <[email protected]>
Date: Wed Nov 5 22:26:48 2014 +0900
treewide: fix typo in printk and Kconfig
=20
This patch fix spelling typo in printk and Kconfig within
various part of kernel sources.
=20
Signed-off-by: Masanari Iida <[email protected]>
Acked-by: Randy Dunlap <[email protected]>
Signed-off-by: Jiri Kosina <[email protected]>
commit 99ab78d6f882d40caa7d7e2cb6a81f4ef51d5add
Author: Ying Xue <[email protected]>
Date: Mon Mar 2 15:37:48 2015 +0800
net: Remove iocb argument from sendmsg and recvmsg
=20
After TIPC doesn't depend on iocb argument in its internal
implementations of sendmsg() and recvmsg() hooks defined in proto
structure, no any user is using iocb argument in them at all now.
Then we can drop the redundant iocb argument completely from kinds of
implementations of both sendmsg() and recvmsg() in the entire
networking stack.
=20
Cc: Christoph Hellwig <[email protected]>
Suggested-by: Al Viro <[email protected]>
Signed-off-by: Ying Xue <[email protected]>
Signed-off-by: David S. Miller <davem-fT/PcQaiUtIeIZ0/[email protected]>
commit b9acab9539e0c1ddaf1b6a9cdff3b9b0114334e6
Author: Al Viro <viro-RmSDqhL/[email protected]>
Date: Sun Apr 6 21:25:44 2014 -0400
new helper: memcpy_from_msg()
=20
Signed-off-by: Al Viro <viro-RmSDqhL/[email protected]>
commit c1e999c927998a6c6251cf0eae79b7d0c72a0311
Author: David S. Miller <davem-fT/PcQaiUtIeIZ0/[email protected]>
Date: Wed Nov 5 16:46:40 2014 -0500
net: Add and use skb_copy_datagram_msg() helper.
=20
This encapsulates all of the skb_copy_datagram_iovec() callers
with call argument signature "skb, offset, msghdr->msg_iov, length".
=20
When we move to iov_iters in the networking, the iov_iter object will
sit in the msghdr.
=20
Having a helper like this means there will be less places to touch
during that transformation.
=20
Based upon descriptions and patch from Al Viro.
=20
Signed-off-by: David S. Miller <davem-fT/PcQaiUtIeIZ0/[email protected]>
-----------------------------------------------------------------------
Summary of changes:
configure | 22 +++---
configure.ac | 2 +-
drivers/isdn/hardware/mISDN/hfcmulti.c | 2 +
drivers/isdn/hardware/mISDN/hfcpci.c | 2 +-
drivers/isdn/hardware/mISDN/mISDNinfineon.c | 2 +-
drivers/isdn/hardware/mISDN/mISDNipac.c | 12 ++-
drivers/isdn/hardware/mISDN/mISDNisar.c | 2 +-
drivers/isdn/hardware/mISDN/w6692.c | 6 +-
drivers/isdn/mISDN/dsp_cmx.c | 111 +++++++++++++--------=
------
drivers/isdn/mISDN/dsp_core.c | 4 +-
drivers/isdn/mISDN/l1oip_codec.c | 6 +-
drivers/isdn/mISDN/l1oip_core.c | 2 +-
drivers/isdn/mISDN/socket.c | 11 ++-
patches/Revert_3.19-51f3d02b98.patch | 31 ++++++++
patches/Revert_3.19-6ce8e9ce5.patch | 20 +++++
patches/Revert_4.1-1b784140474e4.patch | 42 ++++++++++
series/series_3.10 | 1 +
series/series_3.11 | 1 +
series/series_3.12 | 1 +
series/series_3.13 | 1 +
series/series_3.14 | 1 +
series/series_3.15 | 1 +
series/series_3.16 | 1 +
series/series_3.17 | 1 +
series/series_3.18 | 3 +
series/series_3.19 | 1 +
series/series_3.9 | 1 +
series/series_4.0 | 1 +
28 Dateien ge=C3=A4ndert, 200 Zeilen hinzugef=C3=BCgt(+), 91 Zeilen entf=
ernt(-)
create mode 100644 patches/Revert_3.19-51f3d02b98.patch
create mode 100644 patches/Revert_3.19-6ce8e9ce5.patch
create mode 100644 patches/Revert_4.1-1b784140474e4.patch
create mode 100644 series/series_3.10
create mode 100644 series/series_3.11
create mode 100644 series/series_3.12
create mode 100644 series/series_3.13
create mode 100644 series/series_3.14
create mode 100644 series/series_3.15
create mode 100644 series/series_3.16
create mode 100644 series/series_3.17
create mode 100644 series/series_3.18
create mode 100644 series/series_3.19
create mode 100644 series/series_4.0
hooks/post-receive
--=20
mISDN kernel tree
--===============8481489104865088201==
Content-Type: text/plain; charset="us-ascii"
MIME-Version: 1.0
Content-Disposition: inline
Content-Transfer-Encoding: 7bit
_______________________________________________
i4ldeveloper mailing list
[email protected]
https://www.isdn4linux.de/mailman/listinfo/i4ldeveloper
--===============8481489104865088201==--