[PATCH] pci-arbiter: Stop using deprecated region memory pointer

2022-01-07 Thread Joan Lledó
From: Joan Lledó Use a internal array of pointers instead * pci-arbiter/device_map.h: * Update device_map_region() prototype * Now it receives an output address as parameter * pci-arbiter/device_map.c: * Update device_map_region() definition to match the new prototype * Support for

Re: [PATCH] pci-arbiter: Stop using deprecated region memory pointer

2022-01-07 Thread Joan Lledó
Hi, > Rather >= ? No, libpciaccess accepts using the legacy method for addrress up to 0x10 included. > Also, why this address? Putting a comment there would be welcome to explain > the magic number. I'm taking the condition from here: https://gitlab.freedesktop.org/xorg/lib/libpciaccess

Re: (deb-cat) Comunitat de PL a les administracions publiques

2022-01-05 Thread Joan
És interessant, per no reinventar la roda... -- Joan Cervan i Andreu http://personal.calbasi.net "El meu paper no és transformar el món ni l'home sinó, potser, el de ser útil, des del meu lloc, als pocs valors sense els quals un món no val la pena viure'l" A. Camus i pels q

[PATCH] hurd: Implement device memory mapping

2022-01-05 Thread Joan Lledó
From: Joan Lledó * src/hurd_pci.c: * Implement device memory mapping functions * pci_device_hurd_map_range * pci_device_hurd_unmap_range * pci_device_hurd_map_legacy * pci_device_hurd_unmap_legacy * src/x86_pci.h

Re: [PATCH] hurd: Implement device memory mapping

2022-01-05 Thread Joan Lledó
Hi, > This is not using map.base as set by pci_device_hurd_map_legacy? You're right, I checked it out and found that libpciaccess has a set of old and deprecated memory mapping functions to map/unmap entire BARs (regions). Later, they added new functions to allow manny mappings in the same regi

[PATCH] pci-arbiter: Stop using deprecated region memory pointer

2022-01-05 Thread Joan Lledó
From: Joan Lledó Use a internal array of pointers instead * pci-arbiter/device_map.h: * Update device_map_region() prototype * Now it receives an output address as parameter * pci-arbiter/device_map.c: * Update device_map_region() definition to match the new prototype * Support for

Re: [PATCH] hurd: Implement device memory mapping

2021-12-30 Thread Joan Lledó
Hi, I attached a patch with the changes

[PATCH] hurd: Implement device memory mapping

2021-12-30 Thread Joan Lledó
From: Joan Lledó * src/hurd_pci.c: * Implement device memory mapping functions * pci_device_hurd_map_range * pci_device_hurd_unmap_range * pci_device_hurd_map_legacy * pci_device_hurd_unmap_legacy * src/x86_pci.h

Re: Trobades mensuals?

2021-12-29 Thread Joan
I si ets usuari de Matrix, allà tenimun brigde al canal d'IRC (el que no recordo és si cal autenfificar-se contra el servidor i'IRC: és probable). -- Joan Cervan i Andreu http://personal.calbasi.net "El meu paper no és transformar el món ni l'home sinó, potser, el de ser út

Re: Bookworm

2021-12-29 Thread Joan
m funciona, amb els bugs que patim totes les distros de pinephone (de tant en tant les trucades es tallen o el mòbil per connexió amb la xarxa). -- Joan Cervan i Andreu http://personal.calbasi.net "El meu paper no és transformar el món ni l'home sinó, potser, el de ser útil, des del

Re: [PATCH] hurd: Implement device memory mapping

2021-12-28 Thread Joan Lledó
Hi, El 28/12/21 a les 13:55, Samuel Thibault ha escrit: ? The interface explicitly says they can be different. Samuel Sorry, I was confused. I meant the function pci_device_hurd_map_range at libpciaccess. If io_map returns different ports for robj and wobj, we can only assign one of them

Re: [PATCH] hurd: Implement device memory mapping

2021-12-28 Thread Joan Lledó
Hi, El 19/12/21 a les 16:40, Samuel Thibault ha escrit: “ For objects where read data and write data are the same, these objects will be equal, otherwise they will be disjoint. ” In that case, which one should we return as pager? Probably the right thing is to return an error, since a caller

[PATCH 1/3] libnetfs: new user callback: netfs_get_filemap()

2021-12-24 Thread Joan Lledó
From: Joan Lledó Provide the user with a new callback so they can implement file mapping over file system nodes. * libnetfs/netfs.h: Add prototype for netfs_get_filemap * libnetfs/file-map.c: netfs_get_filemap definition * libnetfs/Makefile: add file-map.c to sources --- libnetfs/Makefile

Re: [PATCH 1/3] libnetfs: new user callback: netfs_get_filemap()

2021-12-24 Thread Joan Lledó
> This only provides the declaration. Sorry, I hope it's correct now

[PATCH 2/3] libnetfs: Implement RPC: io_map

2021-12-19 Thread Joan Lledó
From: Marcus Brinkmann * libnetfs/iostubs.c: implement io_map --- libnetfs/iostubs.c | 46 +++--- 1 file changed, 43 insertions(+), 3 deletions(-) diff --git a/libnetfs/iostubs.c b/libnetfs/iostubs.c index a5ff4504..df48f8b7 100644 --- a/libnetfs/iostubs.

[PATCH 3/3] pci-arbiter: Implement memory mapping over region files

2021-12-19 Thread Joan Lledó
From: Joan Lledó * pci-arbiter/Makefile: * Add device_map.c to sources * pci-arbiter/device_map.c: * pci-arbiter/device_map.h: * New module for device mapping * Relies on libpciaccess mapping methods * pci-arbiter/func_files.c: * io_region_file(): Use the new

[PATCH 1/3] libnetfs: new user callback: netfs_get_filemap()

2021-12-19 Thread Joan Lledó
From: Joan Lledó Provide the user with a new callback so they can implement file mapping over file system nodes. * libnetfs/netfs.h: Add prototype for netfs_get_filemap --- libnetfs/netfs.h | 6 ++ 1 file changed, 6 insertions(+) diff --git a/libnetfs/netfs.h b/libnetfs/netfs.h index

Re: [PATCH 1/3] libnetfs: new user callback: netfs_get_filemap()

2021-12-19 Thread Joan Lledó
> Rather than requiring the translator to provide a netfs_get_filemap > (which breaks compatibility for any existing translator using > libnetfs), you can add a weak definition in libnetfs, see for instance > libnetfs/set-get-trans.c. Like this? I'm also attaching the other two patches, since the

Re: [PATCH] hurd: Implement device memory mapping

2021-12-19 Thread Joan Lledó
El 12/12/21 a les 16:19, Samuel Thibault ha escrit: Don't we need else { pager = wobj; } ? Otherwise pager would be undefined. In the case when the two previous conditions are false, what about robj? can we be sure it's null and not leaked? When could the two previous conditions be fal

Re: Impressora compatible Debian 11

2021-12-15 Thread Joan
Jo amb una làser Brother no he tingut cap problema, des de 2003 :-p -- Joan Cervan i Andreu http://personal.calbasi.net "El meu paper no és transformar el món ni l'home sinó, potser, el de ser útil, des del meu lloc, als pocs valors sense els quals un món no val la pena viure'

[PATCH 3/3] pci-arbiter: Implement memory mapping over region files

2021-12-12 Thread Joan Lledó
From: Joan Lledó * pci-arbiter/Makefile: * Add device_map.c to sources * pci-arbiter/device_map.c: * pci-arbiter/device_map.h: * New module for device mapping * Relies on libpciaccess mapping methods * pci-arbiter/func_files.c: * io_region_file(): Use the new

Re: PCI arbiter memory mapping

2021-12-12 Thread Joan Lledó
Hi, These patches implement device memory mapping in the arbiter by using the new gnumach RPC

[PATCH 2/3] libnetfs: Implement RPC: io_map

2021-12-12 Thread Joan Lledó
From: Marcus Brinkmann * libnetfs/iostubs.c: implement io_map --- libnetfs/iostubs.c | 46 +++--- 1 file changed, 43 insertions(+), 3 deletions(-) diff --git a/libnetfs/iostubs.c b/libnetfs/iostubs.c index a5ff4504..df48f8b7 100644 --- a/libnetfs/iostubs.

Re: About consuming/releaseing ports in libpciaccess

2021-12-12 Thread Joan Lledó
Hi, > These rules are different between the server and client sides of MIG. > I was talking about the server side; but you are on the client side > here. On the client side, whether or not the call consumes a port > right is determined by the "disposition" specified in .defs (or > specified at run

[PATCH] hurd: Implement device memory mapping

2021-12-12 Thread Joan Lledó
From: Joan Lledó * src/hurd_pci.c: * Implement device memory mapping functions * pci_device_hurd_map_range * pci_device_hurd_unmap_range * pci_device_hurd_map_legacy * pci_device_hurd_unmap_legacy * src/x86_pci.h

[LincolnTalk] Thursday, Dec 9 at 7 Screening of Reconstruction on Zoom. Everyone welcome.

2021-12-08 Thread Joan Kimball
* Please join FPL Racial Justice Journey for a screening of Reconstruction by Henry Louis Gates**.* Screening: Reconstruction, Episode 4 *When:* Thursday, December 9, 2021 @7:00 PM - 9:00 PM Join Zoom Meeting https://zoom.us/j/93474015322?pwd=R0c3LzRhNnlUbXQrUFFCR0xxOEg3dz09 Meeting ID: 934 74

[LincolnTalk] Tonight! Please join FPL Racial Justice Journey at 7 for screening of Reconstruction: PBS Henry Louis Gates

2021-12-02 Thread Joan Kimball
The First Parish in Lincoln's Racial Justice Journey continues on *Thursday, December 2 at 7 PM with a screening of Henry Louis Gates' Reconstruction, part 1 as shown on PBS.* *Join Zoom Meeting* https://zoom.us/j/97630101224?pwd=TkJHSnYvaEpsTnVEb1ZsbVFxY2Fxdz09 Meeting ID: 976 3010 1224 Passcod

[SCM] Hurd branch, jlledom-pci-memory-map, updated. v0.9.git20210811-58-g1eb7fdd

2021-11-21 Thread Joan Lled�
any other notification email; so we list those revisions in full, below. - Log - commit 1eb7fdd9ec8b82273574e575342ead5d55916fd0 Merge: c193982 386fb72 Author: Joan Lledó Date: Sun Nov 21 11:41:33 2021 +0100 Merge branch 'jlledom

Re: [DISCUSS] improving visibility for CouchDB-maintained independent Erlang apps

2021-11-18 Thread Joan Touzet
://lists.apache.org/thread/66hhhn2t3mx7mg2j9ls4656ngl7j3n0h HTH, Joan On 17/11/2021 08:31, Adam Kocoloski wrote: On Nov 17, 2021, at 12:22 AM, Joan Touzet wrote: Do we really think these apps are going to have a lot of churn and need a lot of releases? I could see `erlfdb` needing a regular release

[LincolnTalk] FPL Racial Justice Journey, Tonight. Zoom at 7

2021-11-18 Thread Joan Kimball
Thursday, November 18 at 7 PM ……..Please Join US! *Screening: We Shall Remain, Wounded Knee* *When:** Thursday, November 18, 2021 @7:00 PM - 9:00 PM* *Join Zoom Meeting* *https://zoom.us/j/93361487119?pwd=STBNdHRCZjlvT3ZSMVFneUcrMFBDUT09

Re: ftp

2021-11-17 Thread Joan
Jo per configurar servidors smtp uso IspConfig. I així no em trenco les banyes... -- Joan Cervan i Andreu http://personal.calbasi.net "El meu paper no és transformar el món ni l'home sinó, potser, el de ser útil, des del meu lloc, als pocs valors sense els quals un món no val la pena

Re: [DISCUSS] improving visibility for CouchDB-maintained independent Erlang apps

2021-11-16 Thread Joan Touzet
objection to using the tagging approach you outline above, of course. But looking at other image names in the apache Docker Hub org, I think Infra would readily approve another name if you need it. -Joan

Re: [DISCUSS] improving visibility for CouchDB-maintained independent Erlang apps

2021-11-16 Thread Joan Touzet
On 16/11/2021 17:53, Joan Touzet wrote: On 16/11/2021 16:08, Nick Vatamaniuc wrote: As for voting for making these proper releases, I am not really looking forward to the SVN pushes, signing, checksumming, and collecting votes for these deps. Scriptable, shouldn't be hard if someone has

Re: [DISCUSS] improving visibility for CouchDB-maintained independent Erlang apps

2021-11-16 Thread Joan Touzet
On 16/11/2021 16:08, Nick Vatamaniuc wrote: As for voting for making these proper releases, I am not really looking forward to the SVN pushes, signing, checksumming, and collecting votes for these deps. Scriptable, shouldn't be hard if someone has time. Especially for a NIF with just 2 functi

Re: [LincolnTalk] Why is Sherman’s Bridge Road’s bridge wooden?

2021-11-14 Thread Joan Kimball
the original look, as had been promised, and > certainly not with the original stones. > > Sara Mattes > > > > Sent from my iPhone > > On Nov 14, 2021, at 2:33 PM, Joan Kimball wrote: > >  > > > > Hi. It is historic on the Sudbury River, a designated Wil

[LincolnTalk] Fwd: Why is Sherman’s Bridge Road’s bridge wooden?

2021-11-14 Thread Joan Kimball
when the Lee Bridge on Route 117 needed repair, local advicates, the 2 towns and Park Service worked hard to have it restored and not replaced by a generic modern bridge. Joan On Sun, Nov 14, 2021, 9:51 AM Louis Zipes wrote: > I know this is a Wayland bridge but since we use it to get to

About consuming/releaseing ports in libpciaccess

2021-11-14 Thread Joan Lledó
Hi, I'm trying to implement a correct release of resources in libpciaccess x86 module. I have this text from Sergey as reference: > Consuming, as in taking ownership of, or "eating" the passed-in reference. > > If a call consuming something, the callee takes ownership of the > passed-in refe

[SCM] Hurd branch, jlledom-pci-memory-map, updated. v0.9.git20210404-33-g386fb72

2021-11-13 Thread Joan Lled�
--- commit 386fb721bbec6a2b90d00ab8954d43c3c16ef8f2 Author: Joan Lledó Date: Sat Nov 13 09:46:29 2021 +0100 pci-arbiter: get rid of struct pci_user_data We got a new RPC in the kernel to get the pager --- Summary of chan

[SCM] Hurd branch, jlledom-pci-memory-map, updated. v0.9.git20210404-32-gb522521

2021-11-12 Thread Joan Lled�
--- commit b5225212aad803afc7f3fedf7bff134389985086 Author: Joan Lledó Date: Sat Nov 13 08:53:28 2021 +0100 pci-arbiter: user new RPC vm_region_create_proxy() --- Summary of changes: pci-arbiter/netfs_impl.c | 27 +

Re: Glazier (Was: [VOTE] Release Apache CouchDB 3.2.1)

2021-11-12 Thread Joan Touzet
On 12/11/2021 08:40, Jan Lehnardt wrote: My post is from just going through the README. Since then I found the separate SM60 README, but haven’t acted on it just yet. I see no notes for esr68, if you have anything, even temp commits, I’d take them :) Sorry, I must have aborted trying esr68,

Re: Glazier (Was: [VOTE] Release Apache CouchDB 3.2.1)

2021-11-11 Thread Joan Touzet
Onto SpiderMonkey, any ideas for this: DEBUG: configure: error: Library requirements (icu-i18n >= 59.1) not met; consider adjusting the PKG_CONFIG_PATH environment variable if your libraries are in a nonstandard prefix so pkg-config can find them. Setting PKG_CONFIG_PATH to /c/relax/vcpkg/inst

[LincolnTalk] Please join us TONIGHT for Screening of Jill Lepore's Talk on King Philips War. 7 PM Zoom. All invited

2021-11-11 Thread Joan Kimball
this talk. The Name of War has revised our thinking about King Philip's war and about the uses of history. See you tonight. All are welcome!. Joan Kimball for the Racial Justice Journey -- The LincolnTalk mailing list. To post, send mail to Lincoln@lincolntalk.org. Search the archives at

Re: [arch-general] New LXQt (1.0.0) with big text size, affecting other Qt apps

2021-11-11 Thread Joan Figueras via arch-general
On 11/11/21 12:04, Archange via arch-general wrote: Le 11/11/2021 à 12:21, Javier via arch-general a écrit : On 11/11/21 01:32, Uwe Sauter via arch-general wrote: I'm experiencing the same with Mate. FullHD on 24" display shows fonts about twice the normal size. The workaround I found (not

Re: Glazier (Was: [VOTE] Release Apache CouchDB 3.2.1)

2021-11-09 Thread Joan Touzet
On 09/11/2021 11:51, Jan Lehnardt wrote: Heya Joan & Dave, I’m working my way through the Glazier readme, thanks so much for the copious notes. I had to change a few things to get ahead (noted below), and now I’m stuck. # Missing PATH I had to add this to PATH to make tool resolu

Re: [PATCH] new interface: memory_object_get_proxy

2021-11-06 Thread Joan Lledó
Hi, I tested it and everything works fine. I'm attaching the two patches for convenience. About the name, feel free to change it if you want, although I think if we rename it then the function should be moved to vm_map.c, maybe just below vm_region()

[PATCH 1/2] new interface: memory_object_get_proxy

2021-11-06 Thread Joan Lledó
From: Joan Lledó To get a proxy to the region a given address belongs to, with protection and range limited to the region ones. * include/mach/mach4.defs: memory_object_get_proxy RPC declaration * vm/memory_object_proxy.c: memory_object_get_proxy implementation --- include/mach/mach4.defs

[PATCH 2/2] Memory proxies: Add support for anonymous mappings

2021-11-06 Thread Joan Lledó
From: Sergey Bugaev * vm/memory_object_proxy.c: * memory_object_get_proxy(): * Return KERN_INVALID_ARGUMENT when the entry is a submap. * Create a pager for the vm_object when the entry doesn't have any yet, since it's an anonymous mapping. --- vm/memory_object_proxy.c | 21 +

Re: [LincolnTalk] best places for eyeglasses

2021-11-05 Thread Joan Kimball
I have gone to Weston Optical in Wayland for years. On Fri, Nov 5, 2021, 10:42 AM Bob Kupperstein wrote: > We've gotten very good service at Bay State Eye on Moody Street in > Waltham: https://www.baystateeye.com > > Personal, very friendly, knowledgeable service - and they accept all the > majo

[LincolnTalk] FPL Racial Justice Journey, "The Pilgrims" at 7 tonight on zoom

2021-11-04 Thread Joan Kimball
*Thursday, November 4 at 7 pm* Join us as we continue to look at the people who created our history. This month we are looking at the interactions between the Native Americans and the Pilgrims. This PBS American Experience documentary, *The Pilgrims*, illuminates the English world of the passenger

Re: [VOTE] Release Apache CouchDB 3.2.1

2021-11-03 Thread Joan Touzet
ohali/9f159bbdb6ef2c51a50d1e2326fc1d5b Any questions, feel free to send me a note offlist. Cheers, Joan "too busy for a pithy quote" Touzet On 02/11/2021 22:00, Nick Vatamaniuc wrote: Dear community, I would like to propose that we release Apache CouchDB 3.2.1 Candidate release notes: https://docs.couchd

Re: [VULN 0/4] Hurd vulnerability details

2021-11-02 Thread Joan Lledó
Hi, El 2/11/21 a les 17:35, Samuel Thibault ha escrit: Hello, Thanks a lot for this writing! That'll surely be an interesting read for whoever wants to look a bit at the details of how the Hurd works. And of course thanks for finding and fixing the vulnerabilities :) Yes, I'm gonna read it c

Re: [PATCH] new interface: memory_object_get_proxy

2021-11-01 Thread Joan Lledó
Hi, El 1/11/21 a les 17:47, Sergey Bugaev ha escrit: With this diff (on top of your patch), it finally works sanely for me: Cool, great work. I'd like to try it myself but I won't have the time until next weekend. I'll merge your changes with mine and make my tests.

Re: [PATCH] new interface: memory_object_get_proxy

2021-11-01 Thread Joan Lledó
Hi, El 1/11/21 a les 14:36, Sergey Bugaev ha escrit: * "Anonymous" mappings (created with a null memory object) If they provide no object when calling vm_map, then the kernel uses the default pager, isn't it? Can't you send a reference to the default pager to memory_object_create_proxy()?

[PATCH] new interface: memory_object_get_proxy

2021-11-01 Thread Joan Lledó
From: Joan Lledó To get a proxy to the region a given address belongs to, with protection and range limited to the region ones. * include/mach/mach4.defs: memory_object_get_proxy RPC declaration * vm/memory_object_proxy.c: memory_object_get_proxy implementation --- include/mach/mach4.defs

Re: [PATCH] new interface: memory_object_get_proxy

2021-11-01 Thread Joan Lledó
Here you go

Re: [PATCH] new interface: memory_object_get_proxy

2021-11-01 Thread Joan Lledó
Hi, El 30/10/21 a les 14:06, Sergey Bugaev ha escrit: > I hope this makes sense; I'd be happy to expand if not. Thanks for your explanations, it makes sense but there's still one thing I don't understand: if memory_object_create_proxy() is the owner of the pager it receives as parameter, and th

[PATCH] new interface: memory_object_get_proxy

2021-11-01 Thread Joan Lledó
From: Joan Lledó To get a proxy to the region a given address belongs to, with protection and range limited to the region ones. * include/mach/mach4.defs: memory_object_get_proxy RPC declaration * vm/memory_object_proxy.c: memory_object_get_proxy implementation --- include/mach/mach4.defs

[nysbirds-l] White-winged Crossbills irrupting into the Adirondacks

2021-10-30 Thread Joan Collins
ed it for him!) Keep an eye on young people in your life with an interest in birds - it's never too early! Joan Collins Adirondack Avian Expeditions & Workshops LLC Editor, New York Birders Long Lake, NY (315) 244-7127 cell (518) 624-5528 home http://www.adirondackavianexped

[nysbirds-l] White-winged Crossbills irrupting into the Adirondacks

2021-10-30 Thread Joan Collins
ed it for him!) Keep an eye on young people in your life with an interest in birds - it's never too early! Joan Collins Adirondack Avian Expeditions & Workshops LLC Editor, New York Birders Long Lake, NY (315) 244-7127 cell (518) 624-5528 home http://www.adirondackavianexped

Re: [PATCH] new interface: memory_object_get_proxy

2021-10-29 Thread Joan Lledó
Hi, El 24/10/21 a les 19:50, Sergey Bugaev ha escrit: Naming: perhaps memory_object_create_vm_proxy ()? or even memory_object_create_task_vm_proxy ()? I don't care about the name, you guys decide. I would expect the request port argument to be a vm_task_t (i.e. a vm_map), not a full task. Bu

Re: [DISCUSS] improving visibility for CouchDB-maintained independent Erlang apps

2021-10-29 Thread Joan Touzet
m as first-class citizens. And with good docs we can make this as painless a process as possible for everyone, modulo having to use svn to upload the tarballs after voting. -Joan

Re: [Evergreen-general] "Digital" Cards and Library/School Partnerships

2021-10-29 Thread Joan Kranich via Evergreen-general
(college) members. We use OverDrive to circulate econtent. Some of our public libraries partner with their local school(s) to use the OverDrive Sora program which allows students to borrow the network's OverDrive content without a library card. Joan On Thu, Oct 28, 2021 at 1:32 PM Kaffenberger,

Re: [DISCUSS] improving visibility for CouchDB-maintained independent Erlang apps

2021-10-28 Thread Joan Touzet
ith actual ASF releases due to policy. No problem with them being on Hex just as there's no problem with us being on Docker or any other binary stream, just so long as we do the "official" dance first. -Joan

[LincolnTalk] FYI: 3 Talks about Racial Justice: Don Hafner, Ray Shepard and Elise Lemire

2021-10-28 Thread Joan Kimball
Three outstanding talks: 1.* Tonight*, sponsored by First Parish Racial Justice Journey and Lincoln Historical Society.7 P.M. on zoom *Don Hafner: Entangled Lives: Black and White. Lincoln and It's African American Residents in the 18th Century*. Zoom Link: Join the event here: https://zoom.us/j

[PATCH] new interface: memory_object_get_proxy

2021-10-24 Thread Joan Lledó
From: Joan Lledó To get a proxy to the region a given address belongs to, with protection and range limited to the region ones. * include/mach/mach4.defs: memory_object_get_proxy RPC declaration * vm/memory_object_proxy.c: memory_object_get_proxy implementation --- include/mach/mach4.defs

Re: gnumach RPC: get info about the calling task

2021-10-24 Thread Joan Lledó
Hi, I wrote a patch with the RPC as you guys asked. Please tell me if it fits your plans for mremap()

[cobirds] 293 pelicans on Windsor Reservoir. Weld County

2021-10-22 Thread 'Joan Glabach' via Colorado Birds
Most are newly arrived today. Currently at SE end of reservoir. Joan Glabach Severance, CO Sent from my iPad -- -- You received this message because you are subscribed to the Google Groups "Colorado Birds" group. To post to this group, send email to cobirds@googlegroups.com For mo

[LincolnTalk] Ray Shepard's Talk on Thursday October 21st hosted by the FPL Racial Justice Journey

2021-10-21 Thread Joan Kimball
Please join us on zoom tonight at 7 on zoom! WHAT: Ray Shepard's talk on "How do we talk about race in a time of critical race theory pushback?" And time for discussion. WHEN: Tonight at 7:00 p.m. HOW : Zoom: to find link go to fplincoln.org/calendar. Click on date and 7:00 talk. HOST: First Pa

Re: gnumach RPC: get info about the calling task

2021-10-17 Thread Joan Lledó
El 17/10/21 a les 18:32, Samuel Thibault ha escrit> It will be useful to implement mremap with the same call. In your case you know the size, don't you? Yes That's almost the same, isn't it? (there is just the max_prot parameter, which you can indeed add to the RPC above). It's similar b

Re: gnumach RPC: get info about the calling task

2021-10-17 Thread Joan Lledó
Hi, El 16/10/21 a les 13:27, Sergey Bugaev ha escrit: routine vm_make_proxy ( target_task : vm_task_t; address : vm_address_t; size : vm_size_t; out proxy : memory_object_t); Why the "size" parameter? I'd rather see a new wrapper for memory_object_create_proxy() which re

Re: gnumach RPC: get info about the calling task

2021-10-16 Thread Joan Lledó
OK, I'll try with your design El 16/10/21 a les 18:06, Sergey Bugaev ha escrit: On Sat, Oct 16, 2021 at 6:54 PM Samuel Thibault wrote: Indeed, since it's the region that remembers which protection was allowed, we need a proxy there to enforce them. Right, that's also a good point. max_proect

[PATCH] new interface: vm_pager

2021-10-16 Thread Joan Lledó
From: Joan Lledó Given a task and an address, it returns the pager used to map that address in that task. * include/mach/mach4.defs: new interface declaration: vm_pager * vm/memory_object_proxy.h: add declaration for proxy hash functions * vm/memory_object_proxy.c: implement proxy hash

Re: gnumach RPC: get info about the calling task

2021-10-16 Thread Joan Lledó
El 12/10/21 a les 20:32, Samuel Thibault ha escrit: > Sergey Bugaev, le mar. 12 oct. 2021 16:22:48 +0300, a ecrit: >> So in the case of vm_map-backed pager, it should matter whether you >> have a task port to the target task, not whether you *are* the target >> task. If someone has a task port to a

[cobirds] Snow geese. Windsor Reservoir

2021-10-14 Thread 'Joan Glabach' via Colorado Birds
We have five snow geese on the beach northwest side of reservoir. Joan Glabach Severance, CO Sent from my iPhone -- -- You received this message because you are subscribed to the Google Groups "Colorado Birds" group. To post to this group, send email to cobirds@googlegroups.co

Re: [LincolnTalk] We are about to get redistricted… again… maybe… probably

2021-10-14 Thread Joan Kimball
Hi. Do you or anyonevknow about our Congress district also? Thanks, Sara, for telling us about implications for state legislature. Joan On Thu, Oct 14, 2021, 8:20 AM Sara Mattes wrote: > The proposed State *HOUSE* map has us joined with Weston and a part of > Needham and become Norf

[LincolnTalk] Screening of "Harriet" at First Parish on Zoom Thursday, October 14 at 7

2021-10-13 Thread Joan Kimball
The First Parish Racial Justice Advocates invites you to join us for a screening of Harriet about Harriet Tubman on Thursday, October 14 st 7 on zoom. This film takes us a step further on our Racial Justice Journey. To find the link go to *https://www.fplincoln.org/calendar

gnumach RPC: get info about the calling task

2021-10-12 Thread Joan Lledó
Hi, I'm working on the gnumach rpc to return a pager from a task and an address mapped in that task. For security reasons I'd like to check if the calling task is the same as the one the given map belongs to. But I don't know how to do it. In the rpc implementation, the function receives a

Re: Debian en un mòbil? Estàs de conya?

2021-10-08 Thread Joan
rg/wiki/Mobian Ara miro de fer una primera entrada en català :-p -- Joan Cervan i Andreu http://personal.calbasi.net "El meu paper no és transformar el món ni l'home sinó, potser, el de ser útil, des del meu lloc, als pocs valors sense els quals un món no val la pena viure'l"

Re: Debian en un mòbil? Estàs de conya?

2021-10-08 Thread Joan
rivat de Gnome 3 > >> (Hildon). > >> > >> Ni m'espia ni m'explota. > >> > >> Ara em sembla que hi ha disponible la versió «Maemo Leste». > >> > >> > >> El 7/10/21 a les 13:17, Blackhold ha escrit: > >>>

Re: Debian en un mòbil? Estàs de conya?

2021-10-08 Thread Joan
enrere és el > >> punyetero whatsapp (també l'economia per comprar un telèfon > >> específic). > >> > >> Per whatsapp a linux he vist això: > >> > >> https://blog.desdelinux.net/como-usar-whatsapp-en-linux-con-pidgin/ > >

Re: Debian en un mòbil? Estàs de conya?

2021-10-08 Thread Joan
Al mòbils de linux pots usar un dels dos emuladors per Android: Waydroid sembla que és el que va millor: https://github.com/waydroid/waydroid (per cert, diria que també es pot fer servir per l'escriptori) -- Joan Cervan i Andreu http://personal.calbasi.net "El meu paper no és tran

Re: Debian en un mòbil? Estàs de conya?

2021-10-07 Thread Joan Albert
t, però és cert que encara li falta molta maduresa (tot i així, ha millorat força). Igual que tu, vaig tornar a Android, almenys usant LineageOS, cosa que és millor del que m'esperava. Salut, -- Joan Albert

Debian en un mòbil? Estàs de conya?

2021-10-06 Thread Joan
Un vídeo de mitja hora: https://saimei.ftp.acc.umu.se/pub/debian-meetings/2021/MiniDebConf-Regensburg/debian-on-a-smart-phone-are-you-serious.lq.webm -- Joan Cervan i Andreu http://personal.calbasi.net "El meu paper no és transformar el món ni l'home sinó, potser, el de ser útil, d

[Frameworks] Theaster Gates contact?

2021-10-06 Thread Hawkins, Joan C.
Does anyone have contact info for Theaster Gates? I have U of Chicago email, but haven't had any luck making contact. You can PM me. Thanks. Joan Joan Hawkins Professor, Cinema and Media Studies Media School Indiana University Franklin Hall Bloomington, IN 47405 phone 812-855

Re: [VOTE] Release CouchDB 3.2.0 (RC2 round)

2021-10-05 Thread Joan Touzet
e320344dc32290b064608baceb","features":["access-ready","partitioned","pluggable-storage-engines","reshard","scheduler"],"vendor":{"name":"The Apache Software Foundation"}} git_sha matches the last checkin b

Re: Debian 11 estable en poques hores

2021-10-03 Thread Joan Montané
e estàs valorant una > > situació que no es correspon a la que deia en Joan. > > Estic valorant la solució proposada, independentment de si s'ha aplicat > o no. Aquesta solució no soluciona el problema, perquè el problema > també afecta a altres programes, com ja havia a

OT: Missatges descojunturats a Protonmail

2021-10-02 Thread Joan
t ser, tinguem problemes :-) -- Joan Cervan i Andreu http://personal.calbasi.net "El meu paper no és transformar el món ni l'home sinó, potser, el de ser útil, des del meu lloc, als pocs valors sense els quals un món no val la pena viure'l" A. Camus i pels que teniu fe:

Re: Debian 11 estable en poques hores

2021-10-02 Thread Joan
r d'usar un USB, etc. > > No he pogut contestar fins avui perquè alguns correus de la llista > els havia retingut el filtre de spam de Tinet. espero que el remitent > ara estigui a la llista blanc. > > Gràcies per les respostes. Salut i codi lliure, > > >

Re: [VOTE] Release Apache CouchDB 3.2.0

2021-09-29 Thread Joan Touzet
On 29/09/2021 01:03, Nick Vatamaniuc wrote: > Thanks for checking, Joan. > > What version of Erlang was it? 20.3.8.25. > I recall we excluded erl_interface from rebar and enc (port compiler) > so we could compile on Erlang 23+, but I don't think we ever updated > th

Re: [VOTE] Release Apache CouchDB 3.2.0

2021-09-28 Thread Joan Touzet
1.2, no other changes. I don't have more time for this tonight, so I'll have to investigate tomorrow or later this week. -Joan On 28/09/2021 07:19, Juanjo Rodríguez wrote: > +1 > > Tested on Ubuntu 20.04, Erlang 22 and Elixir 1.9.1 > Signature: Ok > Checksums: Ok > Tests:

Re: [VOTE] Release Apache CouchDB 3.1.2

2021-09-28 Thread Joan Touzet
On 28/09/2021 10:53, Nick Vatamaniuc wrote: > Thanks for taking a look, Joan > > I just highlighted the docs in the email diff but the tarball should > contain the differences and they should match the differences between > the 3.1.1 and 3.1.2-RC1 tags in git. Got it. I missed the

[LincolnTalk] Screening of Traces of the Trade is at 7:00 (not 7:30 as in last title) on September 30

2021-09-28 Thread Joan Kimball
, the corrosive role of silence in contemporary conversations about race, issues of white privilege and guilt, and questions of response, repair, and reparations. For more information about the film, please visit http://www.tracesofthetrade.org/.” Joan Kimball for FPL's Racial Justice Advocat

[LincolnTalk] FPL invites you to a screening of Traces of the Trade Thursday, September 30 at 7:30

2021-09-28 Thread Joan Kimball
, the corrosive role of silence in contemporary conversations about race, issues of white privilege and guilt, and questions of response, repair, and reparations. For more information about the film, please visit http://www.tracesofthetrade.org/.” Joan Kimball for FPL's Racial Justice Advocates

Re: [VOTE] Release Apache CouchDB 3.1.2

2021-09-27 Thread Joan Touzet
Nick, that diff shows documentation only. Something seems wrong with this release. Recommend we hold the vote until this can be cleared up? -Joan On 27/09/2021 08:53, Nick Vatamaniuc wrote: > Dear community, > > I would like to propose that we release Apache CouchDB 3.1.2 > >

[LincolnTalk] Please join the First Parish Lincoln's Racial Justice Journey tomorrow at 7 P.M. for a screening

2021-09-22 Thread Joan Kimball
ing on the Calendar for September 23 and clicking on "After the Mayflower." --Joan Kimball for the FPL Racial Justice Journey *** "After the Mayflower" is the first episode of "We Sha

Re: Recordatori pel DLP

2021-09-17 Thread Joan
Juraria que si :-) Ara ho he vist: Espai Jove Bocanord Agudells, 37 Metro El Carmel -- Joan Cervan i Andreu http://personal.calbasi.net "El meu paper no és transformar el món ni l'home sinó, potser, el de ser útil, des del meu lloc, als pocs valors sense els quals un món no v

Re: privacitat / seguretat

2021-09-17 Thread Joan
hrome, tot i que també parlen bé de les versions degoogleades de Chrome, com podria ser aquesta). Em continua sobtant que no estigui per Debian (hi ha un repo antic per això: https://github.com/iridium-browser/iridium-browser-ubuntu ) -- Joan Cervan i Andreu http://personal.calbasi.net "El me

Re: privacitat / seguretat

2021-09-17 Thread Joan
Diria que això de l'Abrowser és una mica antic, i pel que veig és una mica lo d el'antic Iceweasel... Està fet per Trisquel (què és?): https://trisquel.info/es/wiki/abrowser-ayuda -- Joan Cervan i Andreu http://personal.calbasi.net "El meu paper no és transformar el món ni l&#x

Re: privacitat / seguretat

2021-09-17 Thread Joan
gueix el principi de «seguretat per defecte». > >> Deixa una mica que desitjar el predefinit de «convidar» a > >> registrar-se amb la central de Mozilla i d'enviar totes les > >> cerques i allò que tecleges a la barra d'adreces a l'empresa > >>

Fw: [caliu-info] Recordatori pel DLP

2021-09-17 Thread Joan
m dissabte. https://gitlab.com/caliu-cat/esdeveniments/-/wikis/Dia-de-la-Llibertat-del-Programari-2021 Ens hi veiem! Salut! Rafael Carreras https://mastodont.cat/@rcarreras [https://mastodont.cat/@caliu](https://mastodont.cat/@rcarreras) -- Joan Cervan i Andreu http://personal.calbasi.net "El

<    1   2   3   4   5   6   7   8   9   10   >