Changeset 33752 in vbox for trunk/src/VBox/HostDrivers
- Timestamp:
- Nov 3, 2010 9:34:09 PM (14 years ago)
- svn:sync-xref-src-repo-rev:
- 67384
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostDrivers/VBoxNetFlt/linux/VBoxNetFlt-linux.c
r33595 r33752 201 201 # elif LINUX_VERSION_CODE < KERNEL_VERSION(2, 6, 27) 202 202 # define QDISC_CREATE(dev, queue, ops, parent) qdisc_create_dflt(dev, ops, parent) 203 # el se /* LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 27) */203 # elif LINUX_VERSION_CODE < KERNEL_VERSION(2, 6, 37) 204 204 # define QDISC_CREATE(dev, queue, ops, parent) qdisc_create_dflt(dev, queue, ops, parent) 205 # endif /* LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 27) */ 205 # else /* LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 37) */ 206 # define QDISC_CREATE(dev, queue, ops, parent) qdisc_create_dflt(queue, ops, parent) 207 # endif /* LINUX_VERSION_CODE >= KERNEL_VERSION(2, 6, 37) */ 206 208 207 209 # if LINUX_VERSION_CODE < KERNEL_VERSION(2, 6, 27)
Note:
See TracChangeset
for help on using the changeset viewer.