.. | .. |
---|
| 1 | +/* SPDX-License-Identifier: GPL-2.0-only */ |
---|
1 | 2 | /* |
---|
2 | 3 | * include/net/9p/9p.h |
---|
3 | 4 | * |
---|
.. | .. |
---|
6 | 7 | * Copyright (C) 2005 by Latchesar Ionkov <lucho@ionkov.net> |
---|
7 | 8 | * Copyright (C) 2004 by Eric Van Hensbergen <ericvh@gmail.com> |
---|
8 | 9 | * Copyright (C) 2002 by Ron Minnich <rminnich@lanl.gov> |
---|
9 | | - * |
---|
10 | | - * This program is free software; you can redistribute it and/or modify |
---|
11 | | - * it under the terms of the GNU General Public License version 2 |
---|
12 | | - * as published by the Free Software Foundation. |
---|
13 | | - * |
---|
14 | | - * This program is distributed in the hope that it will be useful, |
---|
15 | | - * but WITHOUT ANY WARRANTY; without even the implied warranty of |
---|
16 | | - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
---|
17 | | - * GNU General Public License for more details. |
---|
18 | | - * |
---|
19 | | - * You should have received a copy of the GNU General Public License |
---|
20 | | - * along with this program; if not, write to: |
---|
21 | | - * Free Software Foundation |
---|
22 | | - * 51 Franklin Street, Fifth Floor |
---|
23 | | - * Boston, MA 02111-1301 USA |
---|
24 | | - * |
---|
25 | 10 | */ |
---|
26 | 11 | |
---|
27 | 12 | #ifndef NET_9P_H |
---|
.. | .. |
---|
565 | 550 | u8 *sdata; |
---|
566 | 551 | }; |
---|
567 | 552 | |
---|
568 | | -struct p9_idpool; |
---|
569 | | - |
---|
570 | 553 | int p9_errstr2errno(char *errstr, int len); |
---|
571 | | - |
---|
572 | | -struct p9_idpool *p9_idpool_create(void); |
---|
573 | | -void p9_idpool_destroy(struct p9_idpool *); |
---|
574 | | -int p9_idpool_get(struct p9_idpool *p); |
---|
575 | | -void p9_idpool_put(int id, struct p9_idpool *p); |
---|
576 | | -int p9_idpool_check(int id, struct p9_idpool *p); |
---|
577 | 554 | |
---|
578 | 555 | int p9_error_init(void); |
---|
579 | 556 | int p9_trans_fd_init(void); |
---|