diff options
author | luigi <luigi@FreeBSD.org> | 2000-06-14 10:07:22 +0000 |
---|---|---|
committer | luigi <luigi@FreeBSD.org> | 2000-06-14 10:07:22 +0000 |
commit | 021d03f5bf631a868a0518181a8ca19a75e04d16 (patch) | |
tree | f6b3a25c5da00d0c531271085d7fa0bf5023e8f3 /sys | |
parent | 9e9163919b2e43f0aa5da82abe72ea2129448b57 (diff) | |
download | FreeBSD-src-021d03f5bf631a868a0518181a8ca19a75e04d16.zip FreeBSD-src-021d03f5bf631a868a0518181a8ca19a75e04d16.tar.gz |
Fix behaviour of "ipfw pipe show" -- previous code gave
ambiguous data to the userland program (kernel operation was
safe, anyways).
Diffstat (limited to 'sys')
-rw-r--r-- | sys/netinet/ip_dummynet.c | 15 |
1 files changed, 10 insertions, 5 deletions
diff --git a/sys/netinet/ip_dummynet.c b/sys/netinet/ip_dummynet.c index 830d9bf..39492b9 100644 --- a/sys/netinet/ip_dummynet.c +++ b/sys/netinet/ip_dummynet.c @@ -1675,9 +1675,14 @@ dummynet_get(struct sockopt *sopt) */ bcopy(p, bp, sizeof( *p ) ); pipe_bp->delay = (pipe_bp->delay * 1000) / hz ; - pipe_bp->fs.flags_fs |= DN_IS_PIPE ; - /* cleanup pointers */ - pipe_bp->next = NULL ; + /* + * XXX the following is a hack based on ->next being the + * first field in dn_pipe and dn_flow_set. The correct + * solution would be to move the dn_flow_set to the beginning + * of struct dn_pipe. + */ + pipe_bp->next = (struct dn_pipe *)DN_IS_PIPE ; + /* clean pointers */ pipe_bp->head = pipe_bp->tail = NULL ; pipe_bp->fs.next = NULL ; pipe_bp->fs.pipe = NULL ; @@ -1689,8 +1694,8 @@ dummynet_get(struct sockopt *sopt) for (set = all_flow_sets ; set ; set = set->next ) { struct dn_flow_set *fs_bp = (struct dn_flow_set *)bp ; bcopy(set, bp, sizeof( *set ) ); - fs_bp->flags_fs |= DN_IS_QUEUE ; - fs_bp->next = NULL ; + /* XXX same hack as above */ + fs_bp->next = (struct dn_flow_set *)DN_IS_QUEUE ; fs_bp->pipe = NULL ; fs_bp->rq = NULL ; bp += sizeof( *set ) ; |