Skip to content

Commit

Permalink
[NET]: Page offsets and lengths need to be __u32.
Browse files Browse the repository at this point in the history
Based upon a report from Stephen Rothwell.

Signed-off-by: David S. Miller <davem@davemloft.net>
  • Loading branch information
David S. Miller committed Jul 31, 2007
1 parent 1311169 commit a309bb0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions include/linux/skbuff.h
Original file line number Diff line number Diff line change
Expand Up @@ -134,8 +134,8 @@ typedef struct skb_frag_struct skb_frag_t;

struct skb_frag_struct {
struct page *page;
__u16 page_offset;
__u16 size;
__u32 page_offset;
__u32 size;
};

/* This data is invariant across clones and lives at
Expand Down

0 comments on commit a309bb0

Please sign in to comment.