search for: shared_data

Displaying 11 results from an estimated 11 matches for "shared_data".

2015 Dec 23
0
Unable to map a network drive on my PC to a shared directory on my LINUX server.
...m > > max log size = 50 > > socket options = TCP_NODELAY SO_RCVBUF=8192 SO_SNDBUF=8192 > > preferred master = No > > local master = No > > dns proxy = No > > security = User > > [share] > > path = /home/shared_data > > valid users = kwatanabe > > read only = No > > > > I typed the following command to ensure the smb.conf file had no errors > > root# testparm > > The testparm command completed successfully with no errors. > > > Then I added a samba use...
2012 Sep 19
27
[PATCH] Persistent grant maps for xen blk drivers
...struct blkif_request *ring_req; unsigned long id; unsigned int fsect, lsect; - int i, ref; + int i, ref, use_pers_gnts, new_pers_gnts; grant_ref_t gref_head; + struct bio_vec *bvecs[BLKIF_MAX_SEGMENTS_PER_REQUEST]; + struct bio_vec *bvec; + struct req_iterator iter; + char *bvec_data; + void *shared_data; + unsigned long flags; + struct page *shared_page; + struct gnt_list *gnt_list_entry; struct scatterlist *sg; if (unlikely(info->connected != BLKIF_STATE_CONNECTED)) return 1; - if (gnttab_alloc_grant_references( - BLKIF_MAX_SEGMENTS_PER_REQUEST, &gref_head) < 0) { - gnttab_...
2003 Apr 10
1
"Device or Resource Busy" when deleting folders
...he NT domain controller's home directories, and various shared data folders. When each user logs into X, a script is run which defines various options, and also mounts their SMB folders: sudo mount -t smbfs -o quiet,fmask=0777,dmask=0777,credentials=$HOME/.credentials //homer/shared $HOME/Shared_Data sudo mount -t smbfs -o quiet,fmask=0777,dmask=0777,credentials=$HOME/.credentials //homer/$USER $HOME/.ntprofile sudo mount -t smbfs -o quiet,fmask=0777,dmask=0777,credentials=$HOME/.credentials //homer/$USER\prefs $HOME/.userprefs Chances are, that the above lines are completely wrong, but it...
2012 Nov 02
2
[PATCH] xen-blk: persistent-grants fixes
...2,6 +852,7 @@ static void blkif_completion(struct blk_shadow *s, struct blkfront_info *info, rq_for_each_segment(bvec, s->request, iter) { BUG_ON((bvec->bv_offset + bvec->bv_len) > PAGE_SIZE); i = offset >> PAGE_SHIFT; + BUG_ON(i >= s->req.u.rw.nr_segments); shared_data = kmap_atomic( pfn_to_page(s->grants_used[i]->pfn)); bvec_data = bvec_kmap_irq(bvec, &flags); @@ -1069,7 +1070,7 @@ again: goto abort_transaction; } err = xenbus_printf(xbt, dev->nodename, - "feature-persistent-grants", "%u", 1); + "...
2013 Feb 28
0
[PATCH RFC 05/12] xen-blkfront: remove frame list from blk_shadow
...eq) gnt_list_entry = get_grant(&gref_head, info); ref = gnt_list_entry->gref; - buffer_mfn = pfn_to_mfn(gnt_list_entry->pfn); info->shadow[id].grants_used[i] = gnt_list_entry; @@ -465,7 +462,6 @@ static int blkif_queue_request(struct request *req) kunmap_atomic(shared_data); } - info->shadow[id].frame[i] = mfn_to_pfn(buffer_mfn); ring_req->u.rw.seg[i] = (struct blkif_request_segment) { .gref = ref, @@ -1269,7 +1265,7 @@ static int blkif_recover(struct blkfront_info *info) gnttab_grant_foreign_access_ref( req->u.rw.se...
2013 Mar 27
0
[PATCH 04/22] block: Convert bio_for_each_segment() to bvec_iter
...egment(bvec, s->request, iter) { - BUG_ON((bvec->bv_offset + bvec->bv_len) > PAGE_SIZE); - if (bvec->bv_offset < offset) + BUG_ON((bvec.bv_offset + bvec.bv_len) > PAGE_SIZE); + if (bvec.bv_offset < offset) i++; BUG_ON(i >= s->req.u.rw.nr_segments); shared_data = kmap_atomic( pfn_to_page(s->grants_used[i]->pfn)); - bvec_data = bvec_kmap_irq(bvec, &flags); - memcpy(bvec_data, shared_data + bvec->bv_offset, - bvec->bv_len); + bvec_data = bvec_kmap_irq(&bvec, &flags); + memcpy(bvec_data, shared_data + bvec.bv_offset, +...
2013 Mar 27
0
[PATCH 04/22] block: Convert bio_for_each_segment() to bvec_iter
...egment(bvec, s->request, iter) { - BUG_ON((bvec->bv_offset + bvec->bv_len) > PAGE_SIZE); - if (bvec->bv_offset < offset) + BUG_ON((bvec.bv_offset + bvec.bv_len) > PAGE_SIZE); + if (bvec.bv_offset < offset) i++; BUG_ON(i >= s->req.u.rw.nr_segments); shared_data = kmap_atomic( pfn_to_page(s->grants_used[i]->pfn)); - bvec_data = bvec_kmap_irq(bvec, &flags); - memcpy(bvec_data, shared_data + bvec->bv_offset, - bvec->bv_len); + bvec_data = bvec_kmap_irq(&bvec, &flags); + memcpy(bvec_data, shared_data + bvec.bv_offset, +...
2013 Jun 09
0
[PATCH 06/26] block: Convert bio_for_each_segment() to bvec_iter
...egment(bvec, s->request, iter) { - BUG_ON((bvec->bv_offset + bvec->bv_len) > PAGE_SIZE); - if (bvec->bv_offset < offset) + BUG_ON((bvec.bv_offset + bvec.bv_len) > PAGE_SIZE); + if (bvec.bv_offset < offset) i++; BUG_ON(i >= s->req.u.rw.nr_segments); shared_data = kmap_atomic( pfn_to_page(s->grants_used[i]->pfn)); - bvec_data = bvec_kmap_irq(bvec, &flags); - memcpy(bvec_data, shared_data + bvec->bv_offset, - bvec->bv_len); + bvec_data = bvec_kmap_irq(&bvec, &flags); + memcpy(bvec_data, shared_data + bvec.bv_offset, +...
2013 Jun 09
0
[PATCH 06/26] block: Convert bio_for_each_segment() to bvec_iter
...egment(bvec, s->request, iter) { - BUG_ON((bvec->bv_offset + bvec->bv_len) > PAGE_SIZE); - if (bvec->bv_offset < offset) + BUG_ON((bvec.bv_offset + bvec.bv_len) > PAGE_SIZE); + if (bvec.bv_offset < offset) i++; BUG_ON(i >= s->req.u.rw.nr_segments); shared_data = kmap_atomic( pfn_to_page(s->grants_used[i]->pfn)); - bvec_data = bvec_kmap_irq(bvec, &flags); - memcpy(bvec_data, shared_data + bvec->bv_offset, - bvec->bv_len); + bvec_data = bvec_kmap_irq(&bvec, &flags); + memcpy(bvec_data, shared_data + bvec.bv_offset, +...
2013 Jun 09
0
[PATCH 06/26] block: Convert bio_for_each_segment() to bvec_iter
...egment(bvec, s->request, iter) { - BUG_ON((bvec->bv_offset + bvec->bv_len) > PAGE_SIZE); - if (bvec->bv_offset < offset) + BUG_ON((bvec.bv_offset + bvec.bv_len) > PAGE_SIZE); + if (bvec.bv_offset < offset) i++; BUG_ON(i >= s->req.u.rw.nr_segments); shared_data = kmap_atomic( pfn_to_page(s->grants_used[i]->pfn)); - bvec_data = bvec_kmap_irq(bvec, &flags); - memcpy(bvec_data, shared_data + bvec->bv_offset, - bvec->bv_len); + bvec_data = bvec_kmap_irq(&bvec, &flags); + memcpy(bvec_data, shared_data + bvec.bv_offset, +...
2012 Dec 06
3
LVM Checksum error when using persistent grants (#linux-next + stable/for-jens-3.8)
Hey Roger, I am seeing this weird behavior when using #linux-next + stable/for-jens-3.8 tree. Basically I can do ''pvscan'' on xvd* disk and quite often I get checksum errors: # pvscan /dev/xvdf PV /dev/xvdf2 VG VolGroup00 lvm2 [18.88 GiB / 0 free] PV /dev/dm-14 VG vg_x86_64-pvhvm lvm2 [4.00 GiB / 68.00 MiB free] PV /dev/dm-12 VG vg_i386-pvhvm lvm2