search for: mountinfo

Displaying 20 results from an estimated 50 matches for "mountinfo".

2014 Jan 15
3
extlinux device trouble
...t; On Tue, Jan 14, 2014 at 9:28 AM, Johann Obermayr > <johann.obermayr at sigmatek.at> wrote: >> Hello, >> >> i'm using version 4.07. >> On my computer extlinux does not work. >> after debugging, i found the trouble. >> >> in the function parse_mountinfo there was using a function get_string. >> in the function get_string there was a line (42) } else if (ch == '\\') { >> but in my mountinfo list, there was \ , but not with octal digit. >> so the function get_string will fail. >> >> here are some information &gt...
2004 Aug 06
2
Stream metadata settings
On Mon, 2003-12-01 at 08:28, Melanie wrote: > > diff -b -B -r -u -P --exclude-from=ignore ../icecast/src/source.c > ./src/source.c > --- ../icecast/src/source.c Fri Nov 14 17:51:59 2003 > +++ ./src/source.c Mon Dec 1 09:14:34 2003 > @@ -139,7 +192,6 @@ > #endif > > free(source->mount); > - free(source->fallback_mount); >
2013 Oct 14
0
mountinfo discrepancy, subvol vs subvolid
When mounting a subvolume by name, mountinfo shows the name of the subvolume. When mounting a subvolume using subvolid it does not. Seems like a problem when trying to determine what is mounted. -o subvol=<name> # cat /proc/self/mountinfo | grep vda 43 34 0:29 /home /home rw,relatime shared:29 - btrfs /dev/vda1 rw,seclabel,space_cach...
2004 Aug 06
1
Stream metadata settings
...'s just as simple: > > diff -b -B -r -u -P --exclude-from=ignore ../icecast/src/source.c > ./src/source.c--- ../icecast/src/source.c Mon Dec 1 14:49:52 2003 > +++ ./src/source.c Mon Dec 1 14:50:56 2003 > @@ -72,7 +72,7 @@ > src->yp_public = 0; > > if(mountinfo != NULL) { > - src->fallback_mount = mountinfo->fallback_mount; > + src->fallback_mount = (char *)strdup(mountinfo->fallback_mount); > src->max_listeners = mountinfo->max_listeners; > src->dumpfilename = mountinfo->dumpfile; >...
2012 Jun 20
0
R: Re: Subvolumes and /proc/self/mountinfo
HI all, >----Messaggio originale---- >Da: chris.mason@fusionio.com >Data: 20/06/2012 1.49 >A: "H. Peter Anvin"<hpa@zytor.com> >Cc: "linux-btrfs@vger.kernel.org"<linux-btrfs@vger.kernel.org> >Ogg: Re: Subvolumes and /proc/self/mountinfo > >> b. Are there better ways (walking the tree using BTRFS_IOC_TREE_SEARCH?) >> to accomplish this than using /proc/self/mountinfo? > >Not yet, but I''m definitely open to adding them. Lets just hash out >what you need and we''ll either go through Kay'...
2014 Jan 15
1
extlinux device trouble
...ayr at sigmatek.at> wrote: >>>> >>>> Hello, >>>> >>>> i'm using version 4.07. >>>> On my computer extlinux does not work. >>>> after debugging, i found the trouble. >>>> >>>> in the function parse_mountinfo there was using a function get_string. >>>> in the function get_string there was a line (42) } else if (ch == '\\') >>>> { >>>> but in my mountinfo list, there was \ , but not with octal digit. >>>> so the function get_string will fail. >&g...
2004 Aug 06
2
[patch] time stamps in dump file names
...dump file names: diff -ur icecast-2.0.1/src/source.c icecast-2.0.1.scram/src/source.c --- icecast-2.0.1/src/source.c Wed May 12 17:55:30 2004 +++ icecast-2.0.1.scram/src/source.c Wed Jun 2 23:17:29 2004 @@ -50,6 +50,16 @@ http_parser_t *parser, const char *mount, format_type_t type, mount_proxy *mountinfo) { + char buffer[PATH_MAX]; + time_t curtime; + struct tm *loctime; + + /* Get the current time. */ + curtime = time (NULL); + + /* Convert it to local time representation. */ + loctime = localtime (&curtime); + source_t *src; src = (source_t *)malloc(sizeof(source_t)); @@...
2004 Aug 06
2
[patch] time stamps in dump file names
...dump file names: diff -ur icecast-2.0.1/src/source.c icecast-2.0.1.scram/src/source.c --- icecast-2.0.1/src/source.c Wed May 12 17:55:30 2004 +++ icecast-2.0.1.scram/src/source.c Wed Jun 2 23:17:29 2004 @@ -50,6 +50,16 @@ http_parser_t *parser, const char *mount, format_type_t type, mount_proxy *mountinfo) { + char buffer[PATH_MAX]; + time_t curtime; + struct tm *loctime; + + /* Get the current time. */ + curtime = time (NULL); + + /* Convert it to local time representation. */ + loctime = localtime (&curtime); + source_t *src; src = (source_t *)malloc(sizeof(source_t)); @@...
2014 Jan 14
2
extlinux device trouble
Hello, i'm using version 4.07. On my computer extlinux does not work. after debugging, i found the trouble. in the function parse_mountinfo there was using a function get_string. in the function get_string there was a line (42) } else if (ch == '\\') { but in my mountinfo list, there was \ , but not with octal digit. so the function get_string will fail. here are some information ### fstab ### #Mount Build environment //10.30....
2004 Aug 06
0
Stream metadata settings
...case, another fix ist called for, but it's just as simple: diff -b -B -r -u -P --exclude-from=ignore ../icecast/src/source.c ./src/source.c--- ../icecast/src/source.c Mon Dec 1 14:49:52 2003 +++ ./src/source.c Mon Dec 1 14:50:56 2003 @@ -72,7 +72,7 @@ src->yp_public = 0; if(mountinfo != NULL) { - src->fallback_mount = mountinfo->fallback_mount; + src->fallback_mount = (char *)strdup(mountinfo->fallback_mount); src->max_listeners = mountinfo->max_listeners; src->dumpfilename = mountinfo->dumpfile; } Melanie <p&...
2016 Aug 19
3
dovecot-lda core-dumps when antispam pipe script calls it
On 2016-08-19 12:17, ben at indietorrent.org wrote: > Aha! Clearly, the vmail user cannot read from nor write to /tmp. (Why > that is, I have no idea, as the /tmp directory's permissions certainly > allow for both; maybe Dovecot implements this as a security measure.) > > This prompted me to change all references to /tmp in the pipe script > to ~/tmp, and create this
2004 Aug 06
1
Funky password mount point error for liveice and ic ecast - PLZ HL P!
...le to most icecast2 source code. > > You will need to compile source code to make a working icecast server > > Bypass hack lines | Original source > lines > -------------------- | > --------------------- > //if(mountinfo->username) | > if(mountinfo->username) > mountinfo->username = "source"; | > user > = mountinfo->username > ; > user = "source&qu...
2004 Aug 06
0
Icecast 2 hack for 'older' client streams
...eference the hacked version is from CVS as of Jan 24 2004, though this should be applicable to most icecast2 source code. You will need to compile source code to make a working icecast server Bypass hack lines | Original source lines -------------------- | --------------------- //if(mountinfo->username) | if(mountinfo->username) mountinfo->username = "source"; | user = mountinfo->username ; user = "source" ;...
2014 Jan 15
0
extlinux device trouble
...AM, Johann Obermayr >> <johann.obermayr at sigmatek.at> wrote: >>> Hello, >>> >>> i'm using version 4.07. >>> On my computer extlinux does not work. >>> after debugging, i found the trouble. >>> >>> in the function parse_mountinfo there was using a function get_string. >>> in the function get_string there was a line (42) } else if (ch == '\\') { >>> but in my mountinfo list, there was \ , but not with octal digit. >>> so the function get_string will fail. >>> >>> here are...
2004 Aug 06
0
[PATCH] Add per-listener and per-mount connection time limits.
...um_yp_directories = 0; src->listeners = 0; src->max_listeners = -1; + src->max_listener_time = 0; src->send_return = 0; src->dumpfilename = NULL; src->dumpfile = NULL; *************** *** 77,82 **** --- 78,85 ---- src->max_listeners = mountinfo->max_listeners; if (mountinfo->dumpfile != NULL) src->dumpfilename = strdup (mountinfo->dumpfile); + if (mountinfo->max_listener_time != NULL) + src->max_listener_time = mountinfo->max_listener_time; } if(src->dumpfi...
2012 Dec 11
2
Adding additional mount info to xsl stylesheet
...er, "user-agent"); + stats_event_args (source->mount, "user-agent", "%s", user_agent); DEBUG0("Source creation complete"); source->last_read = time (NULL); @@ -947,6 +951,8 @@ static void source_apply_mount (source_t *source, mount_proxy *mountinfo) source->max_listeners = mountinfo->max_listeners; source->fallback_override = mountinfo->fallback_override; source->hidden = mountinfo->hidden; + source->max_listener_duration = mountinfo->max_listener_duration; + source->user_agent = httpp_get...
2004 Aug 06
2
Source not found for client
I'm running icecast and ices that I got out of CVS last night. I'm attempting to set up a live stream from /dev/dsp to /live.ogg. I've basically tweaked the icecast.xml and ices-live.xml to do this. Things seem to start up fine, and I get this in the icecast error log: [2003-02-19 21:58:11] INFO connection/_handle_source_request Source logging in at mountpoint
2004 Aug 06
2
Funky password mount point error for liveice and ic ecast - PLZ HL P!
OH MAN THANK YOU!!! I have been pulling my hair trying to get this $hit to work for weeks now. What other DSPs do you recommend instead of LiveIce? Either that or when do you expect the patch to be released? Thank you so much!!! DK > -----Original Message----- > From: Michael Smith [mailto:msmith@xiph.org] > Sent: Wednesday, February 18, 2004 4:35 PM > To: icecast@xiph.org >
2004 Aug 06
7
Stream metadata settings
> IMHO, a system like Icecast should be made so highly configurable that it > would fit everyone's needs, but I get the impression that only the needs of > the principal developers are of interest here. It makes me sad to see this, > Icecast could be great instead of just being good. > Melanie, As one of the 'principal developers', I don't think this is fair. Of
2014 Jan 15
0
extlinux device trouble
On Tue, Jan 14, 2014 at 9:28 AM, Johann Obermayr <johann.obermayr at sigmatek.at> wrote: > Hello, > > i'm using version 4.07. > On my computer extlinux does not work. > after debugging, i found the trouble. > > in the function parse_mountinfo there was using a function get_string. > in the function get_string there was a line (42) } else if (ch == '\\') { > but in my mountinfo list, there was \ , but not with octal digit. > so the function get_string will fail. > > here are some information > ### fstab ### >...