Displaying 7 results from an estimated 7 matches for "noent".
Did you mean:
enoent
2004 Jan 19
1
File that "vanish"es between readdir and stat is not IO error
...etion
The file was a temporary file that was being deleted just as
the rsync was run. So while the file list was being built,
it was there when the directory was read but had vanished
by the time the stat() was done to get the file details.
In make_file(), when readlink_stat() fails, if error is NOENT
then perhaps do the same that that send_files() now does and
report as vanished and set IOERR_VANISHED?
--
John Van Essen Univ of MN Alumnus <vanes002@umn.edu>
2017 Apr 07
0
[RFC 2/3] virtio-iommu: device probing and operations
...MMU_S_OK 0
All good! Carry on.
VIRTIO_IOMMU_S_IOERR 1
Virtio communication error
VIRTIO_IOMMU_S_UNSUPP 2
Unsupported request
VIRTIO_IOMMU_S_DEVERR 3
Internal device error
VIRTIO_IOMMU_S_INVAL 4
Invalid parameters
VIRTIO_IOMMU_S_RANGE 5
Out-of-range parameters
VIRTIO_IOMMU_S_NOENT 6
Entry not found
VIRTIO_IOMMU_S_FAULT 7
Bad address
1. Attach device
----------------
struct virtio_iommu_req_attach {
le32 address_space;
le32 device;
le32 flags/reserved;
};
Attach a device to an address space. 'address_space' is an identifier
unique to the guest. If th...
2015 Jan 21
2
PXE Error Reporting
On Wed, 21 Jan 2015, Andreas Gruenbacher wrote:
> Not really. As a security requirement, if this even really is anyone's
> security requirement, this is pointless -- the ErrCode is set to 0 ("Not
Still, requirements like this d?o? exist in the real world,
dismissing them is a, I quote, stupid idea. I?d suggest
to please wake up.
bye,
//mirabilos (not speaking for his employer
2015 Jan 21
0
PXE Error Reporting
...d simply ask for all kinds of files that you didn't have access to, but *might exist*, an attacker could map out the file-system that the tftp service has access to and may find another chink in the armor along the way.
I can't think of another way to directly exploit the difference between noent and no access, but if tftp is expected to be a "black box", then it should continue to behave like one.
2007 Nov 26
1
autotest problem, can you possibly help me ?
...do
autotest --rails
i get following error:
D:/servers/InstantRails/ruby/lib/ruby/gems/1.8/gems/ZenTest-3.6.1/lib/unit_diff.
rb:187:in ``'': No such file or directory - diff.exe -u
C:/DOCUME~1/Piotrek/USTAW
I~1/Temp/expect.5412.0 C:/DOCUME~1/Piotrek/USTAWI~1/Temp/butwas.5412.0
(Errno::E
NOENT)
from
D:/servers/InstantRails/ruby/lib/ruby/gems/1.8/gems/ZenTest-3.6.1/l
ib/unit_diff.rb:187:in `unit_diff''
from
D:/servers/InstantRails/ruby/lib/ruby/1.8/tempfile.rb:172:in `open''
from
D:/servers/InstantRails/ruby/lib/ruby/gems/1.8/gems/ZenTest-3.6...
2017 Apr 07
34
[RFC 0/3] virtio-iommu: a paravirtualized IOMMU
This is the initial proposal for a paravirtualized IOMMU device using
virtio transport. It contains a description of the device, a Linux driver,
and a toy implementation in kvmtool. With this prototype, you can
translate DMA to guest memory from emulated (virtio), or passed-through
(VFIO) devices.
In its simplest form, implemented here, the device handles map/unmap
requests from the guest. Future
2017 Apr 07
34
[RFC 0/3] virtio-iommu: a paravirtualized IOMMU
This is the initial proposal for a paravirtualized IOMMU device using
virtio transport. It contains a description of the device, a Linux driver,
and a toy implementation in kvmtool. With this prototype, you can
translate DMA to guest memory from emulated (virtio), or passed-through
(VFIO) devices.
In its simplest form, implemented here, the device handles map/unmap
requests from the guest. Future