Home
last modified time | relevance | path

Searched refs:ftp (Results 1 – 115 of 115) sorted by relevance

/linux-4.1.27/drivers/s390/char/
Dhmcdrv_cache.c61 static ssize_t hmcdrv_cache_get(const struct hmcdrv_ftp_cmdspec *ftp) in hmcdrv_cache_get() argument
66 if ((ftp->id != hmcdrv_cache_file.id) || in hmcdrv_cache_get()
67 strcmp(hmcdrv_cache_file.fname, ftp->fname)) in hmcdrv_cache_get()
70 if (ftp->ofs >= hmcdrv_cache_file.fsize) /* EOF ? */ in hmcdrv_cache_get()
80 len = hmcdrv_cache_file.fsize - ftp->ofs; in hmcdrv_cache_get()
82 if (len > ftp->len) in hmcdrv_cache_get()
83 len = ftp->len; in hmcdrv_cache_get()
88 pos = ftp->ofs - hmcdrv_cache_file.ofs; in hmcdrv_cache_get()
93 memcpy(ftp->buf, in hmcdrv_cache_get()
113 static ssize_t hmcdrv_cache_do(const struct hmcdrv_ftp_cmdspec *ftp, in hmcdrv_cache_do() argument
[all …]
Dhmcdrv_ftp.c33 ssize_t (*transfer)(const struct hmcdrv_ftp_cmdspec *ftp,
38 static int hmcdrv_ftp_parse(char *cmd, struct hmcdrv_ftp_cmdspec *ftp);
111 static int hmcdrv_ftp_parse(char *cmd, struct hmcdrv_ftp_cmdspec *ftp) in hmcdrv_ftp_parse() argument
116 ftp->id = HMCDRV_FTP_NOOP; in hmcdrv_ftp_parse()
117 ftp->fname = NULL; in hmcdrv_ftp_parse()
133 ftp->id = hmcdrv_ftp_cmd_getid(start, cmd - start); in hmcdrv_ftp_parse()
138 ftp->fname = start; in hmcdrv_ftp_parse()
148 if (!ftp->fname || (ftp->id == HMCDRV_FTP_NOOP)) in hmcdrv_ftp_parse()
160 ssize_t hmcdrv_ftp_do(const struct hmcdrv_ftp_cmdspec *ftp) in hmcdrv_ftp_do() argument
168 ftp->id, ftp->fname, (long long) ftp->ofs, ftp->len); in hmcdrv_ftp_do()
[all …]
Dsclp_ftp.c57 diag->mdd.ftp.pcx != SCLP_DIAG_FTP_XPCX || in sclp_ftp_rxcb()
71 sclp_ftp_ldflg = diag->mdd.ftp.ldflg; in sclp_ftp_rxcb()
72 sclp_ftp_fsize = diag->mdd.ftp.fsize; in sclp_ftp_rxcb()
73 sclp_ftp_length = diag->mdd.ftp.length; in sclp_ftp_rxcb()
84 static int sclp_ftp_et7(const struct hmcdrv_ftp_cmdspec *ftp) in sclp_ftp_et7() argument
105 sccb->evbuf.mdd.ftp.pcx = SCLP_DIAG_FTP_XPCX; in sclp_ftp_et7()
106 sccb->evbuf.mdd.ftp.srcflg = 0; in sclp_ftp_et7()
107 sccb->evbuf.mdd.ftp.pgsize = 0; in sclp_ftp_et7()
108 sccb->evbuf.mdd.ftp.asce = _ASCE_REAL_SPACE; in sclp_ftp_et7()
109 sccb->evbuf.mdd.ftp.ldflg = SCLP_DIAG_FTP_LDFAIL; in sclp_ftp_et7()
[all …]
Ddiag_ftp.c139 ssize_t diag_ftp_cmd(const struct hmcdrv_ftp_cmdspec *ftp, size_t *fsize) in diag_ftp_cmd() argument
147 ftp->fname, ftp->len); in diag_ftp_cmd()
158 len = strlcpy(ldfpl->fident, ftp->fname, sizeof(ldfpl->fident)); in diag_ftp_cmd()
166 ldfpl->offset = ftp->ofs; in diag_ftp_cmd()
167 ldfpl->buflen = ftp->len; in diag_ftp_cmd()
168 ldfpl->bufaddr = virt_to_phys(ftp->buf); in diag_ftp_cmd()
170 len = diag_ftp_2c4(ldfpl, ftp->id); in diag_ftp_cmd()
Dhmcdrv_cache.h16 typedef ssize_t (*hmcdrv_cache_ftpfunc)(const struct hmcdrv_ftp_cmdspec *ftp,
19 ssize_t hmcdrv_cache_cmd(const struct hmcdrv_ftp_cmdspec *ftp,
Ddiag_ftp.h19 ssize_t diag_ftp_cmd(const struct hmcdrv_ftp_cmdspec *ftp, size_t *fsize);
Dsclp_ftp.h19 ssize_t sclp_ftp_cmd(const struct hmcdrv_ftp_cmdspec *ftp, size_t *fsize);
Dhmcdrv_ftp.h59 ssize_t hmcdrv_ftp_do(const struct hmcdrv_ftp_cmdspec *ftp);
Dsclp_diag.h74 struct sclp_diag_ftp ftp; member
/linux-4.1.27/net/netfilter/
Dnf_conntrack_ftp.c562 struct nf_ct_ftp_master *ftp = nfct_help_data(ct); in nf_ct_ftp_from_nlattr() local
568 ftp->flags[IP_CT_DIR_ORIGINAL] |= NF_CT_FTP_SEQ_PICKUP; in nf_ct_ftp_from_nlattr()
569 ftp->flags[IP_CT_DIR_REPLY] |= NF_CT_FTP_SEQ_PICKUP; in nf_ct_ftp_from_nlattr()
573 static struct nf_conntrack_helper ftp[MAX_PORTS][2] __read_mostly; variable
586 if (ftp[i][j].me == NULL) in nf_conntrack_ftp_fini()
591 ftp[i][j].tuple.src.l3num, ports[i]); in nf_conntrack_ftp_fini()
592 nf_conntrack_helper_unregister(&ftp[i][j]); in nf_conntrack_ftp_fini()
613 ftp[i][0].tuple.src.l3num = PF_INET; in nf_conntrack_ftp_init()
614 ftp[i][1].tuple.src.l3num = PF_INET6; in nf_conntrack_ftp_init()
616 ftp[i][j].data_len = sizeof(struct nf_ct_ftp_master); in nf_conntrack_ftp_init()
[all …]
/linux-4.1.27/Documentation/
DChanges288 o <ftp://ftp.gnu.org/gnu/gcc/>
292 o <ftp://ftp.gnu.org/gnu/make/>
296 o <ftp://ftp.kernel.org/pub/linux/devel/binutils/>
303 o <ftp://ftp.kernel.org/pub/linux/utils/util-linux/>
307 o <ftp://ftp.kernel.org/pub/linux/utils/kernel/ksymoops/v2.4/>
311 o <ftp://ftp.kernel.org/pub/linux/kernel/people/rusty/modules/>
331 o <ftp://oss.sgi.com/projects/xfs/>
335 o <ftp://ftp.kernel.org/pub/linux/utils/kernel/pcmcia/>
370 o <ftp://ftp.samba.org/pub/ppp/>
374 o <ftp://ftp.isdn4linux.de/pub/isdn4linux/utils/>
Dapplying-patches.txt220 ftp://ftp.kernel.org/pub/linux/kernel/v2.6/
223 ftp://ftp.kernel.org/pub/linux/kernel/v2.6/testing/
226 ftp://ftp.kernel.org/pub/linux/kernel/v2.6/snapshots/
229 ftp://ftp.kernel.org/pub/linux/kernel/people/akpm/patches/2.6/
231 In place of ftp.kernel.org you can use ftp.cc.kernel.org, where cc is a
286 ftp://ftp.kernel.org/pub/linux/kernel/v2.6/incr/
Dkernel-docs.txt221 ftp://ftp.llp.fu-berlin.de/pub/linux/LINUX-LAB/whitepapers/pcip.ps.gz
231 ftp://ftp.llp.fu-berlin.de/pub/linux/LINUX-LAB/whitepapers/drivers.ps.gz
261 ftp://ftp.uk.linux.org/pub/linux/sct/fs/jfs/journal-design.ps.gz
485 URL: http://pcmcia-cs.sourceforge.net/ftp/doc/PCMCIA-PROG.html
Dsvga.txt193 ftp://ftp.phys.keio.ac.jp/pub/XFree86/800x600/XF86Configs/XF86Config.IBM_TP560).
DSubmittingDrivers130 ftp.??.kernel.org:/pub/linux/kernel/...
Dcrc32.txt131 ftp://download.intel.com/technology/comms/perfnet/download/slicing-by-8.pdf
Djava.txt14 ftp://sunsite.unc.edu/pub/Linux/docs/HOWTO/Java-HOWTO
Ddevices.txt14 ftp://ftp.kernel.org/pub/linux/docs/device-list/. This version may be
2614 See ftp://ftp.lustre.org/pub/obd for code and information.
Dkernel-parameters.txt2898 ports= [IP_VS_FTP] IPVS ftp helper module
/linux-4.1.27/Documentation/serial/
DREADME.cycladesZ7 ftp://ftp.cyclades.com/pub/cyclades/cyclades-z/linux/
Dn_gsm.txt6 http://www.3gpp.org/ftp/Specs/archive/07_series/07.10/0710-720.zip
Drocket.txt185 FTP: ftp.comtrol.com
Dmoxa-smartio136 The driver file may be obtained from ftp, CD-ROM or floppy disk. The
/linux-4.1.27/net/ipx/
DKconfig12 <ftp://platan.vc.cvut.cz/pub/linux/ncpfs/>) or from
23 <ftp://ibiblio.org/pub/Linux/system/network/daemons/> or
24 mars_nwe from <ftp://www.compu-art.de/mars_nwe/>. For more
57 can be found on <ftp://ftp.gwdg.de/pub/linux/misc/ncpfs/>.
/linux-4.1.27/scripts/ksymoops/
DREADME4 ftp://ftp.<country>.kernel.org/pub/linux/utils/kernel/ksymoops together
/linux-4.1.27/Documentation/filesystems/
Dncpfs.txt6 ftp.gwdg.de/pub/linux/misc/ncpfs, but sunsite and its many mirrors
12 mars_nwe can be found on ftp.gwdg.de/pub/linux/misc/ncpfs.
Disofs.txt45 ftp://ftp.ecma.ch/ecma-st/Ecma-119.pdf
Dext2.txt372 Journaling (ext3) ftp://ftp.uk.linux.org/pub/linux/sct/fs/jfs/
379 DOS client (*) ftp://metalab.unc.edu/pub/Linux/system/filesystems/ext2/
380 OS/2 (+) ftp://metalab.unc.edu/pub/Linux/system/filesystems/ext2/
Dext4.txt28 ftp://ftp.kernel.org/pub/linux/kernel/people/tytso/e2fsprogs/
Dcoda.txt8 ftp://ftp.coda.cs.cmu.edu
/linux-4.1.27/fs/sysv/
DKconfig15 available via FTP (user: ftp) from
16 <ftp://ftp.openlinux.org/pub/people/hch/linux-abi/>).
/linux-4.1.27/Documentation/ABI/testing/
Ddebugfs-ec13 ftp://ftp.suse.com/pub/people/trenn/sources/ec/
/linux-4.1.27/Documentation/networking/
Dsmc9.txt36 ftp://fenris.campus.vt.edu/smc9/smc9-12.tar.gz
37 ftp://sfbox.vt.edu/filebox/F/fenris/smc9/smc9-12.tar.gz
Dpktgen.txt312 ftp://robur.slu.se/pub/Linux/net-development/pktgen-testing/
313 ftp://robur.slu.se/pub/Linux/net-development/pktgen-testing/examples/
316 ftp://robur.slu.se/pub/Linux/net-development/pktgen-testing/pktgen_paper.pdf
Dframerelay.txt35 the net-tools distribution. They can be found at ftp.invlogic.com, in
Digbvf.txt65 http://ftp.kernel.org/pub/software/network/ethtool/
Dipddp.txt48 ftp.u.washington.edu/pub/user-supported/asun/) this patch is optional
Dz8530drv.txt7 1. ftp://ftp.ccac.rwth-aachen.de/pub/jr/z8530drv-utils_3.0-3.tar.gz
9 2. ftp://ftp.pspt.fi/pub/ham/linux/ax25/z8530drv-utils_3.0-3.tar.gz
Digb.txt66 http://ftp.kernel.org/pub/software/network/ethtool/
Deql.txt54 ftp://slaughter.ncm.com/pub/Linux/LOAD_BALANCING/eql-1.1.tar.gz.
363 Once a link was established, I timed a binary ftp transfer of
Dray_cs.txt131 linux. If you want to watch ftp xfers, or do similar things, you
Ddecnet.txt143 at the ftp archive.
159 which can be obtained from the above ftp sites as well as the
Diphase.txt158 Anonymous FTP: ftp.iphase.com
Darcnet.txt92 http://www.perftech.com/ or ftp to ftp.perftech.com.
95 FTPing to ftp.novell.com.
294 ftp.microsoft.com also has a freeware "Lan Manager for OS/2" client
Dvortex.txt306 ftp://ftp.3com.com/pub/nic/3c90x/3c90xx2.exe
De100.txt133 http://ftp.kernel.org/pub/software/network/ethtool/
D6pack.txt48 At the moment, the 6pack stuff can obtained via anonymous ftp from
De1000e.txt277 http://ftp.kernel.org/pub/software/network/ethtool/
Dcxgb.txt317 If you are just running user-space applications such as ftp, telnet,
Dixgbe.txt275 http://ftp.kernel.org/pub/software/network/ethtool/
Dixgb.txt316 http://ftp.kernel.org/pub/software/network/ethtool/
De1000.txt438 http://ftp.kernel.org/pub/software/network/ethtool/
/linux-4.1.27/fs/autofs4/
DKconfig10 <ftp://ftp.kernel.org/pub/linux/daemons/autofs/v4/>; you also
/linux-4.1.27/Documentation/isdn/
DREADME.avmb111 t4-files can be found at ftp://ftp.avm.de/cardware/b1/linux/firmware
172 Check out the FAQ (ftp.isdn4linux.de) or subscribe to the
179 ftp://ftp.avm.de/cardware/b1/linux/
DREADME.pcbit15 ftp://ftp.di.fc.ul.pt/pub/systems/Linux/isdn
DREADME.x25144 ftp://ftp.hes.iki.fi/pub/ham/linux/ax25/x25utils-*
173 ftp://ftp.hamburg.pop.de/pub/LOCAL/linux/i4l-eft/ which contains some
DREADME.sc101 ftp://sunsite.unc.edu/pub/Linux/kernel/v2.0/
104 ftp://sunsite.unc.edu/pub/Linux/kernel/modules-2.0.0.tar.gz
107 ftp://ftp.franken.de/pub/isdn4linux/v2.0/isdn4k-utils-2.0.tar.gz
110 ftp://ftp.spellcast.com/pub/drivers/isdn4linux/isdn4k-bin-2.0.tar.gz
DREADME14 ftp.isdn4linux.de
41 ftp://ftp.isdn4linux.de/pub/isdn4linux/FAQ/
/linux-4.1.27/Documentation/cpu-freq/
Dindex.txt45 * ftp://ftp.linux.org.uk/pub/linux/cpufreq/
/linux-4.1.27/net/decnet/
DKconfig38 from <ftp://ftp.tux.org/pub/net/ip-routing/>). The "Network packet
/linux-4.1.27/Documentation/arm/SA1100/
DAssabet54 ftp://ftp.netwinder.org/users/n/nico/
55 ftp://ftp.arm.linux.org.uk/pub/linux/arm/people/nico/
56 ftp://ftp.handhelds.org/pub/linux/arm/sa-1100-patches/
DBrutus55 ftp.netwinder.org/users/n/nico.
/linux-4.1.27/arch/ia64/
DMakefile41 ftp://ftp.hpl.hp.com/pub/linux-ia64/gas-030124.tar.gz)
/linux-4.1.27/scripts/package/
Dbuilddeb244 The sources may be found at most Linux ftp sites, including:
245 ftp://ftp.kernel.org/pub/linux/kernel
/linux-4.1.27/drivers/net/slip/
DKconfig21 <ftp://ibiblio.org/pub/Linux/system/network/serial/>) which
54 <ftp://ibiblio.org/pub/Linux/system/network/serial/>) which
/linux-4.1.27/Documentation/scsi/
Dosd.txt12 See: http://www.t10.org/ftp/t10/drafts/osd2/ for the latest draft for OSD 2
193 http://www.t10.org/ftp/t10/drafts/osd/osd-r10.pdf
197 http://www.t10.org/ftp/t10/drafts/osd2/osd2r03.pdf
Dncr53c8xx.txt114 SCSI standard documentations are available at SYMBIOS ftp server:
116 ftp://ftp.symbios.com/
120 ftp://tsx-11.mit.edu/pub/linux/ALPHA/scsi/scsiinfo-X.Y.tar.gz
121 ftp://tsx-11.mit.edu/pub/linux/ALPHA/scsi/scsidev-X.Y.tar.gz
134 ftp://ftp.tux.org/pub/people/gerard-roudier
136 ftp://ftp.symbios.com/mirror/ftp.tux.org/pub/tux/roudier/drivers
245 at respective vendor web/ftp sites.
1151 ftp://ftp.tux.org/pub/people/gerard-roudier/README
Dtmscsim.txt102 ftp://student.physik.uni-dortmund.de/pub/linux/kernel/bootdisk.gz
414 ftp://ftp.suse.com/pub/people/garloff/linux/dc390/
Dlibsas.txt338 ftp://mama.indstate.edu/linux/tree/
Dst.txt296 (look for a package mt-st* from the Linux ftp sites; the GNU mt does
Dsym53c8xx_2.txt211 at respective vendor web/ftp sites.
/linux-4.1.27/Documentation/filesystems/cifs/
Dcifs.txt25 https://ftp.samba.org/pub/linux-cifs/cifs-utils/
/linux-4.1.27/Documentation/power/
Dapm-acpi.txt31 apmd: http://ftp.debian.org/pool/main/a/apmd/
/linux-4.1.27/Documentation/zh_CN/
DSubmittingDrivers136 ftp.??.kernel.org:/pub/linux/kernel/...
DHOWTO322 ftp.firstfloor.org:/pub/ak/x86_64/quilt/
/linux-4.1.27/Documentation/early-userspace/
DREADME89 ftp://ftp.kernel.org/pub/linux/libs/klibc/
/linux-4.1.27/Documentation/arm/
DREADME4 Please check <ftp://ftp.arm.linux.org.uk/pub/armlinux> for
/linux-4.1.27/Documentation/acpi/
Dinitrd_table_override.txt91 ftp://kernel.org/pub/linux/kernel/people/lenb/acpi/utils/pmtools/acpidump
/linux-4.1.27/Documentation/filesystems/nfs/
Dnfs-rdma.txt116 ftp://ftp.kernel.org/pub/linux/kernel/v2.6/
/linux-4.1.27/Documentation/sound/alsa/
DHD-Audio.txt667 - ftp://ftp.suse.com/pub/people/tiwai/snapshot/
771 Also, the old stand-alone package is found in the ftp directory:
773 - ftp://ftp.suse.com/pub/people/tiwai/misc/
841 - ftp://ftp.suse.com/pub/people/tiwai/misc/
DSB-Live-mixer.txt310 ftp://opensource.creative.com/pub/doc
DAudigy-mixer.txt299 ftp://opensource.creative.com/pub/doc
/linux-4.1.27/drivers/video/console/
DKconfig21 <ftp://ibiblio.org/pub/Linux/utils/console/>.
/linux-4.1.27/Documentation/vm/
Dactive_mm.txt76 Anyway, I put a pre-patch-2.3.13-1 on ftp.kernel.org just a moment ago,
Dpage_migration21 ftp://oss.sgi.com/www/projects/libnuma/download/). numactl provides libnuma
/linux-4.1.27/fs/fat/
DKconfig44 <ftp://ibiblio.org/pub/Linux/system/filesystems/dosfs/>. If you
/linux-4.1.27/Documentation/fb/
Dframebuffer.txt327 ftp://ftp.uni-erlangen.de/pub/Linux/LOCAL/680x0/
/linux-4.1.27/
D.mailmap17 Al Viro <viro@ftp.linux.org.uk>
DREADME358 ftp://ftp.<country>.kernel.org/pub/linux/utils/kernel/ksymoops/ .
DCREDITS3583 D: Maintainer of tsx-11.mit.edu ftp archive
3726 E: volkerdi@ftp.cdrom.com
3871 W: ftp://ftp.uk.linux.org/pub/linux/people/willy/
DMAINTAINERS4210 W: ftp://ftp.openlinux.org/pub/people/hch/vxfs
7390 W: ftp://ftp.redhat.com/pub/redhat/gnupro/AM33/
7849 W: ftp://ftp.kernel.org/pub/linux/kernel/people/rml/preempt-kernel
/linux-4.1.27/Documentation/cris/
DREADME78 At the end you see some user-mode programs booting like telnet and ftp daemons.
/linux-4.1.27/arch/m68k/q40/
DREADME6 available from this place or http://ftp.uni-erlangen.de/pub/unix/Linux/680x0/q40/
/linux-4.1.27/Documentation/video4linux/bttv/
DSound-FAQ83 from ftp://telepresence.dmem.strath.ac.uk/pub/bt848/winutil, but it
/linux-4.1.27/Documentation/ioctl/
Dioctl-number.txt86 <ftp://ftp.de.kernel.org/pub/linux/daemons/ntp/PPS/>
/linux-4.1.27/drivers/net/wan/
DKconfig82 It is available at <ftp://ftp.lanmedia.com/> (broken link).
/linux-4.1.27/drivers/atm/
DKconfig319 <ftp://ftp.iphase.com/pub/atm/pci/>).
/linux-4.1.27/drivers/block/paride/
DKconfig89 <ftp://ftp.berlios.de/pub/cdrecord/>. Versions 1.6.1a3 and
/linux-4.1.27/net/ipv4/
DKconfig75 and <ftp://post.tepkom.ru/pub/vol2/Linux/docs/advanced-routing.tex>.
77 <ftp://ftp.tux.org/pub/net/ip-routing/>.
/linux-4.1.27/drivers/md/
DKconfig118 ftp://ftp.kernel.org/pub/linux/utils/raid/mdadm/
/linux-4.1.27/Documentation/blockdev/
Dparide.txt317 from ftp://ftp.fokus.gmd.de/pub/unix/cdrecord/ . To record CD-R media
Dfloppy.txt223 ftp://metalab.unc.edu/pub/Linux/utils/disk-management/
/linux-4.1.27/drivers/block/
DKconfig230 <ftp://ftp.kernel.org/pub/linux/utils/util-linux/>.
/linux-4.1.27/firmware/
DWHENCE251 Found in hex form in ftp://ftp.multitech.com/wireless/wireless_linux.zip
/linux-4.1.27/net/netfilter/ipvs/
DKconfig269 clients in ftp connections directly, so FTP protocol helper is
/linux-4.1.27/Documentation/sound/oss/
DREADME.OSS372 of such a tool available from ftp://ftp.demon.co.uk/pub/unix/linux/utils. The
555 can use the public domain MIDIA patchset available from several ftp
1147 and install the DOS/Windows driver from ftp://ftp.ensoniq.com/pub.
/linux-4.1.27/Documentation/virtual/uml/
DUserModeLinux-HOWTO.txt232 ftp://ftp.ca.kernel.org/pub/kernel/v2.4/linux-2.4.0-prerelease.tar.bz2
233 <ftp://ftp.ca.kernel.org/pub/kernel/v2.4/linux-2.4.0-prerelease.tar.bz2>
339 You can install them by using ftp or something to copy them into the
4567 Rik van Riel gave me some ftp space on ftp.nl.linux.org so I can make
/linux-4.1.27/arch/mips/
DKconfig2766 <ftp://ftp.hp.com/pub/alphaserver/archive/triadd/>
2768 <http://www.computer-refuge.org/classiccmp/ftp.digital.com/pub/DEC/TriAdd/>
/linux-4.1.27/Documentation/cdrom/
Dide-cd143 The hpcdtoppm package (ftp.gwdg.de:/pub/linux/hpcdtoppm/) may be
/linux-4.1.27/Documentation/laptops/
Dthinkpad-acpi.txt916 ftp://ftp.suse.com/pub/people/trenn/sources/ec
/linux-4.1.27/Documentation/RCU/
DRTFP.txt1276 \url{ftp://ftp.cs.toronto.edu/csrg-technical-reports/515/}
/linux-4.1.27/drivers/video/fbdev/
DKconfig1266 (available at <ftp://platan.vc.cvut.cz/pub/linux/matrox-latest/>) to
1317 <ftp://platan.vc.cvut.cz/pub/linux/matrox-latest/>) to switch it to
/linux-4.1.27/drivers/watchdog/
DKconfig23 <ftp://ibiblio.org/pub/Linux/system/daemons/watchdog/>. This daemon can
/linux-4.1.27/Documentation/s390/
DDebugging390.txt1494 of another VM guest so he can ftp the logfile back to his own machine. I'll do
/linux-4.1.27/drivers/staging/speakup/
Dspkguide.txt712 dec_pc.tgz file is in the ~ftp/pub/linux/speakup directory.