Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
linux
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
linux
Commits
b61458a4
Commit
b61458a4
authored
Aug 19, 2003
by
Stephen Hemminger
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[IRDA]: Convert irlan to seq_file interface.
parent
28b6a95f
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
116 additions
and
50 deletions
+116
-50
include/net/irda/irlan_filter.h
include/net/irda/irlan_filter.h
+1
-1
net/irda/irlan/irlan_common.c
net/irda/irlan/irlan_common.c
+103
-36
net/irda/irlan/irlan_filter.c
net/irda/irlan/irlan_filter.c
+12
-13
No files found.
include/net/irda/irlan_filter.h
View file @
b61458a4
...
@@ -28,6 +28,6 @@
...
@@ -28,6 +28,6 @@
void
irlan_check_command_param
(
struct
irlan_cb
*
self
,
char
*
param
,
void
irlan_check_command_param
(
struct
irlan_cb
*
self
,
char
*
param
,
char
*
value
);
char
*
value
);
void
handle_filter_request
(
struct
irlan_cb
*
self
,
struct
sk_buff
*
skb
);
void
handle_filter_request
(
struct
irlan_cb
*
self
,
struct
sk_buff
*
skb
);
int
irlan_print_filter
(
int
filter_type
,
char
*
buf
);
int
irlan_print_filter
(
struct
seq_file
*
seq
,
int
filter_type
);
#endif
/* IRLAN_FILTER_H */
#endif
/* IRLAN_FILTER_H */
net/irda/irlan/irlan_common.c
View file @
b61458a4
...
@@ -31,6 +31,7 @@
...
@@ -31,6 +31,7 @@
#include <linux/init.h>
#include <linux/init.h>
#include <linux/errno.h>
#include <linux/errno.h>
#include <linux/proc_fs.h>
#include <linux/proc_fs.h>
#include <linux/seq_file.h>
#include <linux/netdevice.h>
#include <linux/netdevice.h>
#include <linux/etherdevice.h>
#include <linux/etherdevice.h>
#include <linux/rtnetlink.h>
#include <linux/rtnetlink.h>
...
@@ -86,6 +87,20 @@ static char *irlan_media[] = {
...
@@ -86,6 +87,20 @@ static char *irlan_media[] = {
"802.3"
,
"802.3"
,
"802.5"
"802.5"
};
};
extern
struct
proc_dir_entry
*
proc_irda
;
static
int
irlan_seq_open
(
struct
inode
*
inode
,
struct
file
*
file
);
static
struct
file_operations
irlan_fops
=
{
.
owner
=
THIS_MODULE
,
.
open
=
irlan_seq_open
,
.
read
=
seq_read
,
.
llseek
=
seq_lseek
,
.
release
=
seq_release
,
};
extern
struct
proc_dir_entry
*
proc_irda
;
#endif
/* CONFIG_PROC_FS */
#endif
/* CONFIG_PROC_FS */
static
void
__irlan_close
(
struct
irlan_cb
*
self
);
static
void
__irlan_close
(
struct
irlan_cb
*
self
);
...
@@ -94,12 +109,6 @@ static int __irlan_insert_param(struct sk_buff *skb, char *param, int type,
...
@@ -94,12 +109,6 @@ static int __irlan_insert_param(struct sk_buff *skb, char *param, int type,
__u8
*
value_array
,
__u16
value_len
);
__u8
*
value_array
,
__u16
value_len
);
void
irlan_close_tsaps
(
struct
irlan_cb
*
self
);
void
irlan_close_tsaps
(
struct
irlan_cb
*
self
);
#ifdef CONFIG_PROC_FS
static
int
irlan_proc_read
(
char
*
buf
,
char
**
start
,
off_t
offset
,
int
len
);
extern
struct
proc_dir_entry
*
proc_irda
;
#endif
/* CONFIG_PROC_FS */
/*
/*
* Function irlan_init (void)
* Function irlan_init (void)
*
*
...
@@ -112,8 +121,17 @@ int __init irlan_init(void)
...
@@ -112,8 +121,17 @@ int __init irlan_init(void)
__u16
hints
;
__u16
hints
;
IRDA_DEBUG
(
0
,
"%s()
\n
"
,
__FUNCTION__
);
IRDA_DEBUG
(
0
,
"%s()
\n
"
,
__FUNCTION__
);
#ifdef CONFIG_PROC_FS
#ifdef CONFIG_PROC_FS
create_proc_info_entry
(
"irlan"
,
0
,
proc_irda
,
irlan_proc_read
);
{
struct
proc_dir_entry
*
proc
;
proc
=
create_proc_entry
(
"irlan"
,
0
,
proc_irda
);
if
(
!
proc
)
{
printk
(
KERN_ERR
"irlan_init: can't create /proc entry!
\n
"
);
return
-
ENODEV
;
}
proc
->
proc_fops
=
&
irlan_fops
;
}
#endif
/* CONFIG_PROC_FS */
#endif
/* CONFIG_PROC_FS */
IRDA_DEBUG
(
4
,
"%s()
\n
"
,
__FUNCTION__
);
IRDA_DEBUG
(
4
,
"%s()
\n
"
,
__FUNCTION__
);
...
@@ -1050,55 +1068,104 @@ int irlan_extract_param(__u8 *buf, char *name, char *value, __u16 *len)
...
@@ -1050,55 +1068,104 @@ int irlan_extract_param(__u8 *buf, char *name, char *value, __u16 *len)
}
}
#ifdef CONFIG_PROC_FS
#ifdef CONFIG_PROC_FS
#define IRLAN_PROC_START_TOKEN ((void *)1)
/*
/*
* Function irlan_client_proc_read (buf, start, offset, len, unused)
* Start of reading /proc entries.
*
* Return entry at pos,
* Give some info to the /proc file system
* or start_token to indicate print header line
* or NULL if end of file
*/
*/
static
int
irlan_proc_read
(
char
*
buf
,
char
**
start
,
off_t
offset
,
int
len
)
static
void
*
irlan_seq_start
(
struct
seq_file
*
seq
,
loff_t
*
pos
)
{
{
int
i
=
1
;
struct
irlan_cb
*
self
;
struct
irlan_cb
*
self
;
len
=
0
;
rcu_read_lock
();
rcu_read_lock
();
if
(
*
pos
==
0
)
return
IRLAN_PROC_START_TOKEN
;
list_for_each_entry
(
self
,
&
irlans
,
dev_list
)
{
if
(
*
pos
==
i
)
return
self
;
++
i
;
}
return
NULL
;
}
/* Return entry after v, and increment pos */
static
void
*
irlan_seq_next
(
struct
seq_file
*
seq
,
void
*
v
,
loff_t
*
pos
)
{
struct
list_head
*
nxt
;
++*
pos
;
if
(
v
==
IRLAN_PROC_START_TOKEN
)
nxt
=
irlans
.
next
;
else
nxt
=
((
struct
irlan_cb
*
)
v
)
->
dev_list
.
next
;
return
(
nxt
==
&
irlans
)
?
NULL
:
list_entry
(
nxt
,
struct
irlan_cb
,
dev_list
);
}
/* End of reading /proc file */
static
void
irlan_seq_stop
(
struct
seq_file
*
seq
,
void
*
v
)
{
rcu_read_unlock
();
}
len
+=
sprintf
(
buf
+
len
,
"IrLAN instances:
\n
"
);
list_for_each_entry_rcu
(
self
,
&
irlans
,
dev_list
)
{
ASSERT
(
self
->
magic
==
IRLAN_MAGIC
,
break
;);
/*
* Show one entry in /proc file.
*/
static
int
irlan_seq_show
(
struct
seq_file
*
seq
,
void
*
v
)
{
if
(
v
==
IRLAN_PROC_START_TOKEN
)
seq_puts
(
seq
,
"IrLAN instances:
\n
"
);
else
{
struct
irlan_cb
*
self
=
v
;
len
+=
sprintf
(
buf
+
len
,
"ifname: %s,
\n
"
,
ASSERT
(
self
!=
NULL
,
return
-
1
;);
ASSERT
(
self
->
magic
==
IRLAN_MAGIC
,
return
-
1
;);
seq_printf
(
seq
,
"ifname: %s,
\n
"
,
self
->
dev
->
name
);
self
->
dev
->
name
);
len
+=
sprintf
(
buf
+
len
,
"client state: %s, "
,
seq_printf
(
seq
,
"client state: %s, "
,
irlan_state
[
self
->
client
.
state
]);
irlan_state
[
self
->
client
.
state
]);
len
+=
sprintf
(
buf
+
len
,
"provider state: %s,
\n
"
,
seq_printf
(
seq
,
"provider state: %s,
\n
"
,
irlan_state
[
self
->
provider
.
state
]);
irlan_state
[
self
->
provider
.
state
]);
len
+=
sprintf
(
buf
+
len
,
"saddr: %#08x, "
,
seq_printf
(
seq
,
"saddr: %#08x, "
,
self
->
saddr
);
self
->
saddr
);
len
+=
sprintf
(
buf
+
len
,
"daddr: %#08x
\n
"
,
seq_printf
(
seq
,
"daddr: %#08x
\n
"
,
self
->
daddr
);
self
->
daddr
);
len
+=
sprintf
(
buf
+
len
,
"version: %d.%d,
\n
"
,
seq_printf
(
seq
,
"version: %d.%d,
\n
"
,
self
->
version
[
1
],
self
->
version
[
0
]);
self
->
version
[
1
],
self
->
version
[
0
]);
len
+=
sprintf
(
buf
+
len
,
"access type: %s
\n
"
,
seq_printf
(
seq
,
"access type: %s
\n
"
,
irlan_access
[
self
->
client
.
access_type
]);
irlan_access
[
self
->
client
.
access_type
]);
len
+=
sprintf
(
buf
+
len
,
"media: %s
\n
"
,
seq_printf
(
seq
,
"media: %s
\n
"
,
irlan_media
[
self
->
media
]);
irlan_media
[
self
->
media
]);
len
+=
sprintf
(
buf
+
len
,
"local filter:
\n
"
);
seq_printf
(
seq
,
"local filter:
\n
"
);
len
+=
sprintf
(
buf
+
len
,
"remote filter: "
);
seq_printf
(
seq
,
"remote filter: "
);
len
+=
irlan_print_filter
(
self
->
client
.
filter_type
,
irlan_print_filter
(
seq
,
self
->
client
.
filter_type
);
buf
+
len
);
seq_printf
(
seq
,
"tx busy: %s
\n
"
,
len
+=
sprintf
(
buf
+
len
,
"tx busy: %s
\n
"
,
netif_queue_stopped
(
self
->
dev
)
?
"TRUE"
:
"FALSE"
);
netif_queue_stopped
(
self
->
dev
)
?
"TRUE"
:
"FALSE"
);
len
+=
sprintf
(
buf
+
len
,
"
\n
"
);
seq_putc
(
seq
,
'\n'
);
}
}
rcu_read_unlock
();
return
0
;
}
return
len
;
static
struct
seq_operations
irlan_seq_ops
=
{
.
start
=
irlan_seq_start
,
.
next
=
irlan_seq_next
,
.
stop
=
irlan_seq_stop
,
.
show
=
irlan_seq_show
,
};
static
int
irlan_seq_open
(
struct
inode
*
inode
,
struct
file
*
file
)
{
return
seq_open
(
file
,
&
irlan_seq_ops
);
}
}
#endif
#endif
...
...
net/irda/irlan/irlan_filter.c
View file @
b61458a4
...
@@ -24,6 +24,7 @@
...
@@ -24,6 +24,7 @@
#include <linux/skbuff.h>
#include <linux/skbuff.h>
#include <linux/random.h>
#include <linux/random.h>
#include <linux/seq_file.h>
#include <net/irda/irlan_common.h>
#include <net/irda/irlan_common.h>
...
@@ -216,26 +217,24 @@ void irlan_check_command_param(struct irlan_cb *self, char *param, char *value)
...
@@ -216,26 +217,24 @@ void irlan_check_command_param(struct irlan_cb *self, char *param, char *value)
* Print status of filter. Used by /proc file system
* Print status of filter. Used by /proc file system
*
*
*/
*/
int
irlan_print_filter
(
int
filter_type
,
char
*
buf
)
#ifdef CONFIG_PROC_FS
void
irlan_print_filter
(
struct
seq_file
*
seq
,
int
filter_type
)
{
{
int
len
=
0
;
if
(
filter_type
&
IRLAN_DIRECTED
)
if
(
filter_type
&
IRLAN_DIRECTED
)
len
+=
sprintf
(
buf
+
len
,
"%s"
,
"DIRECTED "
);
seq_printf
(
seq
,
"%s"
,
"DIRECTED "
);
if
(
filter_type
&
IRLAN_FUNCTIONAL
)
if
(
filter_type
&
IRLAN_FUNCTIONAL
)
len
+=
sprintf
(
buf
+
len
,
"%s"
,
"FUNCTIONAL "
);
seq_printf
(
seq
,
"%s"
,
"FUNCTIONAL "
);
if
(
filter_type
&
IRLAN_GROUP
)
if
(
filter_type
&
IRLAN_GROUP
)
len
+=
sprintf
(
buf
+
len
,
"%s"
,
"GROUP "
);
seq_printf
(
seq
,
"%s"
,
"GROUP "
);
if
(
filter_type
&
IRLAN_MAC_FRAME
)
if
(
filter_type
&
IRLAN_MAC_FRAME
)
len
+=
sprintf
(
buf
+
len
,
"%s"
,
"MAC_FRAME "
);
seq_printf
(
seq
,
"%s"
,
"MAC_FRAME "
);
if
(
filter_type
&
IRLAN_MULTICAST
)
if
(
filter_type
&
IRLAN_MULTICAST
)
len
+=
sprintf
(
buf
+
len
,
"%s"
,
"MULTICAST "
);
seq_printf
(
seq
,
"%s"
,
"MULTICAST "
);
if
(
filter_type
&
IRLAN_BROADCAST
)
if
(
filter_type
&
IRLAN_BROADCAST
)
len
+=
sprintf
(
buf
+
len
,
"%s"
,
"BROADCAST "
);
seq_printf
(
seq
,
"%s"
,
"BROADCAST "
);
if
(
filter_type
&
IRLAN_IPX_SOCKET
)
if
(
filter_type
&
IRLAN_IPX_SOCKET
)
len
+=
sprintf
(
buf
+
len
,
"%s"
,
"IPX_SOCKET"
);
seq_printf
(
seq
,
"%s"
,
"IPX_SOCKET"
);
len
+=
sprintf
(
buf
+
len
,
"
\n
"
);
return
len
;
seq_putc
(
seq
,
'\n'
)
;
}
}
#endif
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment