The Design of a Flash-based Linux Swap System. Yeonseung Ryu Myongji University October, 2008

Size: px
Start display at page:

Download "The Design of a Flash-based Linux Swap System. Yeonseung Ryu Myongji University October, 2008"

Transcription

1 The Desig f a Flash-based Liux Swap System Yeseug Ryu Mygji Uiversity Octber, 2008

2 Ctets Overview f liux Swap System Hw des the swap system perates? What are the prblems f flash based swap system? New Swap System Segmet-based swap space maagemet ad fast start-up Blck-aliged read-ahead swap-i scheme Perfrmace evaluati 2

3 Itrducti All mder geeral-purpse OS use virtual memry techiques. Mst f virtual memry implemetatis divide the virtual address space f a applicati prgram it pages; Page size is usually 4KB i liux. Whe a applicati executes, its ctets (cde ad data) are laded demad it page frames f mai memry. The stack ad heap f the prcess are created i the mai memry demad. 3

4 Itrducti Whe the free memry is almst used up, the Liux kerel perfrms page frame reclaimig. Page frame reclaimig prcedure picks up victim page frames ad makes them free. If a victim page frame is mapped t a prti f a disk file ad the page is dirty, the kerel writes the ctet f the page frame t the crrespdig disk file. If a victim page frame is t mapped t a disk file like stack ad heap (it is called as aymus pages), the kerel saves the page ctets i a dedicated disk partiti (r a disk file) called swap area. 4

5 Liux Swap System task pgd page table pte swap ut ivalid slt Swap slt swap i RAM Swap Area (file r partiti) A swap area csists f a sequece f swap slts: 4KB blcks used t ctai a swapped-ut page. Whe a aymus page is selected fr page reclamati, it is swapped ut t the swap area. Swap-i perati ccurs whe a prcess attempts t address a page that has bee swapped ut. Whe a page is swapped-i frm swap area t mai memry, we call its slt ivalid slt. 5

6 Swap-ut Liux swap system has bee ptimized t reduce disk seek time. I rder t miimize disk seek time, the kerel tries t stre swap-ut pages i ctiguus slts ad thus allcates slts frm the last allcated slt. This simple apprach, hwever, ca icrease the average seek time durig swap-i peratis because may ccupied swap slts may be scattered far away frm e ather. 6

7 Swap-ut I rder t address this prblem liux kerel restarts allcati frm the begiig f the swap area wheever 256 free slts were allcated after the last restart frm the begiig f the swap area. S, kerel uses slts agai that became free due t swap-i requests. Hwever, whe flash memry is used as swap device, reusig these free slts requires erase peratis. Mrever, sice flash memry des t require seek perati, kerel des t eed t restart allcati frm the begiig f the swap area. 7

8 Swap-i A swap-i perati tries t read ctiguus eight pages icludig the requested e. Why read-ahead? Lcality prperty : eighbr pages ted t be accessed s. Seek time: sme csecutive pages are read at a time. Whe flash memry is used as swap device, hwever, swap-i perati with read-ahead ca ivalidate the swap slts that lie ver tw erase blcks. I rder t reuse these eight slts t stre swapped-ut pages, we eed tw blck erase peratis. Liux swap-i 8

9 New swap system Csideratis Fast start-up Miimizig garbage cllecti cst Wear-levelig 9

10 fast start-up? Whe the system is bted, kerel eeds t clea etire swap space sice the previus data i the swap area are bslete. This cleaig perati makes system start-up time lger.. Wrst cleaig time vs. swap area size blck size: 128KB blck erase time: 1.5ms erase time (ms) secds 512M 1G 1.5G 2G swap area size 10

11 Swap space maagemet Patet: Segmet based swap space maagemet, Octber, 2008 Swap space is divided it segmets. Swap area (Flash memry), slt erase blck segmet 11

12 Segmet-based swap space maagemet Each segmet csists f a set f erase blcks. Each segmet has a segmet header which ctais segmet status (used/free) ad erasure cuter. A segmet is a uit f erase. That is, all the blcks i a segmet are erased tgether at a time. Whe the segmet is erased, segmet status becmes free ad erasure cuter is icreased by 1. 12

13 Segmet-based swap space maagemet Durig the start-up, kerel scas all segmet headers ad cstructs data structure abut segmets i the RAM. After cstructig segmet data structure, kerel determies the umber f segmets which must be erased by start-up prcedure. If there is a give limit f start-up time, start-up prcedure ca clea ly a few segmets. Legth f start-up time vs. amut f free swap space If the kerel des t clea all ivalid segmets, remaiig ivalid segmets will be erased by garbage cllecti prcess afterwards. This space maagemet scheme ca limit start-up time. 13

14 Segmet-based swap space maagemet We are studyig... Segmet size Start-up time limit Hw may segmets are erased by start-up prcedure Garbage cllecti algrithm Wear-levelig etc 14

15 Blck-aliged read-ahead swap-i Patet: Read-ahead swap-i methd csiderig flash memry erasure blck, May Liux swap-i Blck-aliged swap-i Prpsed scheme reads ahead pages that lie i the same blck. We eed ly e erase perati t reuse swapped-i slts. By reducig the umber f ivalid blcks t be erased, we ca decrease the garbage cllecti (GC) cst. 15

16 Aalysis f Liux swap I/O traces I rder t evaluate perfrmace, we cllected sme swap I/O traces frm liux kerel. Mst f all, we wat t kw the swap-i behaviur. S, we tured ff read-ahead pti f swap-i befre cllectig the traces. Because we disabled read-ahead pti, all swapped-i pages were laded demad ad we ca examie the pure swap-i behaviur. We examied if the lcality exists i the swap slt accesses due t swap-i peratis. We fud that the tempral/spatial lcality exist i the swap-i refereces 16

17 Lcality f Swap-i patter These figures shw the slt umbers accessed by swap-i peratis f a particular prcess. slt umber slt umber sedmail sequece f swap-i Xrg sequece f swap-i 17

18 Read ahead?? Due t lcality, read-ahead is a gd apprach t reduce the disk seek time. Flash memry des t require seek time but read-ahead ca result i better perfrmace. Read-ahead ca decrease the umber f page faults 18

19 Perfrmace Evaluati We have perfrmed trace-drive simulati t ivestigate the perfrmace f read-ahead swap-i schemes ad garbage cllecti algrithms. Swap-ut : allcates slts sequetially Swap-i: read-ahead 8 pages by liux swap scheme 8 pages by blck-aliged scheme 16 pages by blck-aliged scheme 32 pages by blck-aliged scheme Garbage cllecti algrithms Greedy (GR) Cst-Beefit (CB) Cst-Age-Time (CAT) Cst Beefit with Age (CBA) 19

20 Perfrmace Evaluati Garbage cllecti algrithms Greedy (GR) : selects a blck with the largest amut f ivalid slts Cst-Beefit (CB) : selects a blck that maximize the frmular: age (1 - u ) 1 + u age : the time sice the mst recet mdificati u : the fracti f space ccupied by valid slts Cst-Age-Time (CAT) : selects a blck that maximize the frmular: 1-1+ u u age erase 1 _ cut Cst Beefit with Age (CBA) : selects a blck like CB ad srts valid slts with ages ad mves the ldest pages first 20

21 Perfrmace Evaluati Thrugh the simulati, we measured the fllwig perfrmace metrics t calculate the garbage cllecti cst. read cut erase cpy cut : the umber f writes due t GC erase cut Garbage cllecti must cpy the valid slts i the victim blck t the free space befre erasig it. Cpy perati requires read ad write perati. Garbage cllecti cst Cst = read_cut + cpy_cut*10 + erase_cut*75 the write perati is 10 times slwer tha the read perati ad the erase perati is 75 times slwer tha the read perati. 21

22 erase_cpy_cut Sme Results GR CB 8_erase_cpy 32_erase_cpy CAT GC algrithms have little effect. The umber f read-ahead has little effect. Blck-aliged read-ahead utperfrms -blck-aliged read-ahead. CBA 16_erase_cpy liux_erase_cpy 22

23 Sme Results GC Cst As a result, GC cst f prpsed blck-aliged swap-i scheme is almst three times smaller tha liux scheme.

24 Cclusis Segmet based swap space maagemet ca reduce the start-up time. Blck-aliged read-ahead scheme ca reduce the garbage cllecti cst. We are yet studyig.. 24

25 Thak yu.. 25

26 Swap-i request 26

Problem Set 2 Solution

Problem Set 2 Solution Due: April 8, 2004 Sprig 2004 ENEE 426: Cmmuicati Netwrks Dr. Naraya TA: Quag Trih Prblem Set 2 Sluti 1. (3.57) A early cde used i radi trasmissi ivlved usig cdewrds that csist biary bits ad ctai the same

More information

California Advance Health Care Directive

California Advance Health Care Directive Califria Advace Health Care Directive This frm lets yu have a say abut hw yu wat t be treated if yu get very sick. This frm has 3 parts. It lets yu: Part 1: Chse a health care aget. A health care aget

More information

A Production-Delivery Inventory System under Continuous Price Decrease and Finite Planning Horizon

A Production-Delivery Inventory System under Continuous Price Decrease and Finite Planning Horizon Prceedigs f the 008 Idustrial Egieerig esearch Cferece J. Fwler ad S. as, eds. A Prducti-elivery Ivetry System uder Ctiuus Price ecrease ad Fiite Plaig Hriz Jufag Yu epartmet f Egieerig aagemet, Ifrmati

More information

FREQUENTLY ASKED QUESTIONS-PLP PROGRAM

FREQUENTLY ASKED QUESTIONS-PLP PROGRAM FREQUENTLY ASKED QUESTIONS-PLP PROGRAM What is "PLP"? PLP is a isurace prgram that prvides Cmmercial Geeral Liability cverage fr all f Swiert's subctractrs f every tier while wrkig desigated Swiert's prjects.

More information

Hardware components. Typical connections and data flow. Student 3 page 1: Low Merit

Hardware components. Typical connections and data flow. Student 3 page 1: Low Merit Student 3 page 1: Lw Merit Hardware cmpnents Extensin cards Descriptin, Hw purpse determines cnnectins Extensin cards extend the capacity f the mtherbard by allwing a circuit bard r card t cnnect t it

More information

Tips to Prepare for Quarter-End and Year-End

Tips to Prepare for Quarter-End and Year-End Tips t Prepare fr Quarter-End and Year-End Melissa Wd Cnsultant What We ll Cver 1. Tying ut A/P 2. Tying ut A/R 3. Tying ut I/N 4. Wrk In Prgress 5. Managing Jbs and PMs 6. Quarterly Payrll 7. Clsing a

More information

Virtual Memory and Address Translation

Virtual Memory and Address Translation Memry and Address Translatin Review Prgram addresses are virtual addresses. Relative set rgram regins can nt change during rgram executin. E.g., hea can nt mve urther rm cde. addresses == hysical address

More information

Implementing ifolder Server in the DMZ with ifolder Data inside the Firewall

Implementing ifolder Server in the DMZ with ifolder Data inside the Firewall Implementing iflder Server in the DMZ with iflder Data inside the Firewall Nvell Cl Slutins AppNte www.nvell.cm/clslutins JULY 2004 OBJECTIVES The bjectives f this dcumentatin are as fllws: T cnfigure

More information

CSE 231 Fall 2015 Computer Project #4

CSE 231 Fall 2015 Computer Project #4 CSE 231 Fall 2015 Cmputer Prject #4 Assignment Overview This assignment fcuses n the design, implementatin and testing f a Pythn prgram that uses character strings fr data decmpressin. It is wrth 45 pints

More information

A Beginner s Guide to Building Virtual Web Servers

A Beginner s Guide to Building Virtual Web Servers A Beginner s Guide t Building Virtual Web Servers Cntents Intrductin... 1 Why set up a web server?... 2 Installing Ubuntu 13.04... 2 Netwrk Set Up... 3 Installing Guest Additins... 4 Updating and Upgrading

More information

The actions discussed below in this Appendix assume that the firm has already taken three foundation steps:

The actions discussed below in this Appendix assume that the firm has already taken three foundation steps: MAKING YOUR MARK 6.1 Gd Practice This sectin presents an example f gd practice fr firms executing plans t enter the resurces sectr supply chain fr the first time, r fr thse firms already in the supply

More information

Global Search Marketing

Global Search Marketing Glbal Search Marketing Glbal Search Marketing The Cmpany as a Business Directr: Stan Barett Cntact details: 131-151 Great Tichfield Street Lndn W1W 5BB 0207 101 8209 1 Glbal Search Marketing Table f Cntents:

More information

Using Sentry-go Enterprise/ASPX for Sentry-go Quick & Plus! monitors

Using Sentry-go Enterprise/ASPX for Sentry-go Quick & Plus! monitors Using Sentry-g Enterprise/ASPX fr Sentry-g Quick & Plus! mnitrs 3Ds (UK) Limited, February, 2014 http://www.sentry-g.cm Be Practive, Nt Reactive! Intrductin Sentry-g Enterprise Reprting is a self-cntained

More information

Chapter 04.00E Physical Problem for Electrical Engineering Simultaneous Linear Equations

Chapter 04.00E Physical Problem for Electrical Engineering Simultaneous Linear Equations hpter 04.00E Phyicl Prblem fr Electricl Egieerig Simulteu Lie Equti Prblem Sttemet Three-phe ytem e the rm fr mt idutril pplicti. pwer i the frm f vltge d curret it delivered frm the pwer cmpy uig three-phe

More information

How to put together a Workforce Development Fund (WDF) claim 2015/16

How to put together a Workforce Development Fund (WDF) claim 2015/16 Index Page 2 Hw t put tgether a Wrkfrce Develpment Fund (WDF) claim 2015/16 Intrductin What eligibility criteria d my establishment/s need t meet? Natinal Minimum Data Set fr Scial Care (NMDS-SC) and WDF

More information

CS4500/5500 Opera-ng Systems Distributed and Parallel File Systems

CS4500/5500 Opera-ng Systems Distributed and Parallel File Systems Opera-ng Systems Distributed and Parallel File Systems Jia Ra Department f Cmputer Science hcp://www.cs.uccs.edu/~jra Recap f Previus Classes File systems prvide an abstrac0n f permanently stred data Namespace:

More information

*The most important feature of MRP as compared with ordinary inventory control analysis is its time phasing feature.

*The most important feature of MRP as compared with ordinary inventory control analysis is its time phasing feature. Itegrated Productio ad Ivetory Cotrol System MRP ad MRP II Framework of Maufacturig System Ivetory cotrol, productio schedulig, capacity plaig ad fiacial ad busiess decisios i a productio system are iterrelated.

More information

What Happens To My Benefits If I Get a Bunch of Money? TANF Here is what happens if you are on the TANF program when you get lump-sum income:

What Happens To My Benefits If I Get a Bunch of Money? TANF Here is what happens if you are on the TANF program when you get lump-sum income: 126 Sewall Street Augusta, Maine 04330-6822 TTY/Vice: (207) 626-7058 Fax: (207) 621-8148 www.mejp.rg What Happens T My Benefits If I Get a Bunch f Mney? Each prgram, (TANF, SSI, MaineCare, etc.) has its

More information

Application Note: 202

Application Note: 202 Applicatin Nte: 202 MDK-ARM Cmpiler Optimizatins Getting the Best Optimized Cde fr yur Embedded Applicatin Abstract This dcument examines the ARM Cmpilatin Tls, as used inside the Keil MDK-ARM (Micrcntrller

More information

Army DCIPS Employee Self-Report of Accomplishments Overview Revised July 2012

Army DCIPS Employee Self-Report of Accomplishments Overview Revised July 2012 Army DCIPS Emplyee Self-Reprt f Accmplishments Overview Revised July 2012 Table f Cntents Self-Reprt f Accmplishments Overview... 3 Understanding the Emplyee Self-Reprt f Accmplishments... 3 Thinking Abut

More information

Chapter 3: Cluster Analysis

Chapter 3: Cluster Analysis Chapter 3: Cluster Analysis 3.1 Basic Cncepts f Clustering 3.1.1 Cluster Analysis 3.1. Clustering Categries 3. Partitining Methds 3..1 The principle 3.. K-Means Methd 3..3 K-Medids Methd 3..4 CLARA 3..5

More information

Software Distribution

Software Distribution Sftware Distributin Quantrax has autmated many f the prcesses invlved in distributing new cde t clients. This will greatly reduce the time taken t get fixes laded nt clients systems. The new prcedures

More information

Licensing Windows Server 2012 for use with virtualization technologies

Licensing Windows Server 2012 for use with virtualization technologies Vlume Licensing brief Licensing Windws Server 2012 fr use with virtualizatin technlgies (VMware ESX/ESXi, Micrsft System Center 2012 Virtual Machine Manager, and Parallels Virtuzz) Table f Cntents This

More information

Microsoft SQL Server Administration

Microsoft SQL Server Administration Micrsft SQL Server Administratin Disk & memry David Hksza http://siret.cz/hksza Lecture Outline Query lifecycle Data strage SQL Server Memry SELECT Query Lifecycle 1. SNI client-server cnnectin using TCP/IP

More information

Exercise 5 Server Configuration, Web and FTP Instructions and preparatory questions Administration of Computer Systems, Fall 2008

Exercise 5 Server Configuration, Web and FTP Instructions and preparatory questions Administration of Computer Systems, Fall 2008 Exercise 5 Server Cnfiguratin, Web and FTP Instructins and preparatry questins Administratin f Cmputer Systems, Fall 2008 This dcument is available nline at: http://www.hh.se/te2003 Exercise 5 Server Cnfiguratin,

More information

IN-HOUSE OR OUTSOURCED BILLING

IN-HOUSE OR OUTSOURCED BILLING IN-HOUSE OR OUTSOURCED BILLING Medical billing is ne f the mst cmplicated aspects f running a medical practice. With thusands f pssible cdes fr diagnses and prcedures, and multiple payers, the ability

More information

Exercise 5 Server Configuration, Web and FTP Instructions and preparatory questions Administration of Computer Systems, Fall 2008

Exercise 5 Server Configuration, Web and FTP Instructions and preparatory questions Administration of Computer Systems, Fall 2008 Exercise 5 Server Cnfiguratin, Web and FTP Instructins and preparatry questins Administratin f Cmputer Systems, Fall 2008 This dcument is available nline at: http://www.hh.se/te2003 Exercise 5 Server Cnfiguratin,

More information

Local Mobility Anchoring for Seamless Handover in Coordinated Small Cells

Local Mobility Anchoring for Seamless Handover in Coordinated Small Cells Lcal Mbility Achrig fr Seamless Hadver i Crdiated Small Cells Ravikumar Balakrisha ad Ia F Akyildiz Bradbad Wireless Netwrkig Labratry Schl f Electrical ad Cmputer Egieerig, Gergia Istitute f Techlgy,

More information

Segment-oriented Recovery

Segment-oriented Recovery Advanced Tpics in Operating Systems, CS262a Prf. Eric A. Brewer (with help frm Rusty Sears) Segment-riented Recvery ARIES wrks great but is 20+ years ld and has sme prblems: viewed as very cmplex n available

More information

Atom Insight Business Solution Bundles www.atominsight.com

Atom Insight Business Solution Bundles www.atominsight.com Atm Insight Business Slutin Bundles V1.1 Feb 2011 CONTENTS Figures... 2 Abstract... 3 Capability stages... 4 Capability levels... 6 Imprving capabilities walking befre yu run... 7 Shrt term targeted slutins...

More information

What is Software Risk Management? (And why should I care?)

What is Software Risk Management? (And why should I care?) What is Sftware Risk Management? (And why shuld I care?) Peter Kulik, KLCI, Inc. 1 st Editin, Octber 1996 Risks are schedule delays and cst verruns waiting t happen. As industry practices have imprved,

More information

Licensing Windows Server 2012 R2 for use with virtualization technologies

Licensing Windows Server 2012 R2 for use with virtualization technologies Vlume Licensing brief Licensing Windws Server 2012 R2 fr use with virtualizatin technlgies (VMware ESX/ESXi, Micrsft System Center 2012 R2 Virtual Machine Manager, and Parallels Virtuzz) Table f Cntents

More information

Backups and Backup Strategies

Backups and Backup Strategies IT Security Office Versin 2.3 02/19/10 Backups and Backup Strategies IT managers need t plan fr backups in terms f time and space required. Hwever, mst mdern backup sftware can cmpress the backup files

More information

The time series data in this example are obtained from sampling a function describing the free decay of a torsion oscillator for time t > t o

The time series data in this example are obtained from sampling a function describing the free decay of a torsion oscillator for time t > t o The Excel FFT Fucti v2 P T Debevec July 5, 28 The discrete Furier trasfrm may be used t idetify peridic structures i time series data Suppse that a physical prcess is represeted by the fucti f time, ht

More information

THIRD PARTY PROCUREMENT PROCEDURES

THIRD PARTY PROCUREMENT PROCEDURES ADDENDUM #1 THIRD PARTY PROCUREMENT PROCEDURES NORTH CENTRAL TEXAS COUNCIL OF GOVERNMENTS TRANSPORTATION DEPARTMENT JUNE 2011 OVERVIEW These prcedures establish standards and guidelines fr the Nrth Central

More information

UNIT PLAN. Methods. Soccer Unit Plan 20 days, 40 minutes in length. For 7-12 graders. Name

UNIT PLAN. Methods. Soccer Unit Plan 20 days, 40 minutes in length. For 7-12 graders. Name UNIT PLAN Methds Sccer Unit Plan 20 days, 40 minutes in length Fr 7-12 graders Name TABLE OF CONTENTS I. Title Page II. Table f Cntents III. Blck Time Frame IV. Unit Objectives V. Task Analysis VI. Evaluative

More information

Times Table Activities: Multiplication

Times Table Activities: Multiplication Tny Attwd, 2012 Times Table Activities: Multiplicatin Times tables can be taught t many children simply as a cncept that is there with n explanatin as t hw r why it is there. And mst children will find

More information

FOCUS Service Management Software Version 8.5 for Passport Business Solutions Installation Instructions

FOCUS Service Management Software Version 8.5 for Passport Business Solutions Installation Instructions FOCUS Service Management Sftware fr Passprt Business Slutins Installatin Instructins Thank yu fr purchasing Fcus Service Management Sftware frm RTM Cmputer Slutins. This bklet f installatin instructins

More information

PROTIVITI FLASH REPORT

PROTIVITI FLASH REPORT PROTIVITI FLASH REPORT The PCI Security Standards Cuncil Releases PCI DSS Versin 3.2 May 9, 2016 On April 28, 2016, the PCI Security Standards Cuncil (PCI SSC) released PCI Data Security Standard (PCI

More information

Helpdesk Support Tickets & Knowledgebase

Helpdesk Support Tickets & Knowledgebase Helpdesk Supprt Tickets & Knwledgebase User Guide Versin 1.0 Website: http://www.mag-extensin.cm Supprt: http://www.mag-extensin.cm/supprt Please read this user guide carefully, it will help yu eliminate

More information

How To Set Up A General Ledger In Korea

How To Set Up A General Ledger In Korea MODULE 6: RECEIVABLES AND PAYABLES MANAGEMENT: PAYMENT DISCOUNT AND PAYMENT TOLERANCE Mdule Overview Granting payment discunts prvides an incentive fr custmers t quickly pay their utstanding amunts in

More information

Counselor in Training Program

Counselor in Training Program Tukwila Parks and Recreatin Cunselr in Training Prgram D yu want t be a camp cunselr in the future? Then the Cunselr in Training (CIT) prgram is just fr yu! CITs wrk alng side camp cunselrs where they

More information

OUR DISCIPLINARY POLICY

OUR DISCIPLINARY POLICY OUR DISCIPLINARY POLICY WHO is this plicy fr? Channel 4 emplyees wh ve passed their prbatinary perid Channel 4 managers This plicy des nt frm part f any emplyee s cntract f emplyment and we may amend it

More information

(in)rl Webcast - Hardware & Technology Checklist

(in)rl Webcast - Hardware & Technology Checklist (in)rl Webcast - Hardware & Technlgy Checklist Checklist fr Meetup Hsts 1. Passwrd t lgin t the webcast- we ll email this t yu the week f the event 2. The link fr viewing the webcast - we ll email this

More information

Mobile Workforce. Improving Productivity, Improving Profitability

Mobile Workforce. Improving Productivity, Improving Profitability Mbile Wrkfrce Imprving Prductivity, Imprving Prfitability White Paper The Business Challenge Between increasing peratinal cst, staff turnver, budget cnstraints and pressure t deliver prducts and services

More information

Outage Probability for GPRS over GSM Voice Services

Outage Probability for GPRS over GSM Voice Services Outage Prbability fr GPRS ver GSM Vice Services Shaji Ni, Yg Liag ad Sve-Gustav Häggma Helsii Uiversity f Techlgy, Istitute f Radi Cmmuicatis, Cmmuicatis Labratry, P.O. Bx 3, Otaaari 8, 5 Es, Filad, Fax:358-9-45345,

More information

COGNITIVE REHABILITATION Information for Patients and Families

COGNITIVE REHABILITATION Information for Patients and Families www.strkengine.ca COGNITIVE REHABILITATION Infrmatin fr Patients and Families What is cgnitive rehabilitatin? Cgnitive rehabilitatin is a gal-riented prgram that aims t imprve cgnitive functins (memry,

More information

Aeroplan 2013 Star Challenge Promotion

Aeroplan 2013 Star Challenge Promotion Aerplan 2013 Star Challenge Prmtin Q1. What is the Star Challenge Prmtin? The Star Challenge prmtin is a bnus miles event that is designed t reward members fr earning miles acrss Aerplan s participating

More information

FOR MAGENTO COMMERCE INFO@MORNINGTIME.COM SKYPE: JMKOENRAADT WWW.MORNINGTIME.COM

FOR MAGENTO COMMERCE INFO@MORNINGTIME.COM SKYPE: JMKOENRAADT WWW.MORNINGTIME.COM INTERNETKASSA (RABO, ABN AMRO) FOR MAGENTO COMMERCE INFO@MORNINGTIME.COM SKYPE: JMKOENRAADT WWW.MORNINGTIME.COM STEP 0 - DISABLE THE COMPILER, DISABLE CACHE Befre yu uplad new files, g t System > Tls >

More information

HP Connected Backup Online Help. Version 8.7.1 04 October 2012

HP Connected Backup Online Help. Version 8.7.1 04 October 2012 HP Cnnected Backup Online Help Versin 8.7.1 04 Octber 2012 Legal Ntices Warranty The nly warranties fr Hewlett-Packard prducts and services are set frth in the express statements accmpanying such prducts

More information

Polymorphic Shellcodes vs. Application IDSs

Polymorphic Shellcodes vs. Application IDSs http://www.ngsec.cm Plymrphic Shellcdes vs. Applicatin IDSs 1. Intrductin. 2. Shellcde types and recgnitin techniques. 3. Intrusin Detectin Systems. 4. NGSecureWeb. 5. References. 6. Credits. Page 1 f

More information

What's New. Sitecore CMS 6.6 & DMS 6.6. A quick guide to the new features in Sitecore 6.6. Sitecore CMS 6.6 & DMS 6.6 What's New Rev: 2012-10-22

What's New. Sitecore CMS 6.6 & DMS 6.6. A quick guide to the new features in Sitecore 6.6. Sitecore CMS 6.6 & DMS 6.6 What's New Rev: 2012-10-22 Sitecre CMS 6.6 & DMS 6.6 What's New Rev: 2012-10-22 Sitecre CMS 6.6 & DMS 6.6 What's New A quick guide t the new features in Sitecre 6.6 Sitecre is a registered trademark. All ther brand and prduct names

More information

The Ohio Board of Regents Credit When It s Due process identifies students who

The Ohio Board of Regents Credit When It s Due process identifies students who Credit When It s Due/ Reverse Transfer FAQ fr students Ohi is participating in a natinal grant initiative, Credit When It s Due, designed t implement reverse-transfer, which is a prcess t award assciate

More information

Watlington and Chalgrove GP Practice - Patient Satisfaction Survey 2011

Watlington and Chalgrove GP Practice - Patient Satisfaction Survey 2011 Watlingtn and Chalgrve GP - Patient Satisfactin Survey 2011 Backgrund During ne week in Nvember last year patients attending either the Chalgrve r the Watlingtn surgeries were asked t cmplete a survey

More information

Often people have questions about new or enhanced services. This is a list of commonly asked questions and answers regarding our new WebMail format.

Often people have questions about new or enhanced services. This is a list of commonly asked questions and answers regarding our new WebMail format. Municipal Service Cmmissin Gerald P. Cle Frederick C. DeLisle Thmas M. Kaul Gregry L. Riggle Stanley A. Rutkwski Electric, Steam, Water Cable Televisin and High Speed Internet Service since 1889 Melanie

More information

FOCUS Service Management Software Version 8.5 for CounterPoint Installation Instructions

FOCUS Service Management Software Version 8.5 for CounterPoint Installation Instructions FOCUS Service Management Sftware Versin 8.5 fr CunterPint Installatin Instructins Thank yu fr purchasing Fcus Service Management Sftware frm RTM Cmputer Slutins. This bklet f installatin instructins will

More information

How To Install Fcus Service Management Software On A Pc Or Macbook

How To Install Fcus Service Management Software On A Pc Or Macbook FOCUS Service Management Sftware Versin 8.4 fr Passprt Business Slutins Installatin Instructins Thank yu fr purchasing Fcus Service Management Sftware frm RTM Cmputer Slutins. This bklet f installatin

More information

We have highlighted in bold a few points that need your attention urgently before the statutory notice can be served.

We have highlighted in bold a few points that need your attention urgently before the statutory notice can be served. Lndn, DX: 99971 Victria Email: mail@ashleywilsn.c.uk THE RIGHT TO MANAGE The purpse f this utline is t explain The Right t Manage. It is t highlight a few imprtant aspects f the right t manage s that flat

More information

Document Management Versioning Strategy

Document Management Versioning Strategy 1.0 Backgrund and Overview Dcument Management Versining Strategy Versining is an imprtant cmpnent f cntent creatin and management. Versin management is a key cmpnent f enterprise cntent management. The

More information

1B11 Operating Systems - 3. Memory Management and Protection

1B11 Operating Systems - 3. Memory Management and Protection Department f Cmputer Science University Cege Lndn 1B11 Operating Systems - 3 Memry Management and Prtectin Prf. Steve R Wibur s.wibur@cs.uc.ac.uk 1B11-3 1999 Side 1 Lecture Objectives What des the OS have

More information

990 e-postcard FAQ. Is there a charge to file form 990-N (e-postcard)? No, the e-postcard system is completely free.

990 e-postcard FAQ. Is there a charge to file form 990-N (e-postcard)? No, the e-postcard system is completely free. 990 e-pstcard FAQ Fr frequently asked questins abut filing the e-pstcard that are nt listed belw, brwse the FAQ at http://epstcard.frm990.rg/frmtsfaq.asp# (cpy and paste this link t yur brwser). General

More information

2010 AT&T Business Continuity Study CENTRAL REGION (Missouri) Results

2010 AT&T Business Continuity Study CENTRAL REGION (Missouri) Results 2010 Business Cntinuity Study: Missuri 2010 AT&T Business Cntinuity Study CENTRAL REGION (Missuri) Results Key Findings IT Plans fr 2010 IT budgets fr 2010 are abut the same r higher than thse f the previus

More information

What is a dashboard and why do I want one?

What is a dashboard and why do I want one? What is a dashbard and why d I want ne? QIQ Slutins Pty Ltd Suite G11, Bay 9, Lcmtive Wrkshp Australian Technlgy Park, Crnwallis Street Eveleigh NSW 1430 Australia Phne: +61 2 9209 4298 Fax: +61 2 9209

More information

How to Reduce Project Lead Times Through Improved Scheduling

How to Reduce Project Lead Times Through Improved Scheduling Hw t Reduce Prject Lead Times Thrugh Imprved Scheduling PROBABILISTIC SCHEDULING & BUFFER MANAGEMENT Cnventinal Prject Scheduling ften results in plans that cannt be executed and t many surprises. In many

More information

A96 CALA Policy on the use of Computers in Accredited Laboratories Revision 1.5 August 4, 2015

A96 CALA Policy on the use of Computers in Accredited Laboratories Revision 1.5 August 4, 2015 A96 CALA Plicy n the use f Cmputers in Accredited Labratries Revisin 1.5 August 4, 2015 A96 CALA Plicy n the use f Cmputers in Accredited Labratries TABLE OF CONTENTS TABLE OF CONTENTS... 1 CALA POLICY

More information

Understand Business Continuity

Understand Business Continuity Understand Business Cntinuity Lessn Overview In this lessn, yu will learn abut: Business cntinuity Data redundancy Data availability Disaster recvery Anticipatry Set What methds can be emplyed by a system

More information

Coordinating Dual Eligibles Medicare and Medicaid Managed Medical Assistance Benefits

Coordinating Dual Eligibles Medicare and Medicaid Managed Medical Assistance Benefits Crdinating Dual Eligibles Medicare and Medicaid Managed Medical Assistance Benefits Medicare beneficiaries wh have limited incme and resurces may get help paying fr their Medicare premiums and ut-f-pcket

More information

Data Warehouse Scope Recommendations

Data Warehouse Scope Recommendations Rensselaer Data Warehuse Prject http://www.rpi.edu/datawarehuse Financial Analysis Scpe and Data Audits This dcument describes the scpe f the Financial Analysis data mart scheduled fr delivery in July

More information

Samsung Omnia II Software Upgrade for Microsoft Windows XP Instructions

Samsung Omnia II Software Upgrade for Microsoft Windows XP Instructions Samsung Omnia II Sftware Upgrade fr Overview Samsung has released a sftware upgrade fr the Samsung Omnia II, which is recmmended t be installed. This upgrade includes numerus sftware imprvements and enhancements.

More information

efusion Table of Contents

efusion Table of Contents efusin Cst Centers, Partner Funding, VAT/GST and ERP Link Table f Cntents Cst Centers... 2 Admin Setup... 2 Cst Center Step in Create Prgram... 2 Allcatin Types... 3 Assciate Payments with Cst Centers...

More information

Information Guide Booklet. Home Loans

Information Guide Booklet. Home Loans Infrmatin Guide Bklet Hme Lans This Infrmatin Guide bklet prvides yu with general infrmatin nly. It will als help yu t better understand any recmmendatins we have made fr yu. Infrmatin Guide Hme Lans January

More information

Small Business Fraud Custom Study among Small Business Owners Conducted for SunTrust Banks/National Small Business Association/Edelman

Small Business Fraud Custom Study among Small Business Owners Conducted for SunTrust Banks/National Small Business Association/Edelman Small Business Fraud Custm Study amng Small Business Owners Cnducted fr SunTrust Banks/Natinal Small Business Assciatin/Edelman Octber 17, 2007 Objective & Methdlgy Objective In cllabratin with SunTrust

More information

UNIVERSITY OF WINCHESTER

UNIVERSITY OF WINCHESTER UNIVERSITY OF WINCHESTER INTRODUCTION DEBT MANAGEMENT POLICY: STUDENTS ACADEMIC YEAR 15/16 This dcument sets ut the plicy f the University in relatin t student debt, alng with the debt management prcedures

More information

Applied Computer Science

Applied Computer Science Lecture 1 Prcessrs Applied Cmputer Science Functinal units are the basic building blcks f prcessrs cre units fr a typical prcessrs include: Instructin Unit fetches, decdes and dispatches instructins. May

More information

PLANNING FOR QUALITY CARE AND INDEPENDENCE. Why you need to plan for long-term care assistance, and what funding options are available.

PLANNING FOR QUALITY CARE AND INDEPENDENCE. Why you need to plan for long-term care assistance, and what funding options are available. PLANNING FOR QUALITY CARE AND INDEPENDENCE Why yu need t plan fr lng-term care assistance, and what funding ptins are available. PLANNING FOR QUALITY CARE AND INDEPENDENCE The value f planning ahead The

More information

Draft for consultation

Draft for consultation Draft fr cnsultatin Draft Cde f Practice n discipline and grievance May 2008 Further infrmatin is available frm www.acas.rg.uk CONSULTATION ON REVISED ACAS CODE OF PRACTICE ON DISCIPLINE AND GRIEVANCE

More information

P CARD College of Health and Rehabilitation Sciences: Sargent Internal Policy

P CARD College of Health and Rehabilitation Sciences: Sargent Internal Policy P CARD Cllege f Health and Rehabilitatin Sciences: Sargent Internal Plicy All purchasing card hlders must read the Purchasing Card Prgram Manual (P Card Manual) and cnfirm upn ding s via email t the SAM

More information

Firewall/Proxy Server Settings to Access Hosted Environment. For Access Control Method (also known as access lists and usually used on routers)

Firewall/Proxy Server Settings to Access Hosted Environment. For Access Control Method (also known as access lists and usually used on routers) Firewall/Prxy Server Settings t Access Hsted Envirnment Client firewall settings in mst cases depend n whether the firewall slutin uses a Stateful Inspectin prcess r ne that is cmmnly referred t as an

More information

WHITEPAPER SERIES. info@metavistech.com 610.717.0413 www.metavistech.com

WHITEPAPER SERIES. info@metavistech.com 610.717.0413 www.metavistech.com WHITEPAPER SERIES Shredded Strage in SharePint 2013 What des Shredded Strage mean, hw much des it actually save and hw t take advantage f it in SharePint 2013. What is Shredded Strage? Shredded Strage

More information

Trends and Considerations in Currency Recycle Devices. What is a Currency Recycle Device? November 2003

Trends and Considerations in Currency Recycle Devices. What is a Currency Recycle Device? November 2003 Trends and Cnsideratins in Currency Recycle Devices Nvember 2003 This white paper prvides basic backgrund n currency recycle devices as cmpared t the cmbined features f a currency acceptr device and a

More information

Additional Resources Refer to the Inventory Year-End Closing Tips. Refer to the Inventory Year-End Questions and Answers.

Additional Resources Refer to the Inventory Year-End Closing Tips. Refer to the Inventory Year-End Questions and Answers. Inventry Year-End Clsing Prcedures - 2007 Use the prcedure described in this sectin t clse the year fr Inventry Cntrl and prepare yur Inventry recrds fr the new fiscal year. Clsing a year transfers all

More information

The ad hoc reporting feature provides a user the ability to generate reports on many of the data items contained in the categories.

The ad hoc reporting feature provides a user the ability to generate reports on many of the data items contained in the categories. 11 This chapter includes infrmatin regarding custmized reprts that users can create using data entered int the CA prgram, including: Explanatin f Accessing List Screen Creating a New Ad Hc Reprt Running

More information

WHITE PAPER. Vendor Managed Inventory (VMI) is Not Just for A Items

WHITE PAPER. Vendor Managed Inventory (VMI) is Not Just for A Items WHITE PAPER Vendr Managed Inventry (VMI) is Nt Just fr A Items Why it s Critical fr Plumbing Manufacturers t als Manage Whlesalers B & C Items Executive Summary Prven Results fr VMI-managed SKUs*: Stck-uts

More information

What Advantage Medical Billing Solutions Can Do For You and The Financial Health of Your Practice

What Advantage Medical Billing Solutions Can Do For You and The Financial Health of Your Practice What Advatage Medical Billig Slutis Ca D Fr Yu ad The Fiacial Health f Yur Practice 2012 1 Cliet/Advatage Objective Isure Cash Flw Stability ad Decrease A/R Timeframes while Icreasig Reveue Decrease/Remve

More information

Group Term Life Insurance: Table I Straddle Testing and Imputed Income for Dependent Life Insurance

Group Term Life Insurance: Table I Straddle Testing and Imputed Income for Dependent Life Insurance An American Benefits Cnsulting White Paper American Benefits Cnsulting, LLC 99 Park Ave, 25 th Flr New Yrk, NY 10016 212 716-3400 http://www.abcsys.cm Grup Term Life Insurance: Table I Straddle Testing

More information

Welcome to CNIPS Training: CACFP Claim Entry

Welcome to CNIPS Training: CACFP Claim Entry Welcme t CNIPS Training: CACFP Claim Entry General Cmments frm SCN CACFP claiming begins with submissin f the Octber claim due by Nvember 15, 2012. Timelines/Due Dates With CNIPS, SCN will cntinue t enfrce

More information

Flash Padlock. Self-Secured and Host-Independent USB Flash Drive White Paper. April 2007 Prepared by ClevX, LLC for Corsair Memory

Flash Padlock. Self-Secured and Host-Independent USB Flash Drive White Paper. April 2007 Prepared by ClevX, LLC for Corsair Memory Flash Padlck - White Paper Flash Padlck Self-Secured and Hst-Independent USB Flash Drive White Paper April 2007 Prepared by ClevX, LLC fr Crsair Memry 1 INTRODUCTION Millins f USB Flash Drives (UFDs) are

More information

Student Academic Learning Services Page 1 of 7. Statistics: The Null and Alternate Hypotheses. A Student Academic Learning Services Guide

Student Academic Learning Services Page 1 of 7. Statistics: The Null and Alternate Hypotheses. A Student Academic Learning Services Guide Student Academic Learning Services Page 1 f 7 Statistics: The Null and Alternate Hyptheses A Student Academic Learning Services Guide www.durhamcllege.ca/sals Student Services Building (SSB), Rm 204 This

More information

Samsung Saga Software Upgrade for Microsoft Windows Vista Instructions

Samsung Saga Software Upgrade for Microsoft Windows Vista Instructions Samsung Saga Sftware Upgrade fr Micrsft Windws Vista Instructins Overview Samsung has released a sftware upgrade fr the Samsung Saga, which is recmmended t be installed. This upgrade includes numerus sftware

More information

Meet Moodle Students introduction to Moodle and Email

Meet Moodle Students introduction to Moodle and Email Meet Mdle Students intrductin t Mdle and Email 1. What is Mdle? Mdle is the sftware used fr the Student Intranet and nline curses als knwn as a Virtual Learning Envirnment r VLE fr shrt. It is a web based

More information

Personal Selling. Lesson 22. 22.1 Objectives. 22.2 Meaning of Personal Selling

Personal Selling. Lesson 22. 22.1 Objectives. 22.2 Meaning of Personal Selling Persnal Selling Lessn 22 Persnal Selling When yu want t buy smething yu usually g t a cncerned shp and purchase it frm there. But, smetimes yu find peple bring certain gds r prducts and make them available

More information

Blue Link Solutions Terminal Server Configuration How to Install Blue Link Solutions in a Terminal Server Environment

Blue Link Solutions Terminal Server Configuration How to Install Blue Link Solutions in a Terminal Server Environment Blue Link Slutins Terminal Server Cnfiguratin Hw t Install Blue Link Slutins in a Terminal Server Envirnment Prepared by: Darren Myher April 9, 2002 Table f Cntents Backgrund... 2 Applicatin Server mde

More information

Internal Audit Charter and operating standards

Internal Audit Charter and operating standards Internal Audit Charter and perating standards 2 1 verview This dcument sets ut the basis fr internal audit: (i) the Internal Audit charter, which establishes the framewrk fr Internal Audit; and (ii) hw

More information

Marketing Consultancy Division (MCD) Export Consultancy Unit (ECU) Export in Focus. Export Market Expansion Strategies. Rabi-I, 1427 (April, 2006)

Marketing Consultancy Division (MCD) Export Consultancy Unit (ECU) Export in Focus. Export Market Expansion Strategies. Rabi-I, 1427 (April, 2006) Marketing Cnsultancy Divisin (MCD) Exprt Cnsultancy Unit (ECU) Exprt in Fcus Exprt Market Expansin Strategies Rabi-I, 1427 (April, 2006) 1 Exprt Market Expansin Strategies Intrductin It is clear that glbalizatin

More information

Dr. Vernique Mirn, PhD. The University of Edinburgh (MRC) And MS

Dr. Vernique Mirn, PhD. The University of Edinburgh (MRC) And MS NEW STRATEGY FOR BRAIN REPAIR IN MULTIPLE SCLEROSIS By Dr. Vernique Mirn, Ph.D. Pstdctral fellw, MRC Centre fr Regenerative Medicine, The University f Edinburgh www.crm.ed.ac.uk Multiple sclersis is caused

More information

RECOMMENDATIONS SECURITY ONLINE BANK TRANSACTIONS. interests in the use of IT services, such as online bank services of Société Générale de Banques au

RECOMMENDATIONS SECURITY ONLINE BANK TRANSACTIONS. interests in the use of IT services, such as online bank services of Société Générale de Banques au RECOMMENDATIONS SECURITY ONLINE BANK TRANSACTIONS Best practices IT security refers t the bdy f techniques and best practices t prtect yur cmputers and yur interests in the use f IT services, such as nline

More information

TOWN OF PAYSON WATER DEPARTMENT BACKFLOW PREVENTION PROGRAM CUSTOMER INFORMATION PACKAGE

TOWN OF PAYSON WATER DEPARTMENT BACKFLOW PREVENTION PROGRAM CUSTOMER INFORMATION PACKAGE TOWN OF PAYSON WATER DEPARTMENT BACKFLOW PREVENTION PROGRAM CUSTOMER INFORMATION PACKAGE TOWN OF PAYSON Backflw Preventin Prgram Develpers, Cntractrs and Paysn Residents: An apprved backflw preventin assembly

More information

ACTIVITY MONITOR. Live view of remote desktops. You may easily have a look at any user s desktop.

ACTIVITY MONITOR. Live view of remote desktops. You may easily have a look at any user s desktop. Web Develpment Offshre Develpment Outsurcing SEO ACTIVITY MONITOR This pwerful tl allws yu t track any LAN, giving yu the mst detailed infrmatin n what, hw and when yur netwrk users perfrmed. Whether it

More information

Software Update Notification

Software Update Notification Sftware Update Ntificatin PSS0223-02 Mastersizer 3000 v1.01 sftware Abstract This dcument details the release f sftware PSS0223-02 v1.01 f the sftware fr the Mastersizer 3000 laser diffractin system. It

More information