search for: pkt_dev

Displaying 7 results from an estimated 7 matches for "pkt_dev".

2012 Nov 26
1
[net-next RFC] pktgen: don't wait for the device who doesn't free skb immediately after sent
...0 /* device does free the tx skb + * immediately when it is sent */ #define IF_GET_IFACE 0x0001 /* for querying only */ diff --git a/net/core/pktgen.c b/net/core/pktgen.c index b29dacf..85d4e53 100644 --- a/net/core/pktgen.c +++ b/net/core/pktgen.c @@ -3269,7 +3269,8 @@ unlock: /* If pkt_dev->count is zero, then run forever */ if ((pkt_dev->count != 0) && (pkt_dev->sofar >= pkt_dev->count)) { - pktgen_wait_for_skb(pkt_dev); + if (!(pkt_dev->odev->priv_flags & IFF_TX_SKB_FREE_DELAY)) + pktgen_wait_for_skb(pkt_dev); /* Done with this */ pktg...
2012 Nov 26
1
[net-next RFC] pktgen: don't wait for the device who doesn't free skb immediately after sent
...0 /* device does free the tx skb + * immediately when it is sent */ #define IF_GET_IFACE 0x0001 /* for querying only */ diff --git a/net/core/pktgen.c b/net/core/pktgen.c index b29dacf..85d4e53 100644 --- a/net/core/pktgen.c +++ b/net/core/pktgen.c @@ -3269,7 +3269,8 @@ unlock: /* If pkt_dev->count is zero, then run forever */ if ((pkt_dev->count != 0) && (pkt_dev->sofar >= pkt_dev->count)) { - pktgen_wait_for_skb(pkt_dev); + if (!(pkt_dev->odev->priv_flags & IFF_TX_SKB_FREE_DELAY)) + pktgen_wait_for_skb(pkt_dev); /* Done with this */ pktg...
2016 Jun 30
17
[PATCH v2 00/12] gendisk: Generate uevent after attribute available
The race condition is noticed between disk_add() and disk attributes, on virtio-blk hotplug. Userspace listens to the KOBJ_ADD uevent generated in add_disk(). At that point we haven't created the serial attribute file, therefore depending on how fast udev reacts, the /dev/disk/by-id/ entry doesn't always get created. As pointed out by Christoph Hellwig in the specific fix [1], virtio-blk
2016 Jun 30
17
[PATCH v2 00/12] gendisk: Generate uevent after attribute available
The race condition is noticed between disk_add() and disk attributes, on virtio-blk hotplug. Userspace listens to the KOBJ_ADD uevent generated in add_disk(). At that point we haven't created the serial attribute file, therefore depending on how fast udev reacts, the /dev/disk/by-id/ entry doesn't always get created. As pointed out by Christoph Hellwig in the specific fix [1], virtio-blk
2016 Aug 17
0
[PATCH 15/15] block: Add FIXME comment to handle device_add_disk error
.../* FIXME: handle error. */ device_add_disk(NULL, disk, NULL); } return 0; diff --git a/drivers/block/pktcdvd.c b/drivers/block/pktcdvd.c index 3ebec28..c281812 100644 --- a/drivers/block/pktcdvd.c +++ b/drivers/block/pktcdvd.c @@ -2785,6 +2785,7 @@ static int pkt_setup_dev(dev_t dev, dev_t* pkt_dev) disk->events = pd->bdev->bd_disk->events; disk->async_events = pd->bdev->bd_disk->async_events; + /* FIXME: handle error. */ device_add_disk(NULL, disk, NULL); pkt_sysfs_dev_new(pd); diff --git a/drivers/block/ps3disk.c b/drivers/block/ps3disk.c index 2fdeabc..7...
2016 Aug 17
20
[PATCH 00/15] Fix issue with KOBJ_ADD uevent versus disk attributes
This is an attempt to fix the issue that some disks' sysfs attributes are not ready at the time its KOBJ_ADD event is sent. The symptom is during device hotplug, udev may fail to find certain attributes, such as serial or wwn, of the disk. As a result the /dev/disk/by-id entries are not created. The cause is device_add_disk emits the uevent before returning, and the callers have to create
2016 Aug 17
20
[PATCH 00/15] Fix issue with KOBJ_ADD uevent versus disk attributes
This is an attempt to fix the issue that some disks' sysfs attributes are not ready at the time its KOBJ_ADD event is sent. The symptom is during device hotplug, udev may fail to find certain attributes, such as serial or wwn, of the disk. As a result the /dev/disk/by-id entries are not created. The cause is device_add_disk emits the uevent before returning, and the callers have to create