search for: failed1

Displaying 20 results from an estimated 43 matches for "failed1".

Did you mean: failed
2004 Mar 19
6
samba mounting files
Hi whenever i try to mount a samba share which is a samba server i get an error message that says "smbmnt must be installed suid root for direct mounts(500, 500) smbmnt failed1" On that note i tried to run "smbmount" as root but this did't work out. i also tried to run smbmnt as root, up to now my problem was not solved. Anybody there who can help please? Thanks. Rgds Segie.
2008 Aug 12
0
SR-IOV: patches are available for Linux kernel [3/4]
...id], param); + return notify_phyfn(pf, PCI_IOV_VF_PAR, vfid); + } + + pf->iov->args[vfid] = kmalloc(VF_PARAM_LEN, GFP_KERNEL); + if (!pf->iov->args[vfid]) + return -ENOMEM; + + strcpy(pf->iov->args[vfid], param); + err = notify_phyfn(pf, PCI_IOV_VF_ENA, vfid); + if (err) + goto failed1; + + vf = iov_alloc_virtfn(pf, vfid); + if (!vf) { + err = -ENOMEM; + goto failed2; + } + + return 0; + +failed2: + notify_phyfn(pf, PCI_IOV_VF_DIS, vfid); +failed1: + kfree(pf->iov->args[vfid]); + pf->iov->args[vfid] = NULL; + + return err; +} + +static int iov_remove_virtfn(struct p...
2008 Aug 12
0
SR-IOV: patches are available for Linux kernel [3/4]
...id], param); + return notify_phyfn(pf, PCI_IOV_VF_PAR, vfid); + } + + pf->iov->args[vfid] = kmalloc(VF_PARAM_LEN, GFP_KERNEL); + if (!pf->iov->args[vfid]) + return -ENOMEM; + + strcpy(pf->iov->args[vfid], param); + err = notify_phyfn(pf, PCI_IOV_VF_ENA, vfid); + if (err) + goto failed1; + + vf = iov_alloc_virtfn(pf, vfid); + if (!vf) { + err = -ENOMEM; + goto failed2; + } + + return 0; + +failed2: + notify_phyfn(pf, PCI_IOV_VF_DIS, vfid); +failed1: + kfree(pf->iov->args[vfid]); + pf->iov->args[vfid] = NULL; + + return err; +} + +static int iov_remove_virtfn(struct p...
2008 Aug 12
0
SR-IOV: patches are available for Linux kernel [3/4]
...id], param); + return notify_phyfn(pf, PCI_IOV_VF_PAR, vfid); + } + + pf->iov->args[vfid] = kmalloc(VF_PARAM_LEN, GFP_KERNEL); + if (!pf->iov->args[vfid]) + return -ENOMEM; + + strcpy(pf->iov->args[vfid], param); + err = notify_phyfn(pf, PCI_IOV_VF_ENA, vfid); + if (err) + goto failed1; + + vf = iov_alloc_virtfn(pf, vfid); + if (!vf) { + err = -ENOMEM; + goto failed2; + } + + return 0; + +failed2: + notify_phyfn(pf, PCI_IOV_VF_DIS, vfid); +failed1: + kfree(pf->iov->args[vfid]); + pf->iov->args[vfid] = NULL; + + return err; +} + +static int iov_remove_virtfn(struct p...
2004 Mar 19
0
Fwd: Re: samba mounting files
....com Cc: Samba Mailing List <samba@lists.samba.org> Le ven 19/03/2004 ? 09:21, geralds a ?crit : > Hi > whenever i try to mount a samba share which is a samba server i get an > error message that says "smbmnt must be installed suid root for direct > mounts(500, 500) smbmnt failed1" > > On that note i tried to run "smbmount" as root but this did't work out. i > also tried to run smbmnt as root, up to now my problem was not solved. > > Anybody there who can help please? .............................................................................
2004 Mar 23
0
samba mount setuid problem
Hi whenever i try to mount a samba share which is a samba server i get an error message that says "smbmnt must be installed suid root for direct mounts(500, 500) smbmnt failed1" Anybody there who can help please? i've consulted sambalist and adviced to visit the foolowing site below http://www.bnro.de/~schmidjo/faq/index.html#faq9 and it says; login as root and change to the directory where this tools resides (/usr/bin ?) do a 'ls -l smbmnt', you...
2004 Mar 24
0
Réf. : samba mount setuid problem
...---------------------------------------------------------- > >-----------------------| > > Hi > whenever i try to mount a samba share which is a samba server i get an > error message that says "smbmnt must be installed suid root for direct > mounts(500, 500) smbmnt failed1" > > Anybody there who can help please? > > i've consulted sambalist and adviced to visit the foolowing site below > > http://www.bnro.de/~schmidjo/faq/index.html#faq9 > > and it says; > login as root and change to the directory where this tools resides > (/u...
2019 Sep 10
1
[RFC PATCH 4/4] docs: Sample driver to demonstrate how to implement virtio-mdev framework
...+ > + idr_init(&mvnet_dev.vd_idr); > + > + mvnet_dev.vd_class = class_create(THIS_MODULE, MVNET_CLASS_NAME); > + > + if (IS_ERR(mvnet_dev.vd_class)) { > + pr_err("Error: failed to register mvnet_dev class\n"); > + ret = PTR_ERR(mvnet_dev.vd_class); > + goto failed1; > + } > + > + mvnet_dev.dev.class = mvnet_dev.vd_class; > + mvnet_dev.dev.release = mvnet_device_release; > + dev_set_name(&mvnet_dev.dev, "%s", MVNET_NAME); > + > + ret = device_register(&mvnet_dev.dev); > + if (ret) > + goto failed2; > + > + re...
2019 Nov 05
0
[PATCH V8 6/6] docs: sample driver to demonstrate how to implement virtio-mdev framework
...t(&mvnet_dev, 0, sizeof(mvnet_dev)); + + idr_init(&mvnet_dev.vd_idr); + + mvnet_dev.vd_class = class_create(THIS_MODULE, MVNET_CLASS_NAME); + + if (IS_ERR(mvnet_dev.vd_class)) { + pr_err("Error: failed to register mvnet_dev class\n"); + ret = PTR_ERR(mvnet_dev.vd_class); + goto failed1; + } + + mvnet_dev.dev.class = mvnet_dev.vd_class; + mvnet_dev.dev.release = mvnet_device_release; + dev_set_name(&mvnet_dev.dev, "%s", MVNET_NAME); + + ret = device_register(&mvnet_dev.dev); + if (ret) + goto failed2; + + ret = mdev_register_device(&mvnet_dev.dev, &mdev_...
2019 Sep 10
0
[RFC PATCH 4/4] docs: Sample driver to demonstrate how to implement virtio-mdev framework
...t(&mvnet_dev, 0, sizeof(mvnet_dev)); + + idr_init(&mvnet_dev.vd_idr); + + mvnet_dev.vd_class = class_create(THIS_MODULE, MVNET_CLASS_NAME); + + if (IS_ERR(mvnet_dev.vd_class)) { + pr_err("Error: failed to register mvnet_dev class\n"); + ret = PTR_ERR(mvnet_dev.vd_class); + goto failed1; + } + + mvnet_dev.dev.class = mvnet_dev.vd_class; + mvnet_dev.dev.release = mvnet_device_release; + dev_set_name(&mvnet_dev.dev, "%s", MVNET_NAME); + + ret = device_register(&mvnet_dev.dev); + if (ret) + goto failed2; + + ret = mdev_register_device(&mvnet_dev.dev, &mdev_...
2019 Oct 30
0
[PATCH V6 6/6] docs: sample driver to demonstrate how to implement virtio-mdev framework
...t(&mvnet_dev, 0, sizeof(mvnet_dev)); + + idr_init(&mvnet_dev.vd_idr); + + mvnet_dev.vd_class = class_create(THIS_MODULE, MVNET_CLASS_NAME); + + if (IS_ERR(mvnet_dev.vd_class)) { + pr_err("Error: failed to register mvnet_dev class\n"); + ret = PTR_ERR(mvnet_dev.vd_class); + goto failed1; + } + + mvnet_dev.dev.class = mvnet_dev.vd_class; + mvnet_dev.dev.release = mvnet_device_release; + dev_set_name(&mvnet_dev.dev, "%s", MVNET_NAME); + + ret = device_register(&mvnet_dev.dev); + if (ret) + goto failed2; + + ret = mdev_register_device(&mvnet_dev.dev, &mdev_...
2019 Nov 07
0
[PATCH V11 6/6] docs: sample driver to demonstrate how to implement virtio-mdev framework
...t(&mvnet_dev, 0, sizeof(mvnet_dev)); + + idr_init(&mvnet_dev.vd_idr); + + mvnet_dev.vd_class = class_create(THIS_MODULE, MVNET_CLASS_NAME); + + if (IS_ERR(mvnet_dev.vd_class)) { + pr_err("Error: failed to register mvnet_dev class\n"); + ret = PTR_ERR(mvnet_dev.vd_class); + goto failed1; + } + + mvnet_dev.dev.class = mvnet_dev.vd_class; + mvnet_dev.dev.release = mvnet_device_release; + dev_set_name(&mvnet_dev.dev, "%s", MVNET_NAME); + + ret = device_register(&mvnet_dev.dev); + if (ret) + goto failed2; + + ret = mdev_register_device(&mvnet_dev.dev, &mdev_...
2019 Nov 06
0
[PATCH V9 6/6] docs: sample driver to demonstrate how to implement virtio-mdev framework
...t(&mvnet_dev, 0, sizeof(mvnet_dev)); + + idr_init(&mvnet_dev.vd_idr); + + mvnet_dev.vd_class = class_create(THIS_MODULE, MVNET_CLASS_NAME); + + if (IS_ERR(mvnet_dev.vd_class)) { + pr_err("Error: failed to register mvnet_dev class\n"); + ret = PTR_ERR(mvnet_dev.vd_class); + goto failed1; + } + + mvnet_dev.dev.class = mvnet_dev.vd_class; + mvnet_dev.dev.release = mvnet_device_release; + dev_set_name(&mvnet_dev.dev, "%s", MVNET_NAME); + + ret = device_register(&mvnet_dev.dev); + if (ret) + goto failed2; + + ret = mdev_register_device(&mvnet_dev.dev, &mdev_...
2019 Nov 06
0
[PATCH V10 6/6] docs: sample driver to demonstrate how to implement virtio-mdev framework
...t(&mvnet_dev, 0, sizeof(mvnet_dev)); + + idr_init(&mvnet_dev.vd_idr); + + mvnet_dev.vd_class = class_create(THIS_MODULE, MVNET_CLASS_NAME); + + if (IS_ERR(mvnet_dev.vd_class)) { + pr_err("Error: failed to register mvnet_dev class\n"); + ret = PTR_ERR(mvnet_dev.vd_class); + goto failed1; + } + + mvnet_dev.dev.class = mvnet_dev.vd_class; + mvnet_dev.dev.release = mvnet_device_release; + dev_set_name(&mvnet_dev.dev, "%s", MVNET_NAME); + + ret = device_register(&mvnet_dev.dev); + if (ret) + goto failed2; + + ret = mdev_register_device(&mvnet_dev.dev, &mdev_...
2008 Sep 01
2
[PATCH 3/4 v2] PCI: support SR-IOV capability
...int id) +{ + int rc = -ENOMEM; + u8 busnr, devfn; + struct pci_bus *bus; + struct hotplug_slot *slot; + struct virtfn_slot *vslot; + + slot = kzalloc(sizeof(*slot), GFP_KERNEL); + if (!slot) + return rc; + + slot->info = kzalloc(sizeof(*slot->info), GFP_KERNEL); + if (!slot->info) + goto failed1; + + slot->info->param = kzalloc(PCI_IOV_PARAM_LEN, GFP_KERNEL); + if (!slot->info) + goto failed2; + + vslot = kzalloc(sizeof(*vslot), GFP_KERNEL); + if (!vslot) + goto failed3; + + slot->name = vslot->name; + sprintf(slot->name, "%s-iov-%04x", pci_name(dev), id); + s...
2008 Sep 01
2
[PATCH 3/4 v2] PCI: support SR-IOV capability
...int id) +{ + int rc = -ENOMEM; + u8 busnr, devfn; + struct pci_bus *bus; + struct hotplug_slot *slot; + struct virtfn_slot *vslot; + + slot = kzalloc(sizeof(*slot), GFP_KERNEL); + if (!slot) + return rc; + + slot->info = kzalloc(sizeof(*slot->info), GFP_KERNEL); + if (!slot->info) + goto failed1; + + slot->info->param = kzalloc(PCI_IOV_PARAM_LEN, GFP_KERNEL); + if (!slot->info) + goto failed2; + + vslot = kzalloc(sizeof(*vslot), GFP_KERNEL); + if (!vslot) + goto failed3; + + slot->name = vslot->name; + sprintf(slot->name, "%s-iov-%04x", pci_name(dev), id); + s...
2008 Sep 01
2
[PATCH 3/4 v2] PCI: support SR-IOV capability
...int id) +{ + int rc = -ENOMEM; + u8 busnr, devfn; + struct pci_bus *bus; + struct hotplug_slot *slot; + struct virtfn_slot *vslot; + + slot = kzalloc(sizeof(*slot), GFP_KERNEL); + if (!slot) + return rc; + + slot->info = kzalloc(sizeof(*slot->info), GFP_KERNEL); + if (!slot->info) + goto failed1; + + slot->info->param = kzalloc(PCI_IOV_PARAM_LEN, GFP_KERNEL); + if (!slot->info) + goto failed2; + + vslot = kzalloc(sizeof(*vslot), GFP_KERNEL); + if (!vslot) + goto failed3; + + slot->name = vslot->name; + sprintf(slot->name, "%s-iov-%04x", pci_name(dev), id); + s...
2019 Nov 07
2
[PATCH V10 6/6] docs: sample driver to demonstrate how to implement virtio-mdev framework
...+ > + idr_init(&mvnet_dev.vd_idr); > + > + mvnet_dev.vd_class = class_create(THIS_MODULE, MVNET_CLASS_NAME); > + > + if (IS_ERR(mvnet_dev.vd_class)) { > + pr_err("Error: failed to register mvnet_dev class\n"); > + ret = PTR_ERR(mvnet_dev.vd_class); > + goto failed1; > + } > + > + mvnet_dev.dev.class = mvnet_dev.vd_class; > + mvnet_dev.dev.release = mvnet_device_release; > + dev_set_name(&mvnet_dev.dev, "%s", MVNET_NAME); > + > + ret = device_register(&mvnet_dev.dev); > + if (ret) > + goto failed2; > + > + re...
2019 Nov 07
2
[PATCH V10 6/6] docs: sample driver to demonstrate how to implement virtio-mdev framework
...+ > + idr_init(&mvnet_dev.vd_idr); > + > + mvnet_dev.vd_class = class_create(THIS_MODULE, MVNET_CLASS_NAME); > + > + if (IS_ERR(mvnet_dev.vd_class)) { > + pr_err("Error: failed to register mvnet_dev class\n"); > + ret = PTR_ERR(mvnet_dev.vd_class); > + goto failed1; > + } > + > + mvnet_dev.dev.class = mvnet_dev.vd_class; > + mvnet_dev.dev.release = mvnet_device_release; > + dev_set_name(&mvnet_dev.dev, "%s", MVNET_NAME); > + > + ret = device_register(&mvnet_dev.dev); > + if (ret) > + goto failed2; > + > + re...
2008 Sep 27
3
[PATCH 4/6 v3] PCI: support SR-IOV capability
...>totalvfs; i++) { + iov->ve[i].vfn = i; + iov->ve[i].iov = iov; + } + + rc = kobject_init_and_add(&iov->kobj, &iov_ktype, + &dev->dev.kobj, "iov"); + if (rc) + goto failed1; + + for (i = 0; i < ARRAY_SIZE(iov_attr); i++) { + rc = sysfs_create_file(&iov->kobj, &iov_attr[i].attr); + if (rc) + goto failed2; + } + + for (i = 0; i < iov->totalvfs; i++) { + sprintf(iov->...