- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - Linux
- >
- Re: Porting Linux kernel module to HP-UX 10.2
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-01-2001 05:21 AM
11-01-2001 05:21 AM
Porting Linux kernel module to HP-UX 10.2
We have developed a Linux loadable kernel module that uses TCP/IP socket services in kernel. We are studying the issues involved in porting this module to HP-UX 10.2. Appreciate if someone could answer our queries in this regard?
1. Are TCP/IP socket interfaces in kernel well known or published in HP-UX 10.2 ?
2. There may be kernel modules within HP-UX kernel that need networking features. How do these module interact with TCP/IP stack ?
Thanks much.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-04-2001 12:14 PM
11-04-2001 12:14 PM
Re: Porting Linux kernel module to HP-UX 10.2
Products like sniff, snoop, lsof and others have been ported to hpux. here's a list of some hp info:
BSD Sockets Interface Programmer's Guide
http://www.docs.hp.com/hpux/onlinedocs/B2355-90116/B2355-90116.html
DLPI Programmer's Guide
http://www.docs.hp.com/hpux/onlinedocs/B2355-90093/B2355-90093.html
Installing and Administering LAN/9000 Software (HP-UX 10.x)
http://www.docs.hp.com/hpux/onlinedocs/B2355-90105/B2355-90105.html
Networking Overview (HP-UX 10.x)
http://www.docs.hp.com/hpux/onlinedocs/B2355-90140/B2355-90140.html
Although not 10.20, this is a good guide for 11i:
IPv6 Porting Guide (HP-UX 11i)
http://www.docs.hp.com/hpux/onlinedocs/netcom/ipv6portingguide.pdf
You'll find a lot of other stuff here also:
http://www.docs.hp.com/hpux/netcom/index.html#LAN/9000
live free or die
harry
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-05-2001 08:19 AM
11-05-2001 08:19 AM
Re: Porting Linux kernel module to HP-UX 10.2
What else are you looking for?
live free or die
harry
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-05-2001 10:34 AM
11-05-2001 10:34 AM
Re: Porting Linux kernel module to HP-UX 10.2
As far as i know DLKM are only supported on UX11 look at this URL:
http://docs.hp.com/cgi-bin/fsearch/framedisplay?top=/hpux/onlinedocs/B3782-90716/B3782-90716_top.html&con=/hpux/onlinedocs/B3782-90716/00/00/23-con.html&toc=/hpux/onlinedocs/B3782-90716/00/00/23-toc.html&searchterms=dlkm&queryid=20011105-103532
At docs.hp.com you will find more information on the subject.
Hope this will help.
Gideon
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-05-2001 07:14 PM
11-05-2001 07:14 PM
Re: Porting Linux kernel module to HP-UX 10.2
Thanks for your pointers.
From the documentation on Networking architecture, found out that sosend() and soreceive() are the interfaces used in kernel. But, I dont think these are documented interfaces for driver developers. The driver that we developed uses TCP sockets in kernel to send/receive data. This is pretty much like khttpd in Linux 2.4.x kernel.
I would like to know if there are any documented interfaces in HP-UX 10.2 for using TCP sockets in kernel.
Thanks.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-06-2001 04:56 AM
11-06-2001 04:56 AM
Re: Porting Linux kernel module to HP-UX 10.2
In the http://docs.hp.com/hpux/os/10.x/#Programming
guide is to documents, the first is the 10.20 Driver Development guide:
http://docs.hp.com/hpux/onlinedocs/B2355-90666/B2355-90666.html
and then the drive reference guide:
http://docs.hp.com/hpux/onlinedocs/B2355-90667/B2355-90667.html
sosend & soreceive:
http://docs.hp.com/cgi-bin/fsearch/framedisplay?top=/hpux/onlinedocs/B2355-90666/B2355-90666_top.html&con=/hpux/onlinedocs/B2355-90666/00/00/60-con.html&toc=/hpux/onlinedocs/B2355-90666/00/00/60-toc.html&searchterms=sosend&queryid=20011106-045628
10.20
http://genome.imb-jena.de/~bsenf/www/hpux/chp6.html
11.x
http://devresource.hp.com/LPK/docs/portguideparisc.pdf
live free or die
harry