Lines 378-385
static const struct status_to_posix_error smb2_error_map_table[] = {
Link Here
|
378 |
{STATUS_NONEXISTENT_EA_ENTRY, -EIO, "STATUS_NONEXISTENT_EA_ENTRY"}, |
378 |
{STATUS_NONEXISTENT_EA_ENTRY, -EIO, "STATUS_NONEXISTENT_EA_ENTRY"}, |
379 |
{STATUS_NO_EAS_ON_FILE, -ENODATA, "STATUS_NO_EAS_ON_FILE"}, |
379 |
{STATUS_NO_EAS_ON_FILE, -ENODATA, "STATUS_NO_EAS_ON_FILE"}, |
380 |
{STATUS_EA_CORRUPT_ERROR, -EIO, "STATUS_EA_CORRUPT_ERROR"}, |
380 |
{STATUS_EA_CORRUPT_ERROR, -EIO, "STATUS_EA_CORRUPT_ERROR"}, |
381 |
{STATUS_FILE_LOCK_CONFLICT, -EIO, "STATUS_FILE_LOCK_CONFLICT"}, |
381 |
{STATUS_FILE_LOCK_CONFLICT, -EACCES, "STATUS_FILE_LOCK_CONFLICT"}, |
382 |
{STATUS_LOCK_NOT_GRANTED, -EIO, "STATUS_LOCK_NOT_GRANTED"}, |
382 |
{STATUS_LOCK_NOT_GRANTED, -EACCES, "STATUS_LOCK_NOT_GRANTED"}, |
383 |
{STATUS_DELETE_PENDING, -ENOENT, "STATUS_DELETE_PENDING"}, |
383 |
{STATUS_DELETE_PENDING, -ENOENT, "STATUS_DELETE_PENDING"}, |
384 |
{STATUS_CTL_FILE_NOT_SUPPORTED, -ENOSYS, |
384 |
{STATUS_CTL_FILE_NOT_SUPPORTED, -ENOSYS, |
385 |
"STATUS_CTL_FILE_NOT_SUPPORTED"}, |
385 |
"STATUS_CTL_FILE_NOT_SUPPORTED"}, |
386 |
- |
|
|