Displaying 20 results from an estimated 26 matches for "exact_match".
2016 Aug 17
2
[PATCH 06/15] genhd: Add return code to device_add_disk
...m bdev */
> bdi = &disk->queue->backing_dev_info;
> - bdi_register_owner(bdi, disk_to_dev(disk));
> + retval = bdi_register_owner(bdi, disk_to_dev(disk));
> + if (retval)
> + goto fail;
>
> - blk_register_region(disk_devt(disk), disk->minors, NULL,
> - exact_match, exact_lock, disk);
> - register_disk(parent, disk);
> - blk_register_queue(disk);
> + retval = blk_register_region(disk_devt(disk), disk->minors, NULL,
> + exact_match, exact_lock, disk);
> + if (retval)
> + goto fail;
> + retval = register_disk(parent, disk);
>...
2016 Aug 17
2
[PATCH 06/15] genhd: Add return code to device_add_disk
...m bdev */
> bdi = &disk->queue->backing_dev_info;
> - bdi_register_owner(bdi, disk_to_dev(disk));
> + retval = bdi_register_owner(bdi, disk_to_dev(disk));
> + if (retval)
> + goto fail;
>
> - blk_register_region(disk_devt(disk), disk->minors, NULL,
> - exact_match, exact_lock, disk);
> - register_disk(parent, disk);
> - blk_register_queue(disk);
> + retval = blk_register_region(disk_devt(disk), disk->minors, NULL,
> + exact_match, exact_lock, disk);
> + if (retval)
> + goto fail;
> + retval = register_disk(parent, disk);
>...
2016 Aug 17
2
[PATCH 06/15] genhd: Add return code to device_add_disk
...> > - bdi_register_owner(bdi, disk_to_dev(disk));
> > > + retval = bdi_register_owner(bdi, disk_to_dev(disk));
> > > + if (retval)
> > > + goto fail;
> > >
> > > - blk_register_region(disk_devt(disk), disk->minors, NULL,
> > > - exact_match, exact_lock, disk);
> > > - register_disk(parent, disk);
> > > - blk_register_queue(disk);
> > > + retval = blk_register_region(disk_devt(disk), disk->minors, NULL,
> > > + exact_match, exact_lock, disk);
> > > + if (retval)
> > > +...
2016 Aug 17
2
[PATCH 06/15] genhd: Add return code to device_add_disk
...> > - bdi_register_owner(bdi, disk_to_dev(disk));
> > > + retval = bdi_register_owner(bdi, disk_to_dev(disk));
> > > + if (retval)
> > > + goto fail;
> > >
> > > - blk_register_region(disk_devt(disk), disk->minors, NULL,
> > > - exact_match, exact_lock, disk);
> > > - register_disk(parent, disk);
> > > - blk_register_queue(disk);
> > > + retval = blk_register_region(disk_devt(disk), disk->minors, NULL,
> > > + exact_match, exact_lock, disk);
> > > + if (retval)
> > > +...
2016 Aug 17
0
[PATCH 06/15] genhd: Add return code to device_add_disk
...t;queue->backing_dev_info;
> > - bdi_register_owner(bdi, disk_to_dev(disk));
> > + retval = bdi_register_owner(bdi, disk_to_dev(disk));
> > + if (retval)
> > + goto fail;
> >
> > - blk_register_region(disk_devt(disk), disk->minors, NULL,
> > - exact_match, exact_lock, disk);
> > - register_disk(parent, disk);
> > - blk_register_queue(disk);
> > + retval = blk_register_region(disk_devt(disk), disk->minors, NULL,
> > + exact_match, exact_lock, disk);
> > + if (retval)
> > + goto fail;
> > + retval...
2016 Aug 17
0
[PATCH 06/15] genhd: Add return code to device_add_disk
...Register BDI before referencing it from bdev */
bdi = &disk->queue->backing_dev_info;
- bdi_register_owner(bdi, disk_to_dev(disk));
+ retval = bdi_register_owner(bdi, disk_to_dev(disk));
+ if (retval)
+ goto fail;
- blk_register_region(disk_devt(disk), disk->minors, NULL,
- exact_match, exact_lock, disk);
- register_disk(parent, disk);
- blk_register_queue(disk);
+ retval = blk_register_region(disk_devt(disk), disk->minors, NULL,
+ exact_match, exact_lock, disk);
+ if (retval)
+ goto fail;
+ retval = register_disk(parent, disk);
+ if (retval)
+ goto fail;
+ retval =...
2016 Aug 17
0
[PATCH 06/15] genhd: Add return code to device_add_disk
...(bdi, disk_to_dev(disk));
> > > > + retval = bdi_register_owner(bdi, disk_to_dev(disk));
> > > > + if (retval)
> > > > + goto fail;
> > > >
> > > > - blk_register_region(disk_devt(disk), disk->minors, NULL,
> > > > - exact_match, exact_lock, disk);
> > > > - register_disk(parent, disk);
> > > > - blk_register_queue(disk);
> > > > + retval = blk_register_region(disk_devt(disk), disk->minors, NULL,
> > > > + exact_match, exact_lock, disk);
> > > > + if (r...
2003 Jul 04
3
switch => priority in the dialplan.. (probably an issue for Mark)
Hi,
It seems that the "switch" parameter has a priority in the dialplan that is higher than the wildcard extensions.. This I am finding to be a problem..
My setup..
UA1--[AST1]--{IAX}--[AST2]--UA2
| |
PSTN1 PSTN2
I use switch on AST1 to connect to AST2... As you can see I have PSTN connections on both and also the IAX connection is not permanent..
I
2016 Jun 30
0
[PATCH v2 02/12] genhd: Honor gen_uevent and add disk_gen_uevents
...kobj, KOBJ_ADD);
disk_part_iter_exit(&piter);
}
+EXPORT_SYMBOL(disk_gen_uevents);
/**
* add_disk - add partitioning information to kernel list
@@ -618,7 +633,7 @@ void add_disk(struct gendisk *disk, bool gen_uevent)
blk_register_region(disk_devt(disk), disk->minors, NULL,
exact_match, exact_lock, disk);
- register_disk(disk);
+ register_disk(disk, gen_uevent);
blk_register_queue(disk);
/*
diff --git a/include/linux/genhd.h b/include/linux/genhd.h
index 038be80..87ad9e5 100644
--- a/include/linux/genhd.h
+++ b/include/linux/genhd.h
@@ -416,6 +416,7 @@ extern void part_roun...
2004 Dec 07
0
Zaptel HDLC (NetHDLC) errors on modprobe, Linux 2.6 kernel
...;] ext3_lookup+0x70/0x89 [ext3]
[<0216802f>] real_lookup+0x6e/0xd2
[<02171457>] dput+0x1b/0x287
[<0216901d>] link_path_walk+0xd3c/0xdf7
[<02163ffc>] cdev_get+0x33/0x68
[<02163f7a>] exact_lock+0x7/0x11
[<0221850d>] kobj_lookup+0x132/0x194
[<02163f70>] exact_match+0x0/0x3
[<0216d078>] sys_ioctl+0x23d/0x2a0
divert: not allocating divert_blk for non-ethernet device hdlc0
Registered tone zone 0 (United States / North America)
Using ESF/B8ZS coding/framing
Calling startup (flags is 4099)
Using ESF/B8ZS coding/framing
Calling startup (flags is 4099)
divert...
2007 Aug 22
1
[nut-commits] svn commit r1072 - in trunk: . drivers
Arjen de Korte wrote:
> - HIDOpenDevice() will now handle closing the device on reload if
> needed, so that HIDCloseDevice() can now really close it and free
> the allocated memory for report buffer and parsed report descriptor.
If I remember correctly, the old behavior on "reopen" was to keep the
previous report descriptor, and try to find a device that matches the
previously
2017 Nov 13
3
PSA: debuginfo-tests workflow changing slightly
...-stage1-configure-RA/clang-build/tools/clang/test/debuginfo-tests/Output/foreach.m.tmp.o'
> has changed (actual time is 0x5a0a2528, debug map time is 0x5a0a2526) since
> this executable was linked, file will be ignored > break 25 SBBreakpoint:
> id = 1, file = '', line = 25, exact_match = 0, locations = 0 > r success >
> po thing = <could not resolve type> > quit -- Command Output (stderr): -- /Users/buildslave/jenkins/workspace/clang-stage1-configure-RA/llvm/tools/clang/test/debuginfo-tests/tests/foreach.m:11:11:
> error: expected string not found in input //...
2017 Nov 13
2
PSA: debuginfo-tests workflow changing slightly
...ge1-configure-RA/clang-build/tools/clang/test/debuginfo-tests/Output/foreach.m.tmp.o' has changed (actual time is 0x5a0a2528, debug map time is 0x5a0a2526) since this executable was linked, file will be ignored
>> > break 25
>> SBBreakpoint: id = 1, file = '', line = 25, exact_match = 0, locations = 0
>> > r
>> success
>> > po thing
>> = <could not resolve type>
>> > quit
>>
>> --
>> Command Output (stderr):
>> --
>> <>/Users/buildslave/jenkins/workspace/clang-stage1-configure-RA/llvm/tools/c...
2017 Nov 14
2
PSA: debuginfo-tests workflow changing slightly
...igure-RA/clang-build/tools/clang/test/debuginfo-tests/Output/foreach.m.tmp.o' has changed (actual time is 0x5a0a2528, debug map time is 0x5a0a2526) since this executable was linked, file will be ignored
>>> > break 25
>>> SBBreakpoint: id = 1, file = '', line = 25, exact_match = 0, locations = 0
>>> > r
>>> success
>>> > po thing
>>> = <could not resolve type>
>>> > quit
>>>
>>> --
>>> Command Output (stderr):
>>> --
>>> <>/Users/buildslave/jenkins/workspac...
2017 Nov 14
2
PSA: debuginfo-tests workflow changing slightly
...lang/test/debuginfo-tests/Output/foreach.m.tmp.o'
> has changed (actual time is 0x5a0a2528, debug map time is 0x5a0a2526) since
> this executable was linked, file will be ignored
> >>>> > break 25
> >>>> SBBreakpoint: id = 1, file = '', line = 25, exact_match = 0,
> locations = 0
> >>>> > r
> >>>> success
> >>>> > po thing
> >>>> = <could not resolve type>
> >>>> > quit
> >>>>
> >>>> --
> >>>> Command Output (stder...
2017 Nov 14
3
PSA: debuginfo-tests workflow changing slightly
...nfo-tests/Output/foreach.m.tmp.o'
>> has changed (actual time is 0x5a0a2528, debug map time is 0x5a0a2526) since
>> this executable was linked, file will be ignored
>> >>>> > break 25
>> >>>> SBBreakpoint: id = 1, file = '', line = 25, exact_match = 0,
>> locations = 0
>> >>>> > r
>> >>>> success
>> >>>> > po thing
>> >>>> = <could not resolve type>
>> >>>> > quit
>> >>>>
>> >>>> --
>> &g...
2017 Nov 22
2
PSA: debuginfo-tests workflow changing slightly
...'
>>>> has changed (actual time is 0x5a0a2528, debug map time is 0x5a0a2526) since
>>>> this executable was linked, file will be ignored
>>>> >>>> > break 25
>>>> >>>> SBBreakpoint: id = 1, file = '', line = 25, exact_match = 0,
>>>> locations = 0
>>>> >>>> > r
>>>> >>>> success
>>>> >>>> > po thing
>>>> >>>> = <could not resolve type>
>>>> >>>> > quit
>>>> &...
2017 Nov 13
2
PSA: debuginfo-tests workflow changing slightly
It looks like the bots are still red?
— Adrian
> On Nov 10, 2017, at 3:14 PM, Zachary Turner <zturner at google.com> wrote:
>
> Wasn't quite fixed, but it got a lot further this time. This time there was still an issue in the test_debuginfo.pl <http://test_debuginfo.pl/> script regarding a hardcoded path to the llgdb.py script. I think I never encountered this locally
2017 Nov 22
2
PSA: debuginfo-tests workflow changing slightly
...as changed (actual time is 0x5a0a2528, debug map time is 0x5a0a2526) since
>>>>>> this executable was linked, file will be ignored
>>>>>> >>>> > break 25
>>>>>> >>>> SBBreakpoint: id = 1, file = '', line = 25, exact_match = 0,
>>>>>> locations = 0
>>>>>> >>>> > r
>>>>>> >>>> success
>>>>>> >>>> > po thing
>>>>>> >>>> = <could not resolve type>
>>>>>&g...
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