LKML Archive on lore.kernel.org
help / color / mirror / Atom feed
* where to maintain userspace daemon for line discipline
@ 2007-01-17 16:36 Tilman Schmidt
2007-01-22 19:56 ` Andrew Morton
0 siblings, 1 reply; 6+ messages in thread
From: Tilman Schmidt @ 2007-01-17 16:36 UTC (permalink / raw)
To: Linux Kernel mailing List
[-- Attachment #1: Type: text/plain, Size: 902 bytes --]
The recent discussion on LKML convinced me that a line discipline
is the correct way to layer a driver over a serial interface.
This means, however, that I'll need a (trivial) userspace daemon
which will hold the serial interface open after pushing the line
discipline onto it.
Which raises the question: Where can I drop the source for that
daemon so that it is
a) maintained together with the line discipline in case a kernel
developer feels the need to change something and
b) picked up by distributions so that they don't end up shipping
the line discipline without the necessary daemon?
Is there an appropriate place in or near the kernel tree for
stuff like that?
Thanks
Tilman
--
Tilman Schmidt E-Mail: tilman@imap.cc
Bonn, Germany
Diese Nachricht besteht zu 100% aus wiederverwerteten Bits.
Ungeöffnet mindestens haltbar bis: (siehe Rückseite)
[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 250 bytes --]
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: where to maintain userspace daemon for line discipline
2007-01-17 16:36 where to maintain userspace daemon for line discipline Tilman Schmidt
@ 2007-01-22 19:56 ` Andrew Morton
2007-02-07 22:05 ` H. Peter Anvin
0 siblings, 1 reply; 6+ messages in thread
From: Andrew Morton @ 2007-01-22 19:56 UTC (permalink / raw)
To: Tilman Schmidt; +Cc: linux-kernel
> On Wed, 17 Jan 2007 17:36:14 +0100 Tilman Schmidt <tilman@imap.cc> wrote:
> The recent discussion on LKML convinced me that a line discipline
> is the correct way to layer a driver over a serial interface.
> This means, however, that I'll need a (trivial) userspace daemon
> which will hold the serial interface open after pushing the line
> discipline onto it.
>
> Which raises the question: Where can I drop the source for that
> daemon so that it is
> a) maintained together with the line discipline in case a kernel
> developer feels the need to change something and
> b) picked up by distributions so that they don't end up shipping
> the line discipline without the necessary daemon?
>
> Is there an appropriate place in or near the kernel tree for
> stuff like that?
Nope. The requirement arises regularly.
util-linux would seem to be a suitable place, but apparently there
are, umm, isues surrounding that.
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: where to maintain userspace daemon for line discipline
2007-01-22 19:56 ` Andrew Morton
@ 2007-02-07 22:05 ` H. Peter Anvin
2008-01-15 23:03 ` Tilman Schmidt
2008-01-16 11:54 ` Tilman Schmidt
0 siblings, 2 replies; 6+ messages in thread
From: H. Peter Anvin @ 2007-02-07 22:05 UTC (permalink / raw)
To: Andrew Morton; +Cc: Tilman Schmidt, linux-kernel
Andrew Morton wrote:
>>
>> Is there an appropriate place in or near the kernel tree for
>> stuff like that?
>
> Nope. The requirement arises regularly.
>
> util-linux would seem to be a suitable place, but apparently there
> are, umm, isues surrounding that.
util-linux-ng is already going, so it's a good place.
-hpa
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: where to maintain userspace daemon for line discipline
2007-02-07 22:05 ` H. Peter Anvin
@ 2008-01-15 23:03 ` Tilman Schmidt
2008-01-15 23:17 ` Randy Dunlap
2008-01-16 11:54 ` Tilman Schmidt
1 sibling, 1 reply; 6+ messages in thread
From: Tilman Schmidt @ 2008-01-15 23:03 UTC (permalink / raw)
To: H. Peter Anvin; +Cc: linux-kernel
[-- Attachment #1: Type: text/plain, Size: 575 bytes --]
Hi,
On Wed, 07 Feb 2007 14:05:38 -0800, H. Peter Anvin wrote:
> util-linux-ng is already going, so it's a good place.
Not even a year later, I'd like to take up this proposal. I have:
- gigasetm101d.c (the source program)
- gigasetm101d.8 (a manpage)
- Makefile (trivial)
How should I proceed in order to get this included in util-linux-ng?
Thanks,
Tilman
--
Tilman Schmidt E-Mail: tilman@imap.cc
Bonn, Germany
Diese Nachricht besteht zu 100% aus wiederverwerteten Bits.
Ungeöffnet mindestens haltbar bis: (siehe Rückseite)
[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 253 bytes --]
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: where to maintain userspace daemon for line discipline
2008-01-15 23:03 ` Tilman Schmidt
@ 2008-01-15 23:17 ` Randy Dunlap
0 siblings, 0 replies; 6+ messages in thread
From: Randy Dunlap @ 2008-01-15 23:17 UTC (permalink / raw)
To: Tilman Schmidt; +Cc: H. Peter Anvin, linux-kernel
On Wed, 16 Jan 2008 00:03:43 +0100 Tilman Schmidt wrote:
> Hi,
>
> On Wed, 07 Feb 2007 14:05:38 -0800, H. Peter Anvin wrote:
> > util-linux-ng is already going, so it's a good place.
>
> Not even a year later, I'd like to take up this proposal. I have:
> - gigasetm101d.c (the source program)
> - gigasetm101d.8 (a manpage)
> - Makefile (trivial)
> How should I proceed in order to get this included in util-linux-ng?
See http://userweb.kernel.org/~kzak/util-linux-ng/
for all util-linux-ng info, including mailing list.
---
~Randy
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: where to maintain userspace daemon for line discipline
2007-02-07 22:05 ` H. Peter Anvin
2008-01-15 23:03 ` Tilman Schmidt
@ 2008-01-16 11:54 ` Tilman Schmidt
1 sibling, 0 replies; 6+ messages in thread
From: Tilman Schmidt @ 2008-01-16 11:54 UTC (permalink / raw)
To: H. Peter Anvin; +Cc: Andrew Morton, linux-kernel
[-- Attachment #1: Type: text/plain, Size: 791 bytes --]
H. Peter Anvin schrieb:
> Andrew Morton wrote:
>>>
>>> Is there an appropriate place in or near the kernel tree for
>>> stuff like that?
>>
>> Nope. The requirement arises regularly.
>>
>> util-linux would seem to be a suitable place, but apparently there
>> are, umm, isues surrounding that.
>
> util-linux-ng is already going, so it's a good place.
I have asked on the util-linux-ng mailing list but received
a flat refusal by Karel:
> I don't think that util-linux-ng is there for this purpose. It's not
> place for HW specific tools. Sorry.
Back to square one.
--
Tilman Schmidt E-Mail: tilman@imap.cc
Bonn, Germany
Diese Nachricht besteht zu 100% aus wiederverwerteten Bits.
Ungeöffnet mindestens haltbar bis: (siehe Rückseite)
[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 250 bytes --]
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2008-01-16 11:55 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2007-01-17 16:36 where to maintain userspace daemon for line discipline Tilman Schmidt
2007-01-22 19:56 ` Andrew Morton
2007-02-07 22:05 ` H. Peter Anvin
2008-01-15 23:03 ` Tilman Schmidt
2008-01-15 23:17 ` Randy Dunlap
2008-01-16 11:54 ` Tilman Schmidt
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).